Skip to content

Instantly share code, notes, and snippets.

@kasumani
Created March 2, 2014 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasumani/9311543 to your computer and use it in GitHub Desktop.
Save kasumani/9311543 to your computer and use it in GitHub Desktop.
MAMPのphpMyAdminバージョンアップ ref: http://qiita.com/kasumani/items/422dc1a73cf84eaf1c5d
/*
* phpMyAdmin configuration storage settings.
*/
/* User used to manipulate with storage */
// $cfg['Servers'][$i]['controlhost'] = ''; <-----(*)
// $cfg['Servers'][$i]['controlport'] = ''; <-----(*)
// $cfg['Servers'][$i]['controluser'] = 'pma'; <-----(*)
// $cfg['Servers'][$i]['controlpass'] = 'pmapass'; <-----(*)
/* 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]['designer_coords'] = 'pma__designer_coords'; <-----(*)
// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig'; <-----(*)
// $cfg['Servers'][$i]['recent'] = 'pma__recent'; <-----(*)
// $cfg['Servers'][$i]['users'] = 'pma__users'; <-----(*)
// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups'; <-----(*)
// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding'; <-----(*)
/* Contrib / Swekey authentication */
// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
/*
* phpMyAdmin configuration storage settings.
*/
/* User used to manipulate with storage */
$cfg['Servers'][$i]['controlhost'] = '';
$cfg['Servers'][$i]['controlport'] = '';
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = 'pmapass';
/* 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]['designer_coords'] = 'pma__designer_coords';
$cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
$cfg['Servers'][$i]['recent'] = 'pma__recent';
$cfg['Servers'][$i]['users'] = 'pma__users';
$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
$cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
/* Contrib / Swekey authentication */
// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
$cfg['Servers'][$i]['controluser'] = '「5. phpMyAdminデータベース用特権ユーザ作成」のUser nameで入力した文字列';
$cfg['Servers'][$i]['controlpass'] = '「5. phpMyAdminデータベース用特権ユーザ作成」のパスワードで入力した文字列';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment