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 Kunder som kunne bruge dette svar
Relaterede artikler
How to add and edit CMS static blocks in Magento
To add and edit static blocks, log in to the admin panel of your store and go to CMS...
SCRIPT_NAME & SCRIPT_FILENAME errors with cron
CRON ErrorsYou may encounter those errors in your log while inspecting those:[23-Oct-2016...
Reset Files and Directories permissions
From time to times, we must fix permissions on files and directory in order to secure an...
How to add and edit admin users and user roles in Magento
In addition to the admin account that's created while installing your Magento you can add more...
Reindexing
In some situation when you want to re-index Magento catalog you will get an error message or...
Powered by WHMCompleteSolution