1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/piwigo_ynh.git synced 2024-09-03 20:06:03 +02:00
piwigo_ynh/conf/database.inc.php
Éric Gaspar d0b7de496c
Testing (#61)
* Upgrade to version 11.3.0 (#59)
2021-02-18 19:52:56 +01:00

15 lines
319 B
PHP

<?php
$conf['dblayer'] = 'mysqli';
$conf['db_base'] = '__DB_NAME__';
$conf['db_user'] = '__DB_NAME__';
$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', '');
?>