2012-10-02 15:48:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name config.php
|
|
|
|
* @author Philipp Maurer
|
|
|
|
* @author Tobias Reich
|
2013-05-03 11:57:08 +00:00
|
|
|
* @copyright 2013 by Philipp Maurer, Tobias Reich
|
2012-10-02 15:48:08 +00:00
|
|
|
*/
|
|
|
|
|
2013-06-17 18:40:04 +00:00
|
|
|
if(!defined('LYCHEE')) die('Direct access is not allowed!');
|
2013-05-03 11:57:08 +00:00
|
|
|
|
2013-06-17 18:40:04 +00:00
|
|
|
// 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
|
2012-10-02 15:48:08 +00:00
|
|
|
|
2013-06-17 18:40:04 +00:00
|
|
|
// Admin Login
|
|
|
|
$user = 'lychee'; //Admin Username
|
|
|
|
$password = '1234'; //Admin Password
|
2012-10-02 15:48:08 +00:00
|
|
|
|
2013-06-17 18:40:04 +00:00
|
|
|
// Additional settings
|
|
|
|
$checkForUpdates = true;
|
2012-10-02 15:48:08 +00:00
|
|
|
$thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
|
2013-06-17 18:40:04 +00:00
|
|
|
$sorting = 'DESC'; //ASC or DESC sorting of albums and photos
|
2012-10-02 15:48:08 +00:00
|
|
|
|
2012-10-25 10:22:04 +00:00
|
|
|
?>
|