mirror of
https://github.com/YunoHost-Apps/piwigo_ynh.git
synced 2024-09-03 20:06:03 +02:00
15 lines
319 B
PHP
15 lines
319 B
PHP
<?php
|
|
$conf['dblayer'] = 'mysqli';
|
|
$conf['db_base'] = '__DB_NAME__';
|
|
$conf['db_user'] = '__DB_USER__';
|
|
$conf['db_password'] = '__DB_PWD__';
|
|
$conf['db_host'] = 'localhost';
|
|
|
|
$prefixeTable = '';
|
|
|
|
define('PHPWG_INSTALLED', true);
|
|
define('PWG_CHARSET', 'utf-8');
|
|
define('DB_CHARSET', 'utf8');
|
|
define('DB_COLLATE', '');
|
|
|
|
?>
|