答えて

2

はい、MySQLサーバーが外部サーバーからデータベースにアクセスできるようになっているかぎりです。 "localhost"の代わりにWPを設定すると、SQLサーバーを配置します。

あなたは、あなたが別のサーバー上にデータベースを作成し、現在のデータベースをエクスポートすることができ、その後、代わりに(config.phpを中)は「localhost」の

あなたは、サーバーとのIPアドレスを入れますconfig.phpのは、あなたは自分のデータベースがlocalhostの代わりに存在する他のサーバーの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

ようこそ、先生のために!楽しめ –

関連する問題