使用 Mamp 安装 WordPress:建立数据库连接时出错

问题描述 投票:0回答:1

我是 WordPress 初学者。我一直在做 Udemy 课程,题为“使用 Bootstrap 进行 WordPress 主题开发”,作者是 Brad Hussey。

我已经安装了MAMP。然后我按照教程的所有说明通过 PHPMyAdmin 创建一个新的数据库和一个新的用户帐户。然后,我使用正确的凭据适当地编辑 wp-config-sample.php 文件。我从 https://api.wordpress.org/secret-key/1.1/salt/ 复制了所有代码并将它们粘贴到正确的位置。然后我将该文件重命名为 wp-config.php。现在,当我在浏览器中访问 http://localhost/wp-admin/ 时,会出现以下错误:

Error establishing a database connection
This either means that the username and password information in your wp-config.php file is incorrect or we can't contact the database server at localhost. This could mean your host's database server is down.

Are you sure you have the correct username and password?
Are you sure that you have typed the correct hostname?
Are you sure that the database server is running?
If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums.

我已在 wp-config.php 文件中输入了正确的用户名和密码。我输入的主机名是“localhost”。 MySQL服务器运行在MAMP上。所以,我所做的一切都是正确的。但无法摆脱这个令人沮丧的问题。请帮我。如果不解决这个问题,我就无法继续学习这门课程。

我已经看过一些 YouTube 视频,解释了我尝试遵循的相同解决方案。这对他们有用,但对我没用。

php mysql wordpress mamp
1个回答
0
投票

请编辑您的wp-config.php

如果您使用默认 MAMP 配置,请尝试此操作: 定义('DB_HOST','本地主机:8889')

© www.soinside.com 2019 - 2024. All rights reserved.