check.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. define('LYCHEE', true);
  3. // Declare
  4. $error = '';
  5. // Include
  6. require('config.php');
  7. // PHP Version
  8. if (floatval(phpversion())<5.2) $error .= ('Error 100: Please upgrade to PHP 5.2 or higher!<br>\n');
  9. // Extensions
  10. if (!extension_loaded('exif')) $error .= ('Error 200: PHP exif extension not activated.<br>\n');
  11. if (!extension_loaded('mbstring')) $error .= ('Error 201: PHP mbstring extension not activated.<br>\n');
  12. if (!extension_loaded('gd')) $error .= ('Error 202: PHP gd extension not activated.<br>\n');
  13. if (!extension_loaded('mysqli')) $error .= ('Error 203: PHP mysqli extension not activated.<br>\n');
  14. // Config
  15. if (!$db||$db=='') $error .= ('Error 300: No property for \$db in config.php.<br>\n');
  16. if (!$dbUser||$dbUser=='') $error .= ('Error 301: No property for \$dbUser in config.php.<br>\n');
  17. if (!$dbPassword||$dbPassword=='') $error .= ('Error 302: No property for \$dbPassword in config.php.<br>\n');
  18. if (!$dbHost||$dbHost=='') $error .= ('Error 303: No property for \$dbHost in config.php.<br>\n');
  19. if (!$user||$user=='') $error .= ('Error 304: No property for \$user in config.php.<br>\n');
  20. if (!$password||$password=='') $error .= ('Error 305: No property for \$password in config.php.<br>\n');
  21. // Additional Config
  22. //if ($checkForUpdates!=true&&heckForUpdates!=false) $error .= ('Error 306: No property for \$checkForUpdates in config.php.<br>\n');
  23. if (!is_numeric($thumbQuality)||$thumbQuality<=0||$thumbQuality>=100) $error .= ('Error 307: Wrong property for \$thumbQuality in config.php.<br>\n');
  24. if ($sorting!='ASC'&&$sorting!='DESC') $error .= ('Error 308: Wrong property for \$sorting in config.php.<br>\n');
  25. // Database
  26. $database = new mysqli($dbHost, $dbUser, $dbPassword, $db);
  27. if (mysqli_connect_errno()!=0) $error .= ('Error 400: ' . mysqli_connect_errno() . ': ' . mysqli_connect_error() . '<br>\n');
  28. // Permissions
  29. if (substr(sprintf('%o', fileperms('../uploads/big/')), -4)!='0777') $error .= ('Error 500: Wrong permissions for \'/uploads/big\' (777 required).<br>\n');
  30. if (substr(sprintf('%o', fileperms('../uploads/thumb/')), -4)!='0777') $error .= ('Error 501: Wrong permissions for \'/uploads/thumb\' (777 required).<br>\n');
  31. if (substr(sprintf('%o', fileperms('../uploads/import/')), -4)!='0777') $error .= ('Error 502: Wrong permissions for \'/uploads/import\' (777 required).<br>\n');
  32. if (substr(sprintf('%o', fileperms('../uploads/')), -4)!='0777') $error .= ('Error 503: Wrong permissions for \'/uploads\' (777 required).<br>\n');
  33. if ($error=='') echo('Lychee is ready!'); else echo $error;
  34. ?>