エラーは次のとおりです。
PhpMyAdmin構成ストレージは完全には構成されていません。一部の拡張機能は無効になっています。理由を確認するには、ここをクリックしてください。
Suhosinで実行されているサーバー。考えられる問題については、ドキュメントを参照してください。$ cfg ['Servers'] [$ i] ['pmadb'] ... OK
$ cfg ['Servers'] [$ i] ['relation'] ... OKではありません[Documentation]
一般的な関係機能:無効$ cfg ['Servers'] [$ i] ['table_info'] ... OKではありません[ドキュメント]
ディスプレイ機能:無効$ cfg ['Servers'] [$ i] ['table_coords'] ... OKではありません[Documentation]
$ cfg ['Servers'] [$ i] ['pdf_pages'] ... OKではありません[Documentation]
PDFの作成:無効$ cfg ['Servers'] [$ i] ['column_info'] ... OKではありません[ドキュメント]
列のコメントの表示:無効
ブラウザ変換:無効$ cfg ['Servers'] [$ i] ['bookmarktable'] ... OKではありません[Documentation]
ブックマークされたSQLクエリ:無効$ cfg ['Servers'] [$ i] ['history'] ... OKではありません[ドキュメント]
SQL履歴:無効$ cfg ['Servers'] [$ i] ['designer_coords'] ... OKではありません[ドキュメント]
デザイナー:無効$ cfg ['Servers'] [$ i] ['tracking'] ... OKではありません[Documentation]
追跡:無効$ cfg ['Servers'] [$ i] ['userconfig'] ... OKではありません[ドキュメント]
ユーザー設定:無効
私のconfig.inc.phpファイルは次のとおりです。
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* phpMyAdmin sample configuration, you can use it as base for
* manual configuration. For easier setup you can use setup/
*
* All directives are explained in Documentation.html and on phpMyAdmin
* wiki <http://wiki.phpmyadmin.net>.
*
* @package phpMyAdmin
*/
/*
* This is needed for cookie based authentication to encrypt password in
* cookie
*/
$cfg['blowfish_secret'] = 'myblowfishpass';
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$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;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
/*
* phpMyAdmin configuration storage settings.
*/
/* User used to manipulate with storage */
$cfg['Servers'][$i]['controluser'] = 'dave1';
$cfg['Servers'][$i]['controlpass'] = 'mypassword';
/* Storage database and tables */
$cfg['Servers'][$i]['pmadb'] = 'wordpress_db'; //the name of my db table
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark'; //does the pma_ need to change to dave1_?
$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]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
/* Contrib / Swekey authentication */
$cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
/*
* End of servers configuration
*/
/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
/**
* Defines whether a user should be displayed a "show all (records)"
* button in browse mode or not.
* default = false
*/
$cfg['ShowAll'] = true;
/**
* Number of rows displayed when browsing a result set. If the result
* set contains more rows, "Previous" and "Next".
* default = 30
*/
$cfg['MaxRows'] = 50;
/**
* Use graphically less intense menu tabs
* default = false
*/
//$cfg['LightTabs'] = true;
/**
* disallow editing of binary fields
* valid values are:
* false allow editing
* 'blob' allow editing except for BLOB fields
* 'all' disallow editing
* default = blob
*/
//$cfg['ProtectBinary'] = 'false';
/**
* Default language to use, if not browser-defined or user-defined
* (you find all languages in the locale folder)
* uncomment the desired line:
* default = 'en'
*/
$cfg['DefaultLang'] = 'en';
//$cfg['DefaultLang'] = 'de';
/**
* default display direction (horizontal|vertical|horizontalflipped)
*/
//$cfg['DefaultDisplay'] = 'vertical';
/**
* How many columns should be used for table display of a database?
* (a value larger than 1 results in some information being hidden)
* default = 1
*/
//$cfg['PropertiesNumColumns'] = 2;
/**
* Set to true if you want DB-based query history.If false, this utilizes
* JS-routines to display query history (lost by window close)
*
* This requires configuration storage enabled, see above.
* default = false
*/
//$cfg['QueryHistoryDB'] = true;
/**
* When using DB-based query history, how many entries should be kept?
*
* default = 25
*/
//$cfg['QueryHistoryMax'] = 100;
/*
* You can find more configuration options in Documentation.html
* or here: http://wiki.phpmyadmin.net/pma/Config
*/
私も同じ問題を抱えていました。クッキーとキャッシュをクリアすることは私のために働いた。それを試してみてください
「create_tables.sql」を使用してデータベースとテーブルを作成している場合は、テーブル名を変更しますpma__
からpma_
。 (2つのアンダースコアを1つのアンダースコアに変更)
または、「config.inc.php」でテーブル名を変更し、pma_
からpma__
(1つのアンダースコアを2つのアンダースコアに変更)。
例えば、 pma_bookmark
からpma__bookmark
$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]['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]['table_uiprefs'] = 'pma__table_uiprefs';
VestaCPチームは、phpMyAdminのエラー修正プログラムを作成し、正常にテストしました(「phpMyAdmin構成ストレージが完全に構成されていないため、一部の拡張機能が非アクティブ化されました」という面倒なメッセージはありません)。修正が有用であり、ユーザーの役に立つことを願っています。
Githubのページ: https://github.com/skurudo/phpmyadmin-fixer
スクリプトの機能:
$cfg['Servers'][$i]['user'] = 'root'; //mysql username here
$cfg['Servers'][$i]['password'] = 'password'; //mysql password here
$cfg['Servers'][$i]['connect_type'] = 'tcp';
の後に上記の設定行を追加してみてください
これらも機能しない場合は、config.sample.inc.phpをコピーして、新しい構成ファイルを試してください。上記の構成行があることを確認してください。変更が必要な場合は、正常に動作するかどうかを確認し、ステップバイステップで変更を開始します。
指定するユーザー名とパスワードは、mysqlコマンドプロンプトからログインできる必要があることに注意してください。
以下の手順に従ってください:
設定ファイルを見つけて編集し、config.inc.phpでこれらの行を有効にします(各行の前にある#を削除します)
/* User used to manipulate with storage */
$cfg['Servers'][$i]['controlhost'] = 'localhost';
$cfg['Servers'][$i]['controluser'] = 'phpmyadmin_pma';
$cfg['Servers'][$i]['controlpass'] = 'yourpassword';
/* 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';
/* These lines I added-in because they are not exist in the config_sample.inc.php */
$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';
$cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
$cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';
Pma__の間に2つのアンダースコアがあることに注意してください。データベース内のテーブル名と一致することを確認する必要があります
このエラーが表示される場合:$ cfg ['Servers'] [$ i] ['userconfig'] ... not OK [Documentation]ユーザー設定:無効
つまり、構成設定がテーブルの名前と一致しないか、ユーザーがデータベースにアクセスできません。
一番下までスクロールすると、エラーページが表示されます。ログアウトして再度ログインするように指示するヒントがあります。これを行うと動作します
エラーを修正するには、メッセージをクリックします。その後、リンクをクリックして作成、更新をクリックします。このソリューションは私と連携します。
1)mysqlサーバーにphpmyadminデータベースがあるかどうかを確認します。 Phpmyadminは、データベースの作成を支援します。
2)pmaユーザーがあるかどうかを確認します。作成しない場合:
CREATE USER 'pma'@'localhost' IDENTIFIED BY 'yourPassword';
Pmaパスワードはconfig.inc.phpで指定されたものと同じでなければなりません
3)pmaに特権を与えます:
GRANT ALL PRIVILEGES ON phpmyadmin.* TO `pma`@`localhost` WITH GRANT OPTION;
FLUSH PRIVILEGES;
4)キャッシュとCookieをクリアします。