在Windows XP 上使用XAMPP 時,您在phpMyAdmin 中可能會遇到錯誤「配置中定義的控制使用者連線失敗」。此問題通常是由於配置不正確或資訊缺失而導致的。
要解決此問題,請依照下列步驟操作:
<code class="php">$cfg['Servers'][1]['pmadb'] = 'phpmyadmin'; $cfg['Servers'][1]['controluser'] = 'pma'; $cfg['Servers'][1]['controlpass'] = '<YourPassword>';</code>
<code class="php">// List of control tables used by PMA $cfg['Servers'][1]['bookmarktable'] = 'pma_bookmark'; $cfg['Servers'][1]['relation'] = 'pma_relation'; $cfg['Servers'][1]['userconfig'] = 'pma_userconfig'; $cfg['Servers'][1]['table_info'] = 'pma_table_info'; $cfg['Servers'][1]['column_info'] = 'pma_column_info'; $cfg['Servers'][1]['history'] = 'pma_history'; $cfg['Servers'][1]['recent'] = 'pma_recent'; $cfg['Servers'][1]['table_uiprefs'] = 'pma_table_uiprefs'; $cfg['Servers'][1]['tracking'] = 'pma_tracking'; $cfg['Servers'][1]['table_coords'] = 'pma_table_coords'; $cfg['Servers'][1]['pdf_pages'] = 'pma_pdf_pages'; $cfg['Servers'][1]['designer_coords'] = 'pma_designer_coords';</code>
以上是如何修復 XAMPP 中 phpMyAdmin 中的「控制使用者連線失敗」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!