尝试使用 xampp 使用 localhost 运行网页时出现问题

Problem when trying to run webpage with localhost using xampp

提问人:GALLUMBAS 提问时间:11/4/2023 最后编辑:ADysonGALLUMBAS 更新时间:11/4/2023 访问量:38

问:

enter image description here

当我尝试从本地主机访问目录时,我收到“建立数据库连接时出错”。

这是我的config.inc.php:

$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'root';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$cfg['Lang'] = '';
$cfg['Servers'][$i]['host'] = '127.0.0.1:3307';
$cfg['Servers'][$i]['connect_type'] = 'tcp';

还有我的wp-config.php:

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'uzkjvpw660');

/** MySQL database username */
define('DB_USER', 'root');

/** MySQL database password */
define('DB_PASSWORD', 'root');

/** MySQL hostname */
define('DB_HOST', '127.0.0.1:3307');

如果不将allownopassword设置为true,我也无法访问myphpadmin,它不适用于我设置的密码。

当我尝试访问 www 或 anquimed 时,出现该错误。apache 和 mysql 都在 xampp 中运行,数据库已创建,这就是名称。

我几乎尝试过任何东西。这是我的第一次实习,我有点想办法自己解决这个问题,但我花了几个小时,无法让网站在本地运行,我快疯了。

php mysql wordpress xampp

评论

0赞 Sajjad Hossain Sagor 11/4/2023
您运行的是哪个版本?MySQL
1赞 Don't Panic 11/4/2023
第 1 步 - 检查 MySQL 是否正在运行。您可以使用该 u/p 与客户端连接到它吗?MySQL的默认端口是,不像你一样,这真的正确吗?你试过使用as吗?33063307localhost:3307DB_HOST

答: 暂无答案