dcc51497c3
- FTP Sharing - New Upload & New Search - Performance and stuff under the hood - Desktop Notifications - Right-Click on photos and albums - Retina Thumbs - Improved Interface
27 lines
703 B
PHP
Executable File
27 lines
703 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @name config.php
|
|
* @author Philipp Maurer
|
|
* @author Tobias Reich
|
|
* @copyright 2013 by Philipp Maurer, Tobias Reich
|
|
*/
|
|
|
|
if(!defined('LYCHEE')) die("Direct access is not allowed!");
|
|
|
|
//Database configurations
|
|
$db = "lychee"; //Database name
|
|
$dbUser = "lychee"; //Username of the database
|
|
$dbPassword = "lychee_passwd"; //Password of the Database
|
|
$dbHost = "localhost"; //Host of the Database
|
|
|
|
//Lychee user configuration
|
|
$user = "lychee"; //lychee username
|
|
$password = "1234"; //lychee password
|
|
|
|
//Additional settings
|
|
$thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
|
|
$bitlyUsername = ""; //Your Bit.ly Username
|
|
$bitlyApi = ""; //Your Bit.ly API Key
|
|
|
|
?>
|