0

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

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

本地主机/phpmyadmin/

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

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

其内容如下。请注意,我有适用于 Mac OS X 1.7.3 的 XAMPP。我认为问题在于我已经重置了密码,但 XAMPP 无法识别这一点,并且仍在尝试不使用密码进入。几乎就像一个cookie设置。如果 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();
?>
4

2 回答 2

1

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

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

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

于 2013-09-17T20:20:13.157 回答
0

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

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

于 2013-09-18T12:19:35.387 回答