]> git.wh0rd.org - tt-rss.git/blame - include/sanity_check.php
sanity: check whether SELF_URL_PATH conforms to data returned by httpd
[tt-rss.git] / include / sanity_check.php
CommitLineData
1d3a17c7 1<?php
7b55001e 2 /* WARNING!
b3b48f61
AD
3 *
4 * If you modify this file, you are ON YOUR OWN!
5 *
6 * Believe it or not, all of the checks below are required to succeed for
7 * tt-rss to actually function properly.
8 *
9 * If you think you have a better idea about what is or isn't required, feel
10 * free to modify the file, note though that you are therefore automatically
11 * disqualified from any further support by official channels, e.g. tt-rss.org
12 * issue tracker or the forums.
13 *
14 * If you come crying when stuff inevitably breaks, you will be mocked and told
15 * to get out. */
618e2d35 16
24ff3b44
AD
17 function make_self_url_path() {
18 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
19
20 return $url_path;
21 }
22
7b55001e
AD
23 /**
24 * @SuppressWarnings(PHPMD.UnusedLocalVariable)
25 */
6322ac79 26 function initial_sanity_check() {
d8735fc8 27
5be0ba92 28 $errors = array();
d8735fc8 29
5be0ba92
AD
30 if (!file_exists("config.php")) {
31 array_push($errors, "Configuration file not found. Looks like you forgot to copy config.php-dist to config.php and edit it.");
32 } else {
8fc26c41 33
5be0ba92 34 require_once "sanity_config.php";
c798704b 35
d0c6dd29
AD
36 if (file_exists("install") && !file_exists("config.php")) {
37 array_push($errors, "Please copy config.php-dist to config.php or run the installer in install/");
38 }
39
72679db8
AD
40 if (strpos(PLUGINS, "auth_") === FALSE) {
41 array_push($errors, "Please enable at least one authentication module via PLUGINS constant in config.php");
42 }
43
5be0ba92
AD
44 if (function_exists('posix_getuid') && posix_getuid() == 0) {
45 array_push($errors, "Please don't run this script as root.");
46 }
ef8be8ea 47
bfd902bb
AD
48 if (version_compare(PHP_VERSION, '5.4.0', '<')) {
49 array_push($errors, "PHP version 5.4.0 or newer required.");
79f946be
AD
50 }
51
5be0ba92 52 if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
545ca067 53 array_push($errors, "Configuration file (config.php) has incorrect version. Update it with new options from config.php-dist and set CONFIG_VERSION to the correct value.");
5be0ba92 54 }
ef8be8ea 55
5be0ba92
AD
56 if (!is_writable(CACHE_DIR . "/images")) {
57 array_push($errors, "Image cache is not writable (chmod -R 777 ".CACHE_DIR."/images)");
58 }
ef8be8ea 59
3306daec
AD
60 if (!is_writable(CACHE_DIR . "/upload")) {
61 array_push($errors, "Upload cache is not writable (chmod -R 777 ".CACHE_DIR."/upload)");
62 }
63
5be0ba92
AD
64 if (!is_writable(CACHE_DIR . "/export")) {
65 array_push($errors, "Data export cache is not writable (chmod -R 777 ".CACHE_DIR."/export)");
09e8bdfd 66 }
ef8be8ea 67
c670a80d
AD
68 if (!is_writable(CACHE_DIR . "/js")) {
69 array_push($errors, "Javascript cache is not writable (chmod -R 777 ".CACHE_DIR."/js)");
70 }
71
5276b7c7 72 if (strlen(FEED_CRYPT_KEY) > 0 && strlen(FEED_CRYPT_KEY) != 24) {
044cff2d
AD
73 array_push($errors, "FEED_CRYPT_KEY should be exactly 24 characters in length.");
74 }
75
5276b7c7 76 if (strlen(FEED_CRYPT_KEY) > 0 && !function_exists("mcrypt_decrypt")) {
044cff2d
AD
77 array_push($errors, "FEED_CRYPT_KEY requires mcrypt functions which are not found.");
78 }
79
5be0ba92
AD
80 if (GENERATED_CONFIG_CHECK != EXPECTED_CONFIG_VERSION) {
81 array_push($errors,
82 "Configuration option checker sanity_config.php is outdated, please recreate it using ./utils/regen_config_checks.sh");
83 }
ef8be8ea 84
5be0ba92
AD
85 foreach ($requred_defines as $d) {
86 if (!defined($d)) {
87 array_push($errors,
88 "Required configuration file parameter $d is not defined in config.php. You might need to copy it from config.php-dist.");
89 }
90 }
91
5be0ba92 92 if (SINGLE_USER_MODE) {
a42c55f0 93 $result = db_query("SELECT id FROM ttrss_users WHERE id = 1");
50e7dd7d 94
6322ac79
AD
95 if (db_num_rows($result) != 1) {
96 array_push($errors, "SINGLE_USER_MODE is enabled in config.php but default admin account is not found.");
09e8bdfd 97 }
50e7dd7d 98 }
b03b2631 99
7506b61a
AD
100 $ref_self_url_path = make_self_url_path();
101 $ref_self_url_path = preg_replace("/\w+\.php$/", "", $ref_self_url_path);
24ff3b44 102
7506b61a 103 if (SELF_URL_PATH == "http://example.org/tt-rss/") {
24ff3b44 104 array_push($errors,
7506b61a 105 "Please set SELF_URL_PATH to the correct value for your server (possible value: <b>$ref_self_url_path</b>)");
09e8bdfd 106 }
17c0eeba 107
7506b61a
AD
108 if (SELF_URL_PATH != $ref_self_url_path && (!defined('_SKIP_SELF_URL_PATH_CHECKS') || !_SKIP_SELF_URL_PATH_CHECKS)) {
109 array_push($errors,
110 "Please set SELF_URL_PATH to the correct value detected for your server: <b>$ref_self_url_path</b>");
111 }
112
113 if (!is_writable(ICONS_DIR)) {
5be0ba92
AD
114 array_push($errors, "ICONS_DIR defined in config.php is not writable (chmod -R 777 ".ICONS_DIR.").\n");
115 }
17c0eeba 116
5be0ba92
AD
117 if (!is_writable(LOCK_DIRECTORY)) {
118 array_push($errors, "LOCK_DIRECTORY defined in config.php is not writable (chmod -R 777 ".LOCK_DIRECTORY.").\n");
119 }
2604ad7d 120
5be0ba92
AD
121 if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {
122 array_push($errors, "PHP configuration option allow_url_fopen is disabled, and CURL functions are not present. Either enable allow_url_fopen or install PHP extension for CURL.");
123 }
78a5c296 124
5be0ba92
AD
125 if (!function_exists("json_encode")) {
126 array_push($errors, "PHP support for JSON is required, but was not found.");
127 }
edfab7bd 128
e54eb40a 129 if (DB_TYPE == "mysql" && !function_exists("mysqli_connect")) {
5be0ba92
AD
130 array_push($errors, "PHP support for MySQL is required for configured DB_TYPE in config.php.");
131 }
f6370f36 132
5be0ba92
AD
133 if (DB_TYPE == "pgsql" && !function_exists("pg_connect")) {
134 array_push($errors, "PHP support for PostgreSQL is required for configured DB_TYPE in config.php");
135 }
7bb8d39a 136
5be0ba92
AD
137 if (!function_exists("mb_strlen")) {
138 array_push($errors, "PHP support for mbstring functions is required but was not found.");
139 }
fe2f004c 140
5be0ba92
AD
141 if (!function_exists("hash")) {
142 array_push($errors, "PHP support for hash() function is required but was not found.");
143 }
7bb8d39a 144
4c467026
AD
145 if (ini_get("safe_mode")) {
146 array_push($errors, "PHP safe mode setting is obsolete and not supported by tt-rss.");
5be0ba92 147 }
7bb8d39a 148
5be0ba92
AD
149 if (!class_exists("DOMDocument")) {
150 array_push($errors, "PHP support for DOMDocument is required, but was not found.");
151 }
e35ba0e2
AD
152
153 $self_scheme = parse_url(SELF_URL_PATH, PHP_URL_SCHEME);
154
155 if ($_SERVER['HTTPS'] && $self_scheme == 'http') {
156 array_push($errors, "You are accessing tt-rss over SSL but SELF_URL_PATH in config.php refers to a http:// URL.");
157 }
09e8bdfd 158 }
f5b429ef 159
5be0ba92
AD
160 if (count($errors) > 0 && $_SERVER['REQUEST_URI']) { ?>
161 <html>
162 <head>
163 <title>Startup failed</title>
164 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5bbc4bb4 165 <link rel="stylesheet" type="text/css" href="css/utility.css">
5be0ba92
AD
166 </head>
167 <body>
884d1650
AD
168 <div class="floatingLogo"><img src="images/logo_small.png"></div>
169 <div class="content">
7bb8d39a 170
5be0ba92 171 <h1>Startup failed</h1>
e2bcd11b 172
5be0ba92
AD
173 <p>Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade. Please fix
174 errors indicated by the following messages:</p>
76a259c2 175
5be0ba92 176 <?php foreach ($errors as $error) { echo format_error($error); } ?>
e6a63a1c 177
5be0ba92
AD
178 <p>You might want to check tt-rss <a href="http://tt-rss.org/wiki">wiki</a> or the
179 <a href="http://tt-rss.org/forum">forums</a> for more information. Please search the forums before creating new topic
180 for your question.</p>
884d1650
AD
181
182 </div>
09e8bdfd
AD
183 </body>
184 </html>
f56c6cd4 185
5be0ba92
AD
186 <?php
187 die;
188 } else if (count($errors) > 0) {
189 echo "Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade.\n";
190 echo "Please fix errors indicated by the following messages:\n\n";
191
192 foreach ($errors as $error) {
193 echo " * $error\n";
194 }
195
383b0090 196 echo "\nYou might want to check tt-rss wiki or the forums for more information.\n";
5be0ba92
AD
197 echo "Please search the forums before creating new topic for your question.\n";
198
199 exit(-1);
200 }
ef8be8ea
AD
201 }
202
6322ac79 203 initial_sanity_check();
5be0ba92 204
66581886 205?>