2019-01-09 00:51:14 -05:00
|
|
|
<?php
|
2022-07-09 01:20:22 -04:00
|
|
|
$cfg['blowfish_secret'] = '{$BLOWFISH_SECRET}';
|
2021-02-04 07:31:28 -05:00
|
|
|
$i = 0;
|
2019-01-09 00:51:14 -05:00
|
|
|
$i++;
|
2022-08-13 03:12:04 -04:00
|
|
|
$cfg['Servers'][$i]['verbose'] = '{$CHOOSE_DB}';
|
2022-07-09 01:16:54 -04:00
|
|
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|
|
|
|
|
// $cfg['Servers'][$i]['host'] = '127.0.0.1';
|
|
|
|
|
// $cfg['Servers'][$i]['connect_type'] = 'tcp';
|
2022-08-13 03:12:04 -04:00
|
|
|
$cfg['Servers'][$i]['socket'] = '{$SERVER_PATH}/{$CHOOSE_DB_DIR}/mysql.sock';
|
2022-07-09 01:16:54 -04:00
|
|
|
$cfg['Servers'][$i]['connect_type'] = 'socket';
|
2021-02-04 07:31:28 -05:00
|
|
|
$cfg['Servers'][$i]['compress'] = false;
|
2019-01-09 00:51:14 -05:00
|
|
|
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
2022-11-01 02:29:31 -04:00
|
|
|
$cfg['TempDir'] = '{$SERVER_PATH}/phpmyadmin/{$PMA_PATH}/tmp';
|
2021-02-04 07:31:28 -05:00
|
|
|
$cfg['UploadDir'] = '';
|
|
|
|
|
$cfg['SaveDir'] = '';
|
2019-01-09 00:51:14 -05:00
|
|
|
?>
|