skip to Main Content

i want to transfer my wordpress(woocommerce) website to another host, ihave jst do that :
1- download all my files (wp-content, wd-admin, ….etc) from my old host.
2- export my database
3- create new database on the new host
4- import my old database
5- update the wp-config file with new connection to my new database.
6- upload all my files to the new host
all is right , the problem is that when i update the name server of my domain
when i try to get my website? IT REDIRECT ME THE INSTALL WORDPRESS PAGE
i don’t understand where is the problem

2

Answers


  1. Chosen as BEST ANSWER

    the problem was solved, as that : the url was : https:// but in the new server the ssl certificate is generated automatic , so it dosen't word but when i change the url to http all is work, thanks for all , and i hope it help new people who have the same problem ,


  2. So transferring a wordpress site should be very easy. Just quoting your steps out:

    1- download all my files (wp-content, wd-admin, ….etc) from my old host. 2- export my database 3- create new database on the new host 4- import my old database 5- update the wp-config file with new connection to my new database. 6- upload all my files to the new host all is right

    Have you changed the new site url in the wp_options table in the wordpress database using phpmyadmin?

    These are the actual steps you need to follow:

    1) Zip the full current files you have on your old wordpress site’s file directory. And I mean everything. If you want to use FTP to download the files, that’s an option as well instead of zipping it and downloading via a file manager if your host has cPanel or anything equivalent to it.

    2) Go to phpmyadmmin on your old server and export the database of the old site. Pretty easy to do this.

    3) Upload the zipped files to your new server’s domain root and unzip them.

    4) Import the old database into the new database you created on the new host.

    5) Change the Site urls in the wp_options table to the new URL.

    Then you can load the backend and do a search replace of all old URLs with the new URLs using a search and replace plugin for wordpress.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search