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 brukere syntes dette svaret var til hjelp
Relaterte artikler
Magento Version
You may want to know wich version of Magento that you are running. An easy way to do it is from...
How to add and edit product ratings and reviews in Magento
In Magento each product can be rated and reviewed. Customers (both guests and registered ones)...
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '2828-148-1-471' for key 'PRIMARY'
While trying to reindex your store using the command line, you stumble on the following...
Magento Security Tips
E-commerce Site VulnerabilitiesMost e-commerce platforms and payment gateways possess the same...
Magento Best Practices
Magento can be very tricky. And sometimes, it is getting quite confusing on how to properly...