回答

2

是的,只要MySQL服務器允許外部服務器訪問數據庫。 當你設置WP而不是「localhost」時,你會放入SQL服務器。

可以導出當前的數據庫,那麼你將創造另一個服務器上的數據庫,

然後,而不是「本地主機」(在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/

+0

感謝拉傑·庫馬爾您的幫助 –

+0

歡迎光臨,先生!好好享受 –

相關問題