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

16 lines
319 B
PHP
Raw Normal View History

2014-07-06 13:21:10 +02:00
<?php
$conf['dblayer'] = 'mysqli';
$conf['db_base'] = '__DB_NAME__';
2021-06-16 00:09:21 +02:00
$conf['db_user'] = '__DB_USER__';
$conf['db_password'] = '__DB_PWD__';
2014-07-06 13:21:10 +02:00
$conf['db_host'] = 'localhost';
$prefixeTable = '';
define('PHPWG_INSTALLED', true);
define('PWG_CHARSET', 'utf-8');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
?>