簡単に言うと、EasyPHP の PHPMyAdmin から root ユーザーを削除することになりました。いくつかの調査の後、skip-grant-tables を使用してデータベース アクセスを回復しました。しかし、root ユーザーには「 No Privileges」があるため、何もできません。
つまり、'root' としてログインすると、SQL 経由でデータベースを作成することができます。
私は次のことを試しました。
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost';
FLUSH PRIVILEGES;
それでも、どうしようもない。さらに、次のメッセージがあります。
リンクされたテーブルを操作するための追加機能は無効になっています。その理由を知りたい場合は、ここをクリックしてください。
クリックすると次のように表示されます。
$cfg['Servers'][$i]['pmadb'] ... OK
$cfg['Servers'][$i]['relation'] ... not OK [ Documentation ]
General relation features: Disabled
$cfg['Servers'][$i]['table_info'] ... not OK [ Documentation ]
Display Features: Disabled
$cfg['Servers'][$i]['table_coords'] ... not OK [ Documentation ]
$cfg['Servers'][$i]['pdf_pages'] ... not OK [ Documentation ]
Creation of PDFs: Disabled
$cfg['Servers'][$i]['column_info'] ... not OK [ Documentation ]
Displaying Column Comments: Disabled
Browser transformation: Disabled
$cfg['Servers'][$i]['bookmarktable'] ... not OK [ Documentation ]
Bookmarked SQL query: Disabled
$cfg['Servers'][$i]['history'] ... not OK [ Documentation ]
SQL history: Disabled
$cfg['Servers'][$i]['designer_coords'] ... not OK [ Documentation ]
Designer: Disabled
$cfg['Servers'][$i]['tracking'] ... not OK [ Documentation ]
Tracking: Disabled
EasyPHP を再インストールしても問題は解決せず、VirtualStore には何も存在しません (あるフォーラムの投稿が示唆しているように)。探している特定の MySQL ファイルはありますか?
何か案は?これにより、私のアプリケーション開発は本当にストップしました。
ありがとう。