config.php 624 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 = ""; //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. Default: "phinal"
  17. $bitlyApi = ""; //Your Bit.ly API Key. Default: "R_b719129c91f42a2e438ca6844274c9a7"
  18. ?>