34413640e4
New: - Protect public albums with passwords - Export to Dropbox - Sharing-Link is displayed directly inside the sharing-dropdown - Delete photos with cmd+backspace Improved: - Massive speed improvements - Changing the title, starring, description, etc. is now instant - Longer filenames for pictures (more security) ShortLinks are removed for more independency and privacy. There are a lot of changes under the hood, including a lot of bug fixes and improvements. Please report every bug you find! How to update: 1. Replace all files, excluding `uploads/` and `php/config.php` 2. Open `php/update.php` in your browser
27 lines
695 B
PHP
Executable File
27 lines
695 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
|
|
|
|
// Admin Login
|
|
$user = 'lychee'; //Admin Username
|
|
$password = '1234'; //Admin Password
|
|
|
|
// Additional settings
|
|
$checkForUpdates = true;
|
|
$thumbQuality = 95; //Quality of the Thumbs (0-100). Default: 95
|
|
$sorting = 'DESC'; //ASC or DESC sorting of albums and photos
|
|
|
|
?>
|