]> git.wh0rd.org - tt-rss.git/blob - include/sanity_check.php
replace htmlpurifier with htmlawed
[tt-rss.git] / include / sanity_check.php
1 <?php
2 function initial_sanity_check($link) {
3
4 $errors = array();
5
6 if (!file_exists("config.php")) {
7 array_push($errors, "Configuration file not found. Looks like you forgot to copy config.php-dist to config.php and edit it.");
8 } else {
9
10 require_once "sanity_config.php";
11
12 if (function_exists('posix_getuid') && posix_getuid() == 0) {
13 array_push($errors, "Please don't run this script as root.");
14 }
15
16 if (version_compare("5.3.0", phpversion()) == 1) {
17 array_push($errors, "PHP version 5.3.0 or newer required.");
18 }
19
20 if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
21 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.");
22 }
23
24 if (!is_writable(CACHE_DIR . "/images")) {
25 array_push($errors, "Image cache is not writable (chmod -R 777 ".CACHE_DIR."/images)");
26 }
27
28 if (!is_writable(CACHE_DIR . "/export")) {
29 array_push($errors, "Data export cache is not writable (chmod -R 777 ".CACHE_DIR."/export)");
30 }
31
32 if (GENERATED_CONFIG_CHECK != EXPECTED_CONFIG_VERSION) {
33 array_push($errors,
34 "Configuration option checker sanity_config.php is outdated, please recreate it using ./utils/regen_config_checks.sh");
35 }
36
37 foreach ($requred_defines as $d) {
38 if (!defined($d)) {
39 array_push($errors,
40 "Required configuration file parameter $d is not defined in config.php. You might need to copy it from config.php-dist.");
41 }
42 }
43
44 if (SESSION_EXPIRE_TIME < 60) {
45 array_push($errors, "SESSION_EXPIRE_TIME set in config.php is too low, please set it to an integer value >= 60");
46 }
47
48 if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME) {
49 array_push($errors, "SESSION_EXPIRE_TIME set in config.php should be >= to SESSION_COOKIE_LIFETIME");
50 }
51
52 if (SINGLE_USER_MODE) {
53 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
54
55 if ($link) {
56 $result = db_query($link, "SELECT id FROM ttrss_users WHERE id = 1");
57
58 if (db_num_rows($result) != 1) {
59 array_push($errors, "SINGLE_USER_MODE is enabled in config.php but default admin account is not found.");
60 }
61 }
62 }
63
64 if (SELF_URL_PATH == "http://yourserver/tt-rss/") {
65 if ($_SERVER['HTTP_REFERER']) {
66 array_push($errors,
67 "Please set SELF_URL_PATH to the correct value for your server (possible value: <b>" . $_SERVER['HTTP_REFERER'] . "</b>)");
68 } else {
69 array_push($errors, "Please set SELF_URL_PATH to the correct value for your server.");
70 }
71 }
72
73 if (!is_writable(ICONS_DIR)) {
74 array_push($errors, "ICONS_DIR defined in config.php is not writable (chmod -R 777 ".ICONS_DIR.").\n");
75 }
76
77 if (!is_writable(LOCK_DIRECTORY)) {
78 array_push($errors, "LOCK_DIRECTORY defined in config.php is not writable (chmod -R 777 ".LOCK_DIRECTORY.").\n");
79 }
80
81 if (ini_get("open_basedir")) {
82 array_push($errors, "PHP configuration option open_basedir is not supported. Please disable this in PHP settings file (php.ini).");
83 }
84
85 if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {
86 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.");
87 }
88
89 if (!function_exists("json_encode")) {
90 array_push($errors, "PHP support for JSON is required, but was not found.");
91 }
92
93 if (DB_TYPE == "mysql" && !function_exists("mysql_connect")) {
94 array_push($errors, "PHP support for MySQL is required for configured DB_TYPE in config.php.");
95 }
96
97 if (DB_TYPE == "pgsql" && !function_exists("pg_connect")) {
98 array_push($errors, "PHP support for PostgreSQL is required for configured DB_TYPE in config.php");
99 }
100
101 if (!function_exists("mb_strlen")) {
102 array_push($errors, "PHP support for mbstring functions is required but was not found.");
103 }
104
105 if (!function_exists("hash")) {
106 array_push($errors, "PHP support for hash() function is required but was not found.");
107 }
108
109 if (!function_exists("ctype_lower")) {
110 array_push($errors, "PHP support for ctype functions are required by HTMLPurifier.");
111 }
112
113 if (ini_get("safe_mode")) {
114 array_push($errors, "PHP safe mode setting is not supported.");
115 }
116
117 if ((PUBSUBHUBBUB_HUB || PUBSUBHUBBUB_ENABLED) && !function_exists("curl_init")) {
118 array_push($errors, "PHP support for CURL is required for PubSubHubbub.");
119 }
120
121 if (!class_exists("DOMDocument")) {
122 array_push($errors, "PHP support for DOMDocument is required, but was not found.");
123 }
124 }
125
126 if (count($errors) > 0 && $_SERVER['REQUEST_URI']) { ?>
127 <html>
128 <head>
129 <title>Startup failed</title>
130 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
131 <link rel="stylesheet" type="text/css" href="utility.css">
132 </head>
133 <body>
134 <div class="floatingLogo"><img src="images/logo_wide.png"></div>
135
136 <h1>Startup failed</h1>
137
138 <p>Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade. Please fix
139 errors indicated by the following messages:</p>
140
141 <?php foreach ($errors as $error) { echo format_error($error); } ?>
142
143 <p>You might want to check tt-rss <a href="http://tt-rss.org/wiki">wiki</a> or the
144 <a href="http://tt-rss.org/forum">forums</a> for more information. Please search the forums before creating new topic
145 for your question.</p>
146 </body>
147 </html>
148
149 <?php
150 die;
151 } else if (count($errors) > 0) {
152 echo "Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade.\n";
153 echo "Please fix errors indicated by the following messages:\n\n";
154
155 foreach ($errors as $error) {
156 echo " * $error\n";
157 }
158
159 echo "\nYou might want to check tt-rss wiki or the forums for more information.\n";
160 echo "Please search the forums before creating new topic for your question.\n";
161
162 exit(-1);
163 }
164 }
165
166 initial_sanity_check($link);
167
168 ?>