config.php 620 B

12345678910111213141516171819202122232425
  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 = "lychee"; //Username of the database
  11. $dbPassword = "lychee_passwd"; //Password of the Database
  12. $dbHost = "localhost"; //Host of the Database
  13. //lychee user configuration
  14. $user = "lychee"; //lychee username
  15. $password = "1234"; //lychee password
  16. $thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
  17. $bitlyUsername = ""; //Your Bit.ly Username
  18. $bitlyApi = ""; //Your Bit.ly API Key
  19. ?>