2012-10-02 15:48:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name config.php
|
|
|
|
* @author Philipp Maurer
|
|
|
|
* @author Tobias Reich
|
2012-10-25 10:22:04 +00:00
|
|
|
* @copyright 2012 by Philipp Maurer, Tobias Reich
|
2012-10-02 15:48:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
//Database configurations
|
|
|
|
$db = "lychee"; //Database name
|
2012-10-25 10:22:04 +00:00
|
|
|
$dbUser = "lychee"; //Username of the database
|
|
|
|
$dbPassword = "lychee_passwd"; //Password of the Database
|
|
|
|
$dbHost = "localhost"; //Host of the Database
|
2012-10-02 15:48:08 +00:00
|
|
|
|
|
|
|
//lychee user configuration
|
|
|
|
$user = "lychee"; //lychee username
|
|
|
|
$password = "1234"; //lychee password
|
|
|
|
|
|
|
|
$thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
|
|
|
|
|
2012-10-08 08:45:44 +00:00
|
|
|
$bitlyUsername = ""; //Your Bit.ly Username
|
|
|
|
$bitlyApi = ""; //Your Bit.ly API Key
|
2012-10-02 15:48:08 +00:00
|
|
|
|
2012-10-25 10:22:04 +00:00
|
|
|
?>
|