It is really not necessary as MySQL decides connection type rather based on hostname than on anything else. Signed-off-by: Michal Čihař <michal@cihar.com>
16 lines
315 B
PHP
16 lines
315 B
PHP
<?php
|
|
/**
|
|
* Minimal config file for test
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
$i = 0;
|
|
|
|
/* Server: localhost [1] */
|
|
$i++;
|
|
$cfg['Servers'][$i]['verbose'] = '';
|
|
$cfg['Servers'][$i]['host'] = 'localhost';
|
|
$cfg['Servers'][$i]['port'] = '';
|
|
$cfg['Servers'][$i]['socket'] = '';
|
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|