2019-01-09 00:51:14 -05:00
|
|
|
<?php
|
|
|
|
|
$cfg['blowfish_secret'] = 'd41d8cd98f00b204e9800998ecf8427e';
|
2021-02-04 07:31:28 -05:00
|
|
|
$i = 0;
|
2019-01-09 00:51:14 -05:00
|
|
|
$i++;
|
2021-02-04 07:31:28 -05:00
|
|
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|
|
|
|
|
$cfg['Servers'][$i]['host'] = '127.0.0.1';
|
|
|
|
|
$cfg['Servers'][$i]['connect_type'] = 'tcp';
|
|
|
|
|
$cfg['Servers'][$i]['compress'] = false;
|
2019-01-09 00:51:14 -05:00
|
|
|
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
2022-06-24 23:01:50 -04:00
|
|
|
$cfg['TempDir'] = '/www/server/phpmyadmin/tmp';
|
2021-02-04 07:31:28 -05:00
|
|
|
$cfg['UploadDir'] = '';
|
|
|
|
|
$cfg['SaveDir'] = '';
|
2019-01-09 00:51:14 -05:00
|
|
|
?>
|