sanity_check.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <?php
  2. /* WARNING!
  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. */
  16. function make_self_url_path() {
  17. $proto = is_server_https() ? 'https' : 'http';
  18. $url_path = $proto . '://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
  19. return $url_path;
  20. }
  21. /**
  22. * @SuppressWarnings(PHPMD.UnusedLocalVariable)
  23. */
  24. function initial_sanity_check() {
  25. $errors = array();
  26. if (!file_exists("config.php")) {
  27. array_push($errors, "Configuration file not found. Looks like you forgot to copy config.php-dist to config.php and edit it.");
  28. } else {
  29. require_once "sanity_config.php";
  30. if (file_exists("install") && !file_exists("config.php")) {
  31. array_push($errors, "Please copy config.php-dist to config.php or run the installer in install/");
  32. }
  33. if (strpos(PLUGINS, "auth_") === FALSE) {
  34. array_push($errors, "Please enable at least one authentication module via PLUGINS constant in config.php");
  35. }
  36. if (function_exists('posix_getuid') && posix_getuid() == 0) {
  37. array_push($errors, "Please don't run this script as root.");
  38. }
  39. if (version_compare(PHP_VERSION, '5.4.0', '<')) {
  40. array_push($errors, "PHP version 5.4.0 or newer required.");
  41. }
  42. if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
  43. 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.");
  44. }
  45. if (!is_writable(CACHE_DIR . "/images")) {
  46. array_push($errors, "Image cache is not writable (chmod -R 777 ".CACHE_DIR."/images)");
  47. }
  48. if (!is_writable(CACHE_DIR . "/upload")) {
  49. array_push($errors, "Upload cache is not writable (chmod -R 777 ".CACHE_DIR."/upload)");
  50. }
  51. if (!is_writable(CACHE_DIR . "/export")) {
  52. array_push($errors, "Data export cache is not writable (chmod -R 777 ".CACHE_DIR."/export)");
  53. }
  54. if (!is_writable(CACHE_DIR . "/js")) {
  55. array_push($errors, "Javascript cache is not writable (chmod -R 777 ".CACHE_DIR."/js)");
  56. }
  57. if (strlen(FEED_CRYPT_KEY) > 0 && strlen(FEED_CRYPT_KEY) != 24) {
  58. array_push($errors, "FEED_CRYPT_KEY should be exactly 24 characters in length.");
  59. }
  60. if (strlen(FEED_CRYPT_KEY) > 0 && !function_exists("mcrypt_decrypt")) {
  61. array_push($errors, "FEED_CRYPT_KEY requires mcrypt functions which are not found.");
  62. }
  63. if (GENERATED_CONFIG_CHECK != EXPECTED_CONFIG_VERSION) {
  64. array_push($errors,
  65. "Configuration option checker sanity_config.php is outdated, please recreate it using ./utils/regen_config_checks.sh");
  66. }
  67. foreach ($requred_defines as $d) {
  68. if (!defined($d)) {
  69. array_push($errors,
  70. "Required configuration file parameter $d is not defined in config.php. You might need to copy it from config.php-dist.");
  71. }
  72. }
  73. if (SINGLE_USER_MODE) {
  74. $pdo = DB::pdo();
  75. $res = $pdo->query("SELECT id FROM ttrss_users WHERE id = 1");
  76. if (!$res->fetch()) {
  77. array_push($errors, "SINGLE_USER_MODE is enabled in config.php but default admin account is not found.");
  78. }
  79. }
  80. $ref_self_url_path = make_self_url_path();
  81. $ref_self_url_path = preg_replace("/\w+\.php$/", "", $ref_self_url_path);
  82. if (SELF_URL_PATH == "http://example.org/tt-rss/") {
  83. array_push($errors,
  84. "Please set SELF_URL_PATH to the correct value for your server (possible value: <b>$ref_self_url_path</b>)");
  85. }
  86. if (isset($_SERVER["HTTP_HOST"]) &&
  87. (!defined('_SKIP_SELF_URL_PATH_CHECKS') || !_SKIP_SELF_URL_PATH_CHECKS) &&
  88. SELF_URL_PATH != $ref_self_url_path && SELF_URL_PATH != mb_substr($ref_self_url_path, 0, mb_strlen($ref_self_url_path)-1)) {
  89. array_push($errors,
  90. "Please set SELF_URL_PATH to the correct value detected for your server: <b>$ref_self_url_path</b>");
  91. }
  92. if (!is_writable(ICONS_DIR)) {
  93. array_push($errors, "ICONS_DIR defined in config.php is not writable (chmod -R 777 ".ICONS_DIR.").\n");
  94. }
  95. if (!is_writable(LOCK_DIRECTORY)) {
  96. array_push($errors, "LOCK_DIRECTORY defined in config.php is not writable (chmod -R 777 ".LOCK_DIRECTORY.").\n");
  97. }
  98. if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {
  99. 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.");
  100. }
  101. if (!function_exists("json_encode")) {
  102. array_push($errors, "PHP support for JSON is required, but was not found.");
  103. }
  104. if (DB_TYPE == "mysql" && !function_exists("mysqli_connect")) {
  105. array_push($errors, "PHP support for MySQL is required for configured DB_TYPE in config.php.");
  106. }
  107. if (DB_TYPE == "pgsql" && !function_exists("pg_connect")) {
  108. array_push($errors, "PHP support for PostgreSQL is required for configured DB_TYPE in config.php");
  109. }
  110. if (!function_exists("mb_strlen")) {
  111. array_push($errors, "PHP support for mbstring functions is required but was not found.");
  112. }
  113. if (!function_exists("hash")) {
  114. array_push($errors, "PHP support for hash() function is required but was not found.");
  115. }
  116. if (ini_get("safe_mode")) {
  117. array_push($errors, "PHP safe mode setting is obsolete and not supported by tt-rss.");
  118. }
  119. if (!function_exists("mime_content_type")) {
  120. array_push($errors, "PHP function mime_content_type() is missing, try enabling fileinfo module.");
  121. }
  122. if (!class_exists("DOMDocument")) {
  123. array_push($errors, "PHP support for DOMDocument is required, but was not found.");
  124. }
  125. if (DB_TYPE == "mysql") {
  126. $bad_tables = check_mysql_tables();
  127. if (count($bad_tables) > 0) {
  128. $bad_tables_fmt = [];
  129. foreach ($bad_tables as $bt) {
  130. array_push($bad_tables_fmt, sprintf("%s (%s)", $bt['table_name'], $bt['engine']));
  131. }
  132. $msg = "<p>The following tables use an unsupported MySQL engine: <b>" .
  133. implode(", ", $bad_tables_fmt) . "</b>.</p>";
  134. $msg .= "<p>The only supported engine on MySQL is InnoDB. MyISAM lacks functionality to run
  135. tt-rss.
  136. Please backup your data (via OPML) and re-import the schema before continuing.</p>
  137. <p><b>WARNING: importing the schema would mean LOSS OF ALL YOUR DATA.</b></p>";
  138. array_push($errors, $msg);
  139. }
  140. }
  141. }
  142. if (count($errors) > 0 && $_SERVER['REQUEST_URI']) { ?>
  143. <html>
  144. <head>
  145. <title>Startup failed</title>
  146. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  147. <link rel="stylesheet" type="text/css" href="css/default.css">
  148. </head>
  149. <body class='sanity_failed claro ttrss_utility'>
  150. <div class="floatingLogo"><img src="images/logo_small.png"></div>
  151. <div class="content">
  152. <h1>Startup failed</h1>
  153. <p>Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade. Please fix
  154. errors indicated by the following messages:</p>
  155. <?php foreach ($errors as $error) { echo format_error($error); } ?>
  156. <p>You might want to check tt-rss <a href="http://tt-rss.org/wiki">wiki</a> or the
  157. <a href="http://tt-rss.org/forum">forums</a> for more information. Please search the forums before creating new topic
  158. for your question.</p>
  159. </div>
  160. </body>
  161. </html>
  162. <?php
  163. die;
  164. } else if (count($errors) > 0) {
  165. echo "Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade.\n";
  166. echo "Please fix errors indicated by the following messages:\n\n";
  167. foreach ($errors as $error) {
  168. echo " * $error\n";
  169. }
  170. echo "\nYou might want to check tt-rss wiki or the forums for more information.\n";
  171. echo "Please search the forums before creating new topic for your question.\n";
  172. exit(-1);
  173. }
  174. }
  175. initial_sanity_check();
  176. ?>