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