How To Migrate Magento From Development To Production Servers

来源:互联网 发布:mysql 关闭数据库 编辑:程序博客网 时间:2024/05/20 21:24
http://www.magikcommerce.com/blog/how-to-migrate-magento-store-from-development-to-production-server

How To Migrate Magento From Development To Production Servers

Migrating Magento from Development (Staging) to Production (Live) is a challenging tasks especially if you haven’t done it before. Learn the painless Magento migration from Development to Production servers.

Magento Migration From Development To Production Servers

For moving magento from development to live server you need to upload your magento directory to live server and then change the db configuration from “app/etc/local.xml” to connect to the live database.

Step 1: Take a backup of entire Magento database as .sql file. So, for an example your development site is located at http://devsite.com/ and your live site is located at http://livesite.com.

Step 2: Open the backup file you created at step 1 and do Search/Replace all from “devsite.com” to “livesite.com”.

Magento stores complete url paths inside the database. Therefore you’ll end up with database full of url paths. If you try to import the file with changes done as above then it may not imported & shows some foreign key issue. To fix Magento foreign key issues at import you have to do the followings:

Place following lines of SQL commands on the top of the .sql file

12345678
SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT;SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS;SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION;SET NAMES utf8;SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE=\'NO_AUTO_VALUE_ON_ZERO\';SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0;

Now, place following lines of SQL commands at the end of the .sql file

1234567
SET SQL_MODE=@OLD_SQL_MODE;SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT;SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS;SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION;SET SQL_NOTES=@OLD_SQL_NOTES;

Finally, save the .sql file & import it into the live DB & you are done. I hope this will help you migrate Magento from development to production. Please leave us a comment and let us know if you run into any trouble migrating your Magento store from development to Production.

0 0
原创粉丝点击