密码重置阻止访问phpmyadmin

时间:2013-09-17 20:09:07

标签: php mysql phpmyadmin xampp

这是与here类似的问题,但是逐步解决了这个问题,我的config.inc.php文件不包含$ cfg。我只想回顾一下这个问题:

如您所知,安装XAMPP时默认为无密码。我添加了密码,但无法再访问phpmyadmin。当我去

  

本地主机/ phpmyadmin的/

我在加载的页面中收到错误消息:

  

1045 - 用户'root'@'localhost'拒绝访问(使用密码:NO)

其内容如下。请注意,我有适用于Mac OS X 1.7.3的XAMPP。我认为问题是我重置了密码,但XAMPP无法识别这一点,并且仍在尝试不使用密码进入。几乎像饼干设置。在config.ini.php中没有$ cfg我可以更改XAMPP中的哪个文件来更正问题?以下是config.ini.php中包含的内容:

<?php
/**
 * Config file view and save screen
 *
 * @package    phpMyAdmin-setup
 * @author     Piotr Przybylski <piotrprz@gmail.com>
 * @license    http://www.gnu.org/licenses/gpl.html GNU GPL 2.0
 * @version    $Id: config.inc.php 12348 2009-04-14 10:19:02Z nijel $
 */

if (!defined('PHPMYADMIN')) {
    exit;
}

/**
 * Core libraries.
 */
require_once './setup/lib/FormDisplay.class.php';
require_once './setup/lib/index.lib.php';

$config_readable = false;
$config_writable = false;
$config_exists = false;
check_config_rw($config_readable, $config_writable, $config_exists);
?>
<h2><?php echo $GLOBALS['strSetupConfigurationFile'] ?></h2>
<?php display_form_top('config.php'); ?>
<input type="hidden" name="eol" value="<?php echo htmlspecialchars(PMA_ifSetOr($_GET['eol'], 'unix')) ?>" />
<?php display_fieldset_top('', '', null, array('class' => 'simple')); ?>
<tr>
    <td>
        <textarea cols="50" rows="20" name="textconfig" id="textconfig" spellcheck="false"><?php
            echo htmlspecialchars(ConfigFile::getInstance()->getConfigFile())
        ?></textarea>
    </td>
</tr>
<tr>
    <td class="lastrow" style="text-align: left">
        <input type="submit" name="submit_download" value="<?php echo $GLOBALS['strSetupDownload'] ?>" class="green" />
        <input type="submit" name="submit_save" value="<?php echo $GLOBALS['strSave'] ?>"<?php if (!$config_writable) echo ' disabled="disabled"' ?> />
    </td>
</tr>
<?php
display_fieldset_bottom_simple();
display_form_bottom();
?>

2 个答案:

答案 0 :(得分:1)

不要打开config.ini.php,而是打开PMA根目录中的 config.inc.php

PMA Wiki:http://wiki.phpmyadmin.net/pma/config.inc.php

config.inc.php 中的代码示例:http://docs.phpmyadmin.net/en/latest/setup.html

答案 1 :(得分:0)

在setup / frames下有一个config.inc.php,这是你向我们展示的那个,但它不是包含配置的那个。查看包含所有db_ *和tbl_ *脚本的主目录。但是,phpMyAdmin能够在没有config.inc.php的情况下运行。

您是否看到带有phpMyAdmin徽标的登录面板?