设置我在 XAMPP 中由在线服务器提供商托管的网站
Setting up my website I had hosted by an online server Provider in XAMPP
前段时间我有一个由在线服务器提供商托管的 wordpress 网站。我取消了服务,想通过 XAMPP 在本地设置网站。因此,我在 htdocs 中复制了我的文件,并在 phpMyAdmin 中导入了数据库。我现在的问题是如何命名这个数据库?我总是收到通知 "Error establishing a database connection"。非常感谢您的想法。
确保您已在 wp-config.php
中实现相同的内容
define( 'DB_NAME', 'imported_database_name_here' );
define( 'DB_USER', 'root' );
define( 'DB_PASSWORD', '' );
define( 'DB_HOST', 'localhost' );
默认安装 xampp 的密码应为空。
前段时间我有一个由在线服务器提供商托管的 wordpress 网站。我取消了服务,想通过 XAMPP 在本地设置网站。因此,我在 htdocs 中复制了我的文件,并在 phpMyAdmin 中导入了数据库。我现在的问题是如何命名这个数据库?我总是收到通知 "Error establishing a database connection"。非常感谢您的想法。
确保您已在 wp-config.php
中实现相同的内容define( 'DB_NAME', 'imported_database_name_here' );
define( 'DB_USER', 'root' );
define( 'DB_PASSWORD', '' );
define( 'DB_HOST', 'localhost' );
默认安装 xampp 的密码应为空。