index.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. ###
  3. # @name Check Plugin
  4. # @author Tobias Reich
  5. # @copyright 2014 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. # Load config
  19. if (!file_exists(LYCHEE_CONFIG_FILE)) exit('Error 001: Configuration not found. Please install Lychee first.');
  20. require(LYCHEE_CONFIG_FILE);
  21. # Define the table prefix
  22. defineTablePrefix($dbTablePrefix);
  23. # Show separator
  24. echo('Diagnostics' . PHP_EOL);
  25. echo('-----------' . PHP_EOL);
  26. # Database
  27. $database = new mysqli($dbHost, $dbUser, $dbPassword, $dbName);
  28. if (mysqli_connect_errno()!=0) $error .= ('Error 100: ' . mysqli_connect_errno() . ': ' . mysqli_connect_error() . '' . PHP_EOL);
  29. # Load settings
  30. $settings = new Settings($database);
  31. $settings = $settings->get();
  32. # PHP Version
  33. if (floatval(phpversion())<5.2) $error .= ('Error 200: Please upgrade to PHP 5.2 or higher!' . PHP_EOL);
  34. # Extensions
  35. if (!extension_loaded('exif')) $error .= ('Error 300: PHP exif extension not activated' . PHP_EOL);
  36. if (!extension_loaded('mbstring')) $error .= ('Error 301: PHP mbstring extension not activated' . PHP_EOL);
  37. if (!extension_loaded('gd')) $error .= ('Error 302: PHP gd extension not activated' . PHP_EOL);
  38. if (!extension_loaded('mysqli')) $error .= ('Error 303: PHP mysqli extension not activated' . PHP_EOL);
  39. if (!extension_loaded('json')) $error .= ('Error 304: PHP json extension not activated' . PHP_EOL);
  40. if (!extension_loaded('zip')) $error .= ('Error 305: PHP zip extension not activated' . PHP_EOL);
  41. # Config
  42. if (!isset($dbName)||$dbName==='') $error .= ('Error 400: No property for $dbName in config.php' . PHP_EOL);
  43. if (!isset($dbUser)||$dbUser==='') $error .= ('Error 401: No property for $dbUser in config.php' . PHP_EOL);
  44. if (!isset($dbPassword)) $error .= ('Error 402: No property for $dbPassword in config.php' . PHP_EOL);
  45. if (!isset($dbHost)||$dbHost==='') $error .= ('Error 403: No property for $dbHost in config.php' . PHP_EOL);
  46. # Settings
  47. if (!isset($settings['username'])||$settings['username']=='') $error .= ('Error 404: Username empty or not set in database' . PHP_EOL);
  48. if (!isset($settings['password'])||$settings['password']=='') $error .= ('Error 405: Password empty or not set in database' . PHP_EOL);
  49. if (!isset($settings['thumbQuality'])||$settings['thumbQuality']=='') $error .= ('Error 406: No or wrong property for thumbQuality in database' . PHP_EOL);
  50. if (!isset($settings['sorting'])||$settings['sorting']=='') $error .= ('Error 407: Wrong property for sorting in database' . PHP_EOL);
  51. if (!isset($settings['plugins'])) $error .= ('Error 408: No property for plugins in database' . PHP_EOL);
  52. if (!isset($settings['imagick'])||$settings['imagick']=='') $error .= ('Error 409: No or wrong property for imagick in database' . PHP_EOL);
  53. if (!isset($settings['checkForUpdates'])||($settings['checkForUpdates']!='0'&&$settings['checkForUpdates']!='1')) $error .= ('Error 410: No or wrong property for checkForUpdates in database' . PHP_EOL);
  54. # Permissions
  55. if (hasPermissions(LYCHEE_UPLOADS_BIG)===false) $error .= ('Error 500: Wrong permissions for \'uploads/big\' (777 required)' . PHP_EOL);
  56. if (hasPermissions(LYCHEE_UPLOADS_THUMB)===false) $error .= ('Error 501: Wrong permissions for \'uploads/thumb\' (777 required)' . PHP_EOL);
  57. if (hasPermissions(LYCHEE_UPLOADS_IMPORT)===false) $error .= ('Error 502: Wrong permissions for \'uploads/import\' (777 required)' . PHP_EOL);
  58. if (hasPermissions(LYCHEE_UPLOADS)===false) $error .= ('Error 503: Wrong permissions for \'uploads/\' (777 required)' . PHP_EOL);
  59. if (hasPermissions(LYCHEE_DATA)===false) $error .= ('Error 504: Wrong permissions for \'data/\' (777 required)' . PHP_EOL);
  60. # Check dropboxKey
  61. if (!$settings['dropboxKey']) echo('Warning: Dropbox import not working. No property for dropboxKey.' . PHP_EOL);
  62. # Check php.ini Settings
  63. 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);
  64. # Check mysql version
  65. 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);
  66. # Output
  67. if ($error=='') echo('No critical problems found. Lychee should work without problems!' . PHP_EOL);
  68. else echo $error;
  69. # Show separator
  70. echo(PHP_EOL . PHP_EOL . 'System Information' . PHP_EOL);
  71. echo('------------------' . PHP_EOL);
  72. # Load json
  73. $json = file_get_contents(LYCHEE_BUILD . 'package.json');
  74. $json = json_decode($json, true);
  75. # Output system information
  76. echo('Lychee Version: ' . $json['version'] . PHP_EOL);
  77. echo('DB Version: ' . $settings['version'] . PHP_EOL);
  78. echo('System: ' . PHP_OS . PHP_EOL);
  79. echo('PHP Version: ' . floatval(phpversion()) . PHP_EOL);
  80. echo('MySQL Version: ' . $database->server_version . PHP_EOL);
  81. echo('Imagick: ' . extension_loaded('imagick') . PHP_EOL);
  82. echo('Imagick Active: ' . $settings['imagick'] . PHP_EOL);
  83. echo('Imagick Version: ' . @Imagick::getVersion()['versionNumber'] . PHP_EOL);
  84. echo('GD Version: ' . gd_info()['GD Version'] . PHP_EOL);
  85. ?>