sanity_check.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <?php
  2. /*
  3. * WARNING!
  4. *
  5. * If you modify this file, you are ON YOUR OWN!
  6. *
  7. * Believe it or not, all of the checks below are required to succeed for
  8. * tt-rss to actually function properly.
  9. *
  10. * If you think you have a better idea about what is or isn't required, feel
  11. * free to modify the file, note though that you are therefore automatically
  12. * disqualified from any further support by official channels, e.g. tt-rss.org
  13. * issue tracker or the forums.
  14. *
  15. * If you come crying when stuff inevitably breaks, you will be mocked and told
  16. * to get out. */
  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. return $url_path;
  20. }
  21. function initial_sanity_check() {
  22. $errors = array();
  23. if (!file_exists("config.php")) {
  24. array_push($errors, "Configuration file not found. Looks like you forgot to copy config.php-dist to config.php and edit it.");
  25. } else {
  26. require_once "sanity_config.php";
  27. if (file_exists("install") && !file_exists("config.php")) {
  28. array_push($errors, "Please copy config.php-dist to config.php or run the installer in install/");
  29. }
  30. if (strpos(PLUGINS, "auth_") === FALSE) {
  31. array_push($errors, "Please enable at least one authentication module via PLUGINS constant in config.php");
  32. }
  33. if (function_exists('posix_getuid') && posix_getuid() == 0) {
  34. array_push($errors, "Please don't run this script as root.");
  35. }
  36. if (version_compare(PHP_VERSION, '5.4.0', '<')) {
  37. array_push($errors, "PHP version 5.4.0 or newer required.");
  38. }
  39. if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
  40. 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.");
  41. }
  42. if (!is_writable(CACHE_DIR . "/images")) {
  43. array_push($errors, "Image cache is not writable (chmod -R 777 ".CACHE_DIR."/images)");
  44. }
  45. if (!is_writable(CACHE_DIR . "/upload")) {
  46. array_push($errors, "Upload cache is not writable (chmod -R 777 ".CACHE_DIR."/upload)");
  47. }
  48. if (!is_writable(CACHE_DIR . "/export")) {
  49. array_push($errors, "Data export cache is not writable (chmod -R 777 ".CACHE_DIR."/export)");
  50. }
  51. if (!is_writable(CACHE_DIR . "/js")) {
  52. array_push($errors, "Javascript cache is not writable (chmod -R 777 ".CACHE_DIR."/js)");
  53. }
  54. if (strlen(FEED_CRYPT_KEY) > 0 && strlen(FEED_CRYPT_KEY) != 24) {
  55. array_push($errors, "FEED_CRYPT_KEY should be exactly 24 characters in length.");
  56. }
  57. if (strlen(FEED_CRYPT_KEY) > 0 && !function_exists("mcrypt_decrypt")) {
  58. array_push($errors, "FEED_CRYPT_KEY requires mcrypt functions which are not found.");
  59. }
  60. if (GENERATED_CONFIG_CHECK != EXPECTED_CONFIG_VERSION) {
  61. array_push($errors,
  62. "Configuration option checker sanity_config.php is outdated, please recreate it using ./utils/regen_config_checks.sh");
  63. }
  64. foreach ($requred_defines as $d) {
  65. if (!defined($d)) {
  66. array_push($errors,
  67. "Required configuration file parameter $d is not defined in config.php. You might need to copy it from config.php-dist.");
  68. }
  69. }
  70. if (SINGLE_USER_MODE) {
  71. $result = db_query("SELECT id FROM ttrss_users WHERE id = 1");
  72. if (db_num_rows($result) != 1) {
  73. array_push($errors, "SINGLE_USER_MODE is enabled in config.php but default admin account is not found.");
  74. }
  75. }
  76. if (SELF_URL_PATH == "http://example.org/tt-rss/") {
  77. $urlpath = preg_replace("/\w+\.php$/", "", make_self_url_path());
  78. array_push($errors,
  79. "Please set SELF_URL_PATH to the correct value for your server (possible value: <b>$urlpath</b>)");
  80. }
  81. if (!is_writable(ICONS_DIR)) {
  82. array_push($errors, "ICONS_DIR defined in config.php is not writable (chmod -R 777 ".ICONS_DIR.").\n");
  83. }
  84. if (!is_writable(LOCK_DIRECTORY)) {
  85. array_push($errors, "LOCK_DIRECTORY defined in config.php is not writable (chmod -R 777 ".LOCK_DIRECTORY.").\n");
  86. }
  87. if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {
  88. 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.");
  89. }
  90. if (!function_exists("json_encode")) {
  91. array_push($errors, "PHP support for JSON is required, but was not found.");
  92. }
  93. if (DB_TYPE == "mysql" && !function_exists("mysqli_connect")) {
  94. array_push($errors, "PHP support for MySQL is required for configured DB_TYPE in config.php.");
  95. }
  96. if (DB_TYPE == "pgsql" && !function_exists("pg_connect")) {
  97. array_push($errors, "PHP support for PostgreSQL is required for configured DB_TYPE in config.php");
  98. }
  99. if (!function_exists("mb_strlen")) {
  100. array_push($errors, "PHP support for mbstring functions is required but was not found.");
  101. }
  102. if (!function_exists("hash")) {
  103. array_push($errors, "PHP support for hash() function is required but was not found.");
  104. }
  105. if (ini_get("safe_mode")) {
  106. array_push($errors, "PHP safe mode setting is obsolete and not supported by tt-rss.");
  107. }
  108. if ((PUBSUBHUBBUB_HUB || PUBSUBHUBBUB_ENABLED) && !function_exists("curl_init")) {
  109. array_push($errors, "PHP support for CURL is required for PubSubHubbub.");
  110. }
  111. if (!class_exists("DOMDocument")) {
  112. array_push($errors, "PHP support for DOMDocument is required, but was not found.");
  113. }
  114. }
  115. if (count($errors) > 0 && $_SERVER['REQUEST_URI']) { ?>
  116. <html>
  117. <head>
  118. <title>Startup failed</title>
  119. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  120. <link rel="stylesheet" type="text/css" href="css/utility.css">
  121. </head>
  122. <body>
  123. <div class="floatingLogo"><img src="images/logo_small.png"></div>
  124. <div class="content">
  125. <h1>Startup failed</h1>
  126. <p>Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade. Please fix
  127. errors indicated by the following messages:</p>
  128. <?php foreach ($errors as $error) { echo format_error($error); } ?>
  129. <p>You might want to check tt-rss <a href="http://tt-rss.org/wiki">wiki</a> or the
  130. <a href="http://tt-rss.org/forum">forums</a> for more information. Please search the forums before creating new topic
  131. for your question.</p>
  132. </div>
  133. </body>
  134. </html>
  135. <?php
  136. die;
  137. } else if (count($errors) > 0) {
  138. echo "Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade.\n";
  139. echo "Please fix errors indicated by the following messages:\n\n";
  140. foreach ($errors as $error) {
  141. echo " * $error\n";
  142. }
  143. echo "\nYou might want to check tt-rss wiki or the forums for more information.\n";
  144. echo "Please search the forums before creating new topic for your question.\n";
  145. exit(-1);
  146. }
  147. }
  148. initial_sanity_check();
  149. ?>