PageRenderTime 58ms CodeModel.GetById 28ms RepoModel.GetById 1ms app.codeStats 0ms

/include/sanity_check.php

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