Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/plugins/phpmyadmin/conf/config.inc.php

17 lines
706 B

6 years ago
<?php
3 years ago
$cfg['blowfish_secret'] = '{$BLOWFISH_SECRET}';
$i = 0;
6 years ago
$i++;
$cfg['Servers'][$i]['verbose'] = '{$CHOOSE_DB}';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
// $cfg['Servers'][$i]['host'] = '127.0.0.1';
// $cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['socket'] = '{$SERVER_PATH}/{$CHOOSE_DB_DIR}/mysql.sock';
$cfg['Servers'][$i]['connect_type'] = 'socket';
$cfg['Servers'][$i]['compress'] = false;
6 years ago
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$cfg['TempDir'] = '{$SERVER_PATH}/phpmyadmin/{$PMA_PATH}/tmp';
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
6 years ago
?>