Use mysqli in example configuration
The mysql extension does not support some features we use and I think it is safe to assume nearly everybody has mysqli.
This commit is contained in:
@@ -31,8 +31,8 @@ $cfg['Servers'][$i]['auth_type'] = 'cookie';
|
|||||||
$cfg['Servers'][$i]['host'] = 'localhost';
|
$cfg['Servers'][$i]['host'] = 'localhost';
|
||||||
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
||||||
$cfg['Servers'][$i]['compress'] = false;
|
$cfg['Servers'][$i]['compress'] = false;
|
||||||
/* Select mysqli if your server has it */
|
/* Select mysql if your server does not have mysqli */
|
||||||
$cfg['Servers'][$i]['extension'] = 'mysql';
|
$cfg['Servers'][$i]['extension'] = 'mysqli';
|
||||||
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user