Sarathlal N

Move Magento 1 installation from one server to another

When customizing Magento, after testing on local server, regularly I want to move my Magento installation in to test server and original host with same content.

Also in some special occasions, we want to change our host and domain name for some of this Magento installations.

So making this process as simple, today I’m write down the essential steps to move an installed Magento application.

Create a new file maintenance.flag in our Magento installation root folder. This file will make our current installation in Maintenance mode and by the way, it prevent user actions on this event.

Either we can use FTP file transfer method or if we have SSH access, we can compress all files & folders as a single file through command line.

If we have SSH access, we can use mysqldump command to backup our Magento database. Else use tools like phpMyAdmin etc to backup database.

Restore database using command line tools or GUI tools like phpMyAdmin etc.

Edit values of web/unsecure/base_url and web/secure/base_url in core_config_data table for our new installation.

UPDATE core_config_data SET value="http://mynewdomain.com/" WHERE path="web/unsecure/base_url";
UPDATE core_config_data SET value="https://mynewdomain.com/" WHERE path="web/secure/base_url";

Restore all files and folders in same file structure in new path. Then edit Magento configuration file (app/etc/local.xml).

 <host><![CDATA[YOUR_DATABASE_HOSTNAME]]></host>
 <username><![CDATA[YOUR_DATABASE_USERNAME]]></username>
 <password><![CDATA[YOUR_DATABASE_PASSWORD]]></password>
 <dbname><![CDATA[YOUR_DATABASE_NAME]]></dbname>

All files should have 644 permission and folders should have 755 permission.

Just remove all content from var/cache & var/session folders.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.