index.php 7.4 KB

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