26 lines
624 B
PHP
26 lines
624 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @name config.php
|
||
|
* @author Philipp Maurer
|
||
|
* @author Tobias Reich
|
||
|
* @copyright 2012 by Philipp Maurer, Tobias Reich
|
||
|
*/
|
||
|
|
||
|
|
||
|
//Database configurations
|
||
|
$db = "lychee"; //Database name
|
||
|
$dbUser = ""; //Username of the database
|
||
|
$dbPassword = ""; //Password of the Database
|
||
|
|
||
|
//lychee user configuration
|
||
|
$user = "lychee"; //lychee username
|
||
|
$password = "1234"; //lychee password
|
||
|
|
||
|
$thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
|
||
|
|
||
|
$bitlyUsername = ""; //Your Bit.ly Username. Default: "phinal"
|
||
|
$bitlyApi = ""; //Your Bit.ly API Key. Default: "R_b719129c91f42a2e438ca6844274c9a7"
|
||
|
|
||
|
?>
|