Last active
August 29, 2015 14:25
-
-
Save andreferraro/2f831b6fc90f94f901bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cfg['blowfish_secret'] = 'EnsoExtremeBushidoTech'; | |
$i = 0; | |
$i++; | |
/* Authentication type */ | |
$cfg['Servers'][$i]['auth_type'] = 'cookie'; | |
/* Server parameters */ | |
$cfg['Servers'][$i]['host'] = 'localhost'; | |
$cfg['Servers'][$i]['connect_type'] = 'tcp'; | |
$cfg['Servers'][$i]['compress'] = false; | |
$cfg['Servers'][$i]['AllowNoPassword'] = false; | |
/* | |
* phpMyAdmin configuration storage settings. | |
*/ | |
/* User used to manipulate with storage */ | |
$cfg['Servers'][$i]['controlhost'] = 'localhost'; | |
$cfg['Servers'][$i]['controluser'] = 'pma'; | |
$cfg['Servers'][$i]['controlpass'] = 'senha'; | |
/* Storage database and tables */ | |
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; | |
$cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark'; | |
$cfg['Servers'][$i]['relation'] = 'pma__relation'; | |
$cfg['Servers'][$i]['table_info'] = 'pma__table_info'; | |
$cfg['Servers'][$i]['table_coords'] = 'pma__table_coords'; | |
$cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages'; | |
$cfg['Servers'][$i]['column_info'] = 'pma__column_info'; | |
$cfg['Servers'][$i]['history'] = 'pma__history'; | |
$cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs'; | |
$cfg['Servers'][$i]['tracking'] = 'pma__tracking'; | |
$cfg['Servers'][$i]['userconfig'] = 'pma__userconfig'; | |
$cfg['Servers'][$i]['recent'] = 'pma__recent'; | |
$cfg['Servers'][$i]['favorite'] = 'pma__favorite'; | |
$cfg['Servers'][$i]['users'] = 'pma__users'; | |
$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups'; | |
$cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding'; | |
$cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches'; | |
$cfg['Servers'][$i]['central_columns'] = 'pma__central_columns'; | |
/* | |
* End of servers configuration | |
*/ | |
$cfg['DefaultLang'] = 'pt_BR'; | |
//$cfg['ForceSSL'] = true; | |
$cfg['ServerLibraryDifference_DisableWarning'] = true; | |
/* | |
* Directories for saving/loading files from server | |
*/ | |
$cfg['UploadDir'] = ''; | |
$cfg['SaveDir'] = ''; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment