Migration WordPress from server to server
-
-
Install fresh WordPress in remote server.
Then install All in on migration plugin in two servers. Take backup and copy .wpress file url from established server (Not download).Then create custom.php file (remote server) in wp-content > backups folder and paste following code then execute custom.php by navigate yourwebsite.com/wp-content/backups/custom.php
(Download file from url to server)
|
$url = 'http://www.example.com/a-large-file.wpress'; $path = 'file.wpress'; $fp = fopen($path, 'w'); $ch = curl_init($url); curl_setopt($ch, CURLOPT_FILE, $fp); $data = curl_exec($ch); curl_close($ch); fclose($fp); |
Go to wp-admin and check all in one migration then you can see one backup. Then press upgrade and wait. Now your website is moved.
- You must be logged in to reply to this topic.