持久xampp phpmyadmin错误

时间:2012-06-25 03:29:25

标签: php xampp

当我点击我的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
*/

?>

1 个答案:

答案 0 :(得分:1)

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