Migrating your CMS from one server to another one

From time to time, you may need to push your CMS from your staging env to your production env.

This can be tedious if you have multiple custom pages done using Magento's CMS

Luckily, there is a two-steps solution that can fit the bill

For simplicity sake, we've used some generic username, password, hostname and database schema.  Simply adjust everything accordingly to your setups


Export process
1) log in to your origin server using SSH

2) execute the following:
mysqldump -uusername -ppassword -hhostname database cms_page cms_page_store cms_block cms_block_store | grep INSERT | sed 's/INSERT INTO/REPLACE INTO/g' > ~/cms-export.sql

3) transfer the dump to the destination server
scp ~/cms-export.sql username@destination-server:~/


Import process
1) log in to your destination server

2) execute the following:
mysql -uusername -ppassword -hhostname database < ~/cms-export.sql

3) Refresh the cache

4) QA!


Feel free to request our help if you want us to execute this task for you.
  • 3 Users Found This Useful
Was this answer helpful?

Related Articles

How to add and edit attribute sets in Magento

Each product that you add in Magento can be configured thanks to a set of attributes. These are...

How to add a Contact Us form to a page in Magento

Magento has a default Contact Us page usually located in the footer of the store. This page...

How to add and manage currencies in Magento

In Magento you can allow customers to view the prices of the products in your shop in different...

How to add and edit search terms in Magento

Magento has a search function that customers can use to look for products on the frontend of your...

How to disable guest checkout

By default guests can shop without creating a customer account on your eCommerce. You can...