我的问题是我从其他服务器和目录中托管wordpress数据库来自我的域链接的另一台服务器,因此可以从其他不同的数据库连接wordpress目录服务器,如果知道答案,请解决我的问题。 提前谢谢。
答案 0 :(得分:8)
是的,只要MySQL服务器允许外部服务器访问数据库。 当您设置WP而不是" localhost"时,您将放入SQL服务器。
您可以导出当前数据库,然后在另一台服务器上创建数据库,
然后代替" localhost" (在config.php中)你将把服务器的IP地址,然后config.php将连接
// wp-config.php
define ( 'DB_NAME', 'yourdbname' );
define ( 'DB_USER', 'yourusername' );
define ( 'DB_PASSWORD', 'yourpassword' );
define ( 'DB_HOST', '111.222.0.1' ); // IP address of the server where MySQL is running
// make sure MySQL server will listen to the request from your WP server IP !
https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/
答案 1 :(得分:-2)
在config.php文件中,您只需将数据库所在的其他服务器的IP地址放在localhost中。 但请记住,单独运行数据库和源文件并不是一个好主意,它会让您遇到麻烦,有关更多信息,请查看以下链接。 谢谢你的合作。
https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/