config.php 703 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. //Lychee user configuration
  15. $user = "lychee"; //lychee username
  16. $password = "1234"; //lychee password
  17. //Additional settings
  18. $thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
  19. $bitlyUsername = ""; //Your Bit.ly Username
  20. $bitlyApi = ""; //Your Bit.ly API Key
  21. ?>