config.php 557 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @name config.php
  4. * @author Philipp Maurer
  5. * @author Tobias Reich
  6. * @copyright 2012 by Philipp Maurer, Tobias Reich
  7. */
  8. //Database configurations
  9. $db = "lychee"; //Database name
  10. $dbUser = ""; //Username of the database
  11. $dbPassword = ""; //Password of the Database
  12. //lychee user configuration
  13. $user = "lychee"; //lychee username
  14. $password = "1234"; //lychee password
  15. $thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
  16. $bitlyUsername = ""; //Your Bit.ly Username
  17. $bitlyApi = ""; //Your Bit.ly API Key
  18. ?>