config.php 695 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @name config.php
  4. * @author Philipp Maurer
  5. * @author Tobias Reich
  6. * @copyright 2013 by Philipp Maurer, Tobias Reich
  7. */
  8. if(!defined('LYCHEE')) die('Direct access is not allowed!');
  9. // Database configurations
  10. $db = 'lychee'; //Database name
  11. $dbUser = 'lychee'; //Username of the database
  12. $dbPassword = 'lychee_passwd'; //Password of the Database
  13. $dbHost = 'localhost'; //Host of the Database
  14. // Admin Login
  15. $user = 'lychee'; //Admin Username
  16. $password = '1234'; //Admin Password
  17. // Additional settings
  18. $checkForUpdates = true;
  19. $thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
  20. $sorting = 'DESC'; //ASC or DESC sorting of albums and photos
  21. ?>