mirror of
https://github.com/YunoHost-Apps/phpback_ynh.git
synced 2024-09-03 19:56:34 +02:00
Fix database.php : use mysqli instead om mysql
mysql is deprecated and it trigger this error: `Call to undefined function mysql_pconnect()` https://stackoverflow.com/questions/36822462/codeigniter-error-call-to-undefined-function-mysql-pconnect
This commit is contained in:
parent
79cc48debb
commit
8add3a5fde
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ $db['default']['hostname'] = 'localhost';
|
|||
$db['default']['username'] = '__DB_USER__';
|
||||
$db['default']['password'] = '__DB_PWD__';
|
||||
$db['default']['database'] = '__DB_NAME__';
|
||||
$db['default']['dbdriver'] = 'mysql';
|
||||
$db['default']['dbdriver'] = 'mysqli';
|
||||
$db['default']['dbprefix'] = '';
|
||||
$db['default']['pconnect'] = TRUE;
|
||||
$db['default']['db_debug'] = TRUE;
|
||||
|
|
Loading…
Add table
Reference in a new issue