2016 - 2024

感恩一路有你

解决WordPress安装错误“Error establishing a database connection”

浏览量:4261 时间:2024-06-24 22:40:52 作者:采采

在安装完Mac上的xampp之后,启动环境软件并成功登录phpmyadmin创建数据库后,有些人可能会遇到在安装和登录WordPress时出现“Error establishing a database connection”的问题。下面是解决这个问题的步骤。

步骤一:进入xampp文件夹

首先,打开你的xampp文件夹。你可以在启动项中找到它,并点击“Explore”。

步骤二:进入htdocs文件夹

在打开的窗口中,找到并点击“htdocs”文件夹。

步骤三:进入wordpress文件夹

在“htdocs”文件夹中,找到并点击“wordpress”文件夹。

步骤四:复制文件

在wordpress文件夹中,你会看到很多带有“.php”后缀的文件。随意选择一个文件,比如“”,右键点击并选择复制。

步骤五:编辑文件

用记事本或者文本编辑器打开复制的“”文件,并将其中的内容全部删除。

然后,复制以下代码并粘贴到刚才打开的文件中:

```php

/

* The base configuration for WordPress

*

* The creation script uses this file during the

* installation. You don't have to use the web site, you can

* copy this file to "" and fill in the values.

*

* This file contains the following configurations:

*

* MySQL settings

*

* Secret keys

*

* Database table prefix

*

* ABSPATH

*

* @link _

*

* @package WordPress

*/

// MySQL settings - You can get this info from your web host //

/ The name of the database for WordPress */

define('DB_NAME', 'mysql');

/ MySQL database username */

define('DB_USER', 'root');

/ MySQL database password */

define('DB_PASSWORD', '');

/ MySQL hostname */

define('DB_HOST', 'localhost');

/ Database Charset to use in creating database tables. */

define('DB_CHARSET', 'utf8mb4');

/ The Database Collate type. Don't change this if in doubt. */

define('DB_COLLATE', '');

/@

* Authentication Unique Keys and Salts.

*

* Change these to different unique phrases!

* You can generate these using the {@link secret-key service}

* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.

*

* @since 2.6.0

*/

define('AUTH_KEY', ' VbeFg`YABB_:olGY]gE:Ax/$9i`EOgG|WviTEh70d-n%V%ah*@jg`');

define('SECURE_AUTH_KEY', '04dmkzGF*RQMgt;{rX;DX}rhgt;N^*5}/OcRBampB?e.N$');

define('LOGGED_IN_KEY', '6@^e(a!~JQ:qhrIZF[fL (9)NK-MNAXxr9egt;w amp;B?e.N');

define('NONCE_KEY', 'reTiltW1uhz2GOj%Rlt; @J9]h-E0@[drW3EY`/.(lFTLo2l]Eja,sN| wsUS-xTE*');

define('AUTH_SALT', 's]bO^eO5 X(Dj/XT{XkfUS;b-_P7-5erUYuamp;)ELF2fK2wn-{wuY%wx[Qn%lDtPu');

define('SECURE_AUTH_SALT', 'OnLYvcFvR{gt;lt;`e(.FG9kPkK`;:lt;}4i9g7^)');

define('LOGGED_IN_SALT', 'oQ4Lh~ de_pblt;^,!pvt:2jmm!C|Zeq|j0U$wl22[cIVY956gt;p`(`.sgt;7.dHk9s|');

define('NONCE_SALT', ' oHHlSp7Orxxq^o? ^?/1ljZi^aoI@|J%? h0S%[aW6gt;cjJ%H}}/:NSmCOgt;gt;');

/@-*/

/

* WordPress Database Table prefix.

*

* You can have multiple installations in one database

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。