持续存在的 xampp phpmyadmin 错误



当我点击我的phpmyadmin页面时,它给了我这个错误:phpMyAdmin无法读取你的配置文件!如果 PHP 在其中发现解析错误或 PHP 找不到该文件,则可能会发生这种情况。请使用下面的链接直接调用配置文件,并阅读您收到的 PHP 错误消息。在大多数情况下,某处缺少引号或分号。如果您收到空白页,则一切正常。

我今天早些时候下载了 xampp 并卸载了,因为它给了我错误。所以我现在重新安装了它,我收到此错误:(

感谢您的建议,谢谢。

<?php
/*
* This is needed for cookie based authentication to encrypt password in
* cookie
*/
$cfg['blowfish_secret'] = 'xampp'; 
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = '';
/* Advanced phpMyAdmin features */
$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]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
/*
* End of servers configuration
*/
?>

您是否尝试过转到它要求您直接访问的链接?它给你什么错误?这将有助于我们确定出了什么问题。

最新更新