index.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. /**
  3. * @author Tobias Reich
  4. * @copyright 2015 by Tobias Reich
  5. * @description This file takes a look at your Lychee-configuration and displays all errors it can find.
  6. */
  7. namespace Diagnostics;
  8. use Mysqli;
  9. use Lychee\Modules\Settings;
  10. $lychee = __DIR__ . '/../../';
  11. require($lychee . 'php/define.php');
  12. require($lychee . 'php/autoload.php');
  13. require($lychee . 'php/helpers/hasPermissions.php');
  14. // Start the session
  15. session_start();
  16. // Set content
  17. header('content-type: text/plain');
  18. // Declare
  19. $error = '';
  20. // Show separator
  21. echo('Diagnostics' . PHP_EOL);
  22. echo('-----------' . PHP_EOL);
  23. // PHP Version
  24. if (floatval(phpversion())<5.5) $error .= ('Error: Upgrade to PHP 5.5 or higher' . PHP_EOL);
  25. // Extensions
  26. if (!extension_loaded('session')) $error .= ('Error: PHP session extension not activated' . PHP_EOL);
  27. if (!extension_loaded('exif')) $error .= ('Error: PHP exif extension not activated' . PHP_EOL);
  28. if (!extension_loaded('mbstring')) $error .= ('Error: PHP mbstring extension not activated' . PHP_EOL);
  29. if (!extension_loaded('gd')) $error .= ('Error: PHP gd extension not activated' . PHP_EOL);
  30. if (!extension_loaded('mysqli')) $error .= ('Error: PHP mysqli extension not activated' . PHP_EOL);
  31. if (!extension_loaded('json')) $error .= ('Error: PHP json extension not activated' . PHP_EOL);
  32. if (!extension_loaded('zip')) $error .= ('Error: PHP zip extension not activated' . PHP_EOL);
  33. // Permissions
  34. if (hasPermissions(LYCHEE_UPLOADS_BIG)===false) $error .= ('Error: \'uploads/big\' is missing or has insufficient read/write privileges' . PHP_EOL);
  35. if (hasPermissions(LYCHEE_UPLOADS_MEDIUM)===false) $error .= ('Error: \'uploads/medium\' is missing or has insufficient read/write privileges' . PHP_EOL);
  36. if (hasPermissions(LYCHEE_UPLOADS_THUMB)===false) $error .= ('Error: \'uploads/thumb\' is missing or has insufficient read/write privileges' . PHP_EOL);
  37. if (hasPermissions(LYCHEE_UPLOADS_IMPORT)===false) $error .= ('Error: \'uploads/import\' is missing or has insufficient read/write privileges' . PHP_EOL);
  38. if (hasPermissions(LYCHEE_UPLOADS)===false) $error .= ('Error: \'uploads/\' is missing or has insufficient read/write privileges' . PHP_EOL);
  39. if (hasPermissions(LYCHEE_DATA)===false) $error .= ('Error: \'data/\' is missing or has insufficient read/write privileges' . PHP_EOL);
  40. // About GD
  41. $gdVersion = gd_info();
  42. if (!$gdVersion['JPEG Support']) $error .= ('Error: PHP gd extension without jpeg support' . PHP_EOL);
  43. if (!$gdVersion['PNG Support']) $error .= ('Error: PHP gd extension without png support' . PHP_EOL);
  44. if (!$gdVersion['GIF Read Support'] || !$gdVersion['GIF Create Support']) $error .= ('Error: PHP gd extension without full gif support' . PHP_EOL);
  45. // Load config
  46. if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error: Configuration not found. Please install Lychee for additional tests');
  47. require(LYCHEE_CONFIG_FILE);
  48. // Database
  49. $database = new Mysqli($dbHost, $dbUser, $dbPassword, $dbName);
  50. if (mysqli_connect_errno()!=0) $error .= ('Error: ' . mysqli_connect_errno() . ': ' . mysqli_connect_error() . '' . PHP_EOL);
  51. // Config
  52. if (!isset($dbName)||$dbName==='') $error .= ('Error: No property for $dbName in config.php' . PHP_EOL);
  53. if (!isset($dbUser)||$dbUser==='') $error .= ('Error: No property for $dbUser in config.php' . PHP_EOL);
  54. if (!isset($dbPassword)) $error .= ('Error: No property for $dbPassword in config.php' . PHP_EOL);
  55. if (!isset($dbHost)||$dbHost==='') $error .= ('Error: No property for $dbHost in config.php' . PHP_EOL);
  56. // Load settings
  57. $settings = Settings::get();
  58. // Settings
  59. if (!isset($settings['username'])||$settings['username']=='') $error .= ('Error: Username empty or not set in database' . PHP_EOL);
  60. if (!isset($settings['password'])||$settings['password']=='') $error .= ('Error: Password empty or not set in database' . PHP_EOL);
  61. if (!isset($settings['sortingPhotos'])||$settings['sortingPhotos']=='') $error .= ('Error: Wrong property for sortingPhotos in database' . PHP_EOL);
  62. if (!isset($settings['sortingAlbums'])||$settings['sortingAlbums']=='') $error .= ('Error: Wrong property for sortingAlbums in database' . PHP_EOL);
  63. if (!isset($settings['plugins'])) $error .= ('Error: No property for plugins in database' . PHP_EOL);
  64. if (!isset($settings['imagick'])||$settings['imagick']=='') $error .= ('Error: No or wrong property for imagick in database' . PHP_EOL);
  65. if (!isset($settings['identifier'])||$settings['identifier']=='') $error .= ('Error: No or wrong property for identifier in database' . PHP_EOL);
  66. if (!isset($settings['skipDuplicates'])||$settings['skipDuplicates']=='') $error .= ('Error: No or wrong property for skipDuplicates in database' . PHP_EOL);
  67. if (!isset($settings['checkForUpdates'])||($settings['checkForUpdates']!='0'&&$settings['checkForUpdates']!='1')) $error .= ('Error: No or wrong property for checkForUpdates in database' . PHP_EOL);
  68. // Check dropboxKey
  69. if (!$settings['dropboxKey']) echo('Warning: Dropbox import not working. No property for dropboxKey.' . PHP_EOL);
  70. // Check php.ini Settings
  71. if (ini_get('max_execution_time')<200&&ini_set('upload_max_filesize', '20M')===false) echo('Warning: You may experience problems when uploading a large amount of photos. Take a look in the FAQ for details.' . PHP_EOL);
  72. if (!ini_get('allow_url_fopen')) echo('Warning: You may experience problems with the Dropbox- and URL-Import. Edit your php.ini and set allow_url_fopen to 1.' . PHP_EOL);
  73. // Check mysql version
  74. if ($database->server_version<50500) echo('Warning: Lychee uses the GBK charset to avoid sql injections on your MySQL version. Please update to MySQL 5.5 or higher to enable UTF-8 support.' . PHP_EOL);
  75. // Output
  76. if ($error==='') echo('No critical problems found. Lychee should work without problems!' . PHP_EOL);
  77. else echo $error;
  78. // Show separator
  79. echo(PHP_EOL . PHP_EOL . 'System Information' . PHP_EOL);
  80. echo('------------------' . PHP_EOL);
  81. // Ensure that user is logged in
  82. if ((isset($_SESSION['login'])&&$_SESSION['login']===true)&&
  83. (isset($_SESSION['identifier'])&&$_SESSION['identifier']===$settings['identifier'])) {
  84. // Load json
  85. $json = file_get_contents(LYCHEE_SRC . 'package.json');
  86. $json = json_decode($json, true);
  87. // About imagick
  88. $imagick = extension_loaded('imagick');
  89. if ($imagick===true) $imagickVersion = @Imagick::getVersion();
  90. else $imagick = '-';
  91. if (!isset($imagickVersion, $imagickVersion['versionNumber'])||$imagickVersion==='') $imagickVersion = '-';
  92. else $imagickVersion = $imagickVersion['versionNumber'];
  93. // Output system information
  94. echo('Lychee Version: ' . $json['version'] . PHP_EOL);
  95. echo('DB Version: ' . $settings['version'] . PHP_EOL);
  96. echo('System: ' . PHP_OS . PHP_EOL);
  97. echo('PHP Version: ' . floatval(phpversion()) . PHP_EOL);
  98. echo('MySQL Version: ' . $database->server_version . PHP_EOL);
  99. echo('Imagick: ' . $imagick . PHP_EOL);
  100. echo('Imagick Active: ' . $settings['imagick'] . PHP_EOL);
  101. echo('Imagick Version: ' . $imagickVersion . PHP_EOL);
  102. echo('GD Version: ' . $gdVersion['GD Version'] . PHP_EOL);
  103. echo('Plugins: ' . implode($settings['plugins'], ', ') . PHP_EOL);
  104. } else {
  105. // Don't go further if the user is not logged in
  106. exit('You have to be logged in to see more information.');
  107. }
  108. ?>