在 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>
错误消息现在应该已解决。如果问题仍然存在,请验证您是否正确执行了所有步骤,并确保您的 MySQL 服务器正在运行且可访问。
以上是如何修复 XAMPP 中 phpMyAdmin 中的'控制用户连接失败”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!