sanity_check.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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($link) {
  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.3.0', '<')) {
  37. array_push($errors, "PHP version 5.3.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 . "/export")) {
  46. array_push($errors, "Data export cache is not writable (chmod -R 777 ".CACHE_DIR."/export)");
  47. }
  48. if (!is_writable(CACHE_DIR . "/js")) {
  49. array_push($errors, "Javascript cache is not writable (chmod -R 777 ".CACHE_DIR."/js)");
  50. }
  51. if (GENERATED_CONFIG_CHECK != EXPECTED_CONFIG_VERSION) {
  52. array_push($errors,
  53. "Configuration option checker sanity_config.php is outdated, please recreate it using ./utils/regen_config_checks.sh");
  54. }
  55. foreach ($requred_defines as $d) {
  56. if (!defined($d)) {
  57. array_push($errors,
  58. "Required configuration file parameter $d is not defined in config.php. You might need to copy it from config.php-dist.");
  59. }
  60. }
  61. if (SINGLE_USER_MODE) {
  62. $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
  63. if ($link) {
  64. $result = db_query($link, "SELECT id FROM ttrss_users WHERE id = 1");
  65. if (db_num_rows($result) != 1) {
  66. array_push($errors, "SINGLE_USER_MODE is enabled in config.php but default admin account is not found.");
  67. }
  68. }
  69. }
  70. if (SELF_URL_PATH == "http://yourserver/tt-rss/") {
  71. $urlpath = preg_replace("/\w+\.php$/", "", make_self_url_path());
  72. array_push($errors,
  73. "Please set SELF_URL_PATH to the correct value for your server (possible value: <b>$urlpath</b>)");
  74. }
  75. if (!is_writable(ICONS_DIR)) {
  76. array_push($errors, "ICONS_DIR defined in config.php is not writable (chmod -R 777 ".ICONS_DIR.").\n");
  77. }
  78. if (!is_writable(LOCK_DIRECTORY)) {
  79. array_push($errors, "LOCK_DIRECTORY defined in config.php is not writable (chmod -R 777 ".LOCK_DIRECTORY.").\n");
  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. if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {
  85. 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.");
  86. }
  87. if (!function_exists("json_encode")) {
  88. array_push($errors, "PHP support for JSON is required, but was not found.");
  89. }
  90. if (DB_TYPE == "mysql" && !function_exists("mysql_connect")) {
  91. array_push($errors, "PHP support for MySQL is required for configured DB_TYPE in config.php.");
  92. }
  93. if (DB_TYPE == "pgsql" && !function_exists("pg_connect")) {
  94. array_push($errors, "PHP support for PostgreSQL is required for configured DB_TYPE in config.php");
  95. }
  96. if (!function_exists("mb_strlen")) {
  97. array_push($errors, "PHP support for mbstring functions is required but was not found.");
  98. }
  99. if (!function_exists("hash")) {
  100. array_push($errors, "PHP support for hash() function is required but was not found.");
  101. }
  102. if (!function_exists("ctype_lower")) {
  103. array_push($errors, "PHP support for ctype functions are required by HTMLPurifier.");
  104. }
  105. if (!function_exists("iconv")) {
  106. array_push($errors, "PHP support for iconv is required to handle multiple charsets.");
  107. }
  108. /* if (ini_get("safe_mode")) {
  109. array_push($errors, "PHP safe mode setting is not supported.");
  110. } */
  111. if ((PUBSUBHUBBUB_HUB || PUBSUBHUBBUB_ENABLED) && !function_exists("curl_init")) {
  112. array_push($errors, "PHP support for CURL is required for PubSubHubbub.");
  113. }
  114. if (!class_exists("DOMDocument")) {
  115. array_push($errors, "PHP support for DOMDocument is required, but was not found.");
  116. }
  117. }
  118. if (count($errors) > 0 && $_SERVER['REQUEST_URI']) { ?>
  119. <html>
  120. <head>
  121. <title>Startup failed</title>
  122. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  123. <link rel="stylesheet" type="text/css" href="utility.css">
  124. </head>
  125. <body>
  126. <div class="floatingLogo"><img src="images/logo_small.png"></div>
  127. <div class="content">
  128. <h1>Startup failed</h1>
  129. <p>Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade. Please fix
  130. errors indicated by the following messages:</p>
  131. <?php foreach ($errors as $error) { echo format_error($error); } ?>
  132. <p>You might want to check tt-rss <a href="http://tt-rss.org/wiki">wiki</a> or the
  133. <a href="http://tt-rss.org/forum">forums</a> for more information. Please search the forums before creating new topic
  134. for your question.</p>
  135. </div>
  136. </body>
  137. </html>
  138. <?php
  139. die;
  140. } else if (count($errors) > 0) {
  141. echo "Tiny Tiny RSS was unable to start properly. This usually means a misconfiguration or an incomplete upgrade.\n";
  142. echo "Please fix errors indicated by the following messages:\n\n";
  143. foreach ($errors as $error) {
  144. echo " * $error\n";
  145. }
  146. echo "\nYou might want to check tt-rss wiki or the forums for more information.\n";
  147. echo "Please search the forums before creating new topic for your question.\n";
  148. exit(-1);
  149. }
  150. }
  151. initial_sanity_check($link);
  152. ?>