How to transfer /wordpress folder from one PC to another

I am currently developing my own website, and I am hosting it locally using WAMP.

I thought that if I want to copy the website on some other PC I just have to copy the /wordpress folder to the /www folder of WAMP on the other computer, but seems like that’s not working at all as I expected.

Can someone explain me what else do I need to copy in order for my website and hosting to be exactly the same as on the original computer?

2 Answers
2

You have missed to copy the database associated with WordPress install.

Go to PHPmyAdmin(http://localhost/phpmyadmin), Select the database and click Export all the tables.

In your other PC, Go to PHPmyAdmin, Create new user and a database. Import the file that was downloaded while exporting.

Leave a Comment