Results 1 to 3 of 3

Thread: Migrating wordpress/classipress installation to new-server (fastest way)

  1. #1
    Thread Starter
    Senior Member navjottomer's Avatar
    Join Date
    Nov 2009
    Location
    Bareilly, India
    Posts
    246
    Thanks
    4
    Thanked 36 Times in 24 Posts

    Migrating wordpress/classipress installation to new-server (fastest way)

    Ok here is simple tutorial to transfer you website from one host to second host

    I am assuming that you are in ssh-console of your old server
    I am not responsible if it will break your site, burn your server, move you into sky or make you cry.


    Ok to accomplish our task first we have to do two things:
    1.Compressing up our files
    2.Backing up our old database

    So first thing first, to compress your files enter this command in your old server ssh-console.

    To tar or compressing: www/ directory
    Code:
    someuser@oldserver ~$ tar -pczf filename.tar.gz www/
    So next part is backing up your mysql database, I am assuming that you are in ssh console of your old server.

    Type this command to backup your mysql database

    Code:
    someuser@oldserver ~$ [/codemysqldump --opt -u [uname] -p[pass] [dbname] > [backupfile.sql]]
    [uname] Your database username
    [pass] The password for your database (note there is no space between -p and the password)
    [dbname] The name of your database
    [backupfile.sql] The filename for your database backup
    [--opt] The mysqldump option

    For example, to backup a database named 'classipress' with the username 'root' and with '123456' password to a file bk_classipress.sql, you should accomplish this command:

    Code:
    someuser@oldserver ~$ mysqldump -u root -p123456 classipress > bk_classipress.sql

    Ok now we have two file one is compressed /www directory and our database backup. So now we are going to transfer
    these files to second server.
    To transfer our compressed /www directory named filename.tar.gz enter this command:

    Code:
    someuser@oldserver ~$ scp filename.tar.gz yourusername@newserver:/www/
    you can specify your own path

    to transfer mysqldump file named bk_classipress.sql enter this command:

    Code:
    someuser@oldserver ~$ scp bk_classipress.sql yourusername@newserver:/home/username/
    Ok now your files are copied so login in to new server ssh-shell to extract files and restore your backup.

    To re-create the old classipress database you should follow two steps:

    1.Create an appropriately named database on the target machine
    2.Load the file using the mysql command

    To create database type this command
    Code:
    someuser@newserver ~$ mysqladmin -h hostname -u root -ppassword create classipressnew
    where 'hostname' is your database server host in most of the case it would be 'localhost' so just type 'localhost'

    Have a look how you can restore your bk_classipress.sql file to the 'classipressnew' database.

    Code:
    someuser@newserver ~$ mysql -u root -p classipressnew < bk_classipress.sql

    Ok now we are going to extract our compressed file filename.tar.gz

    Code:
    someuser@newserver ~$ tar xvfz filename.tar.gz
    Ok we have now restored our database and files on new server. Just update your wp-config.php with new credentials to finish this.
    I you like this tutorial share your experience.

    Thanks to spymare for motivating me to write this tutorial.
    Alternate tutorial via spymare http://forums.appthemes.com/wordpres...n-guide-19089/

  2. The Following User Says Thank You to navjottomer For This Useful Post:

    helmuc (December 6th, 2011)

  3. #2
    Thread Starter
    Senior Member navjottomer's Avatar
    Join Date
    Nov 2009
    Location
    Bareilly, India
    Posts
    246
    Thanks
    4
    Thanked 36 Times in 24 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

  4. The Following User Says Thank You to navjottomer For This Useful Post:

    calmlogic (October 8th, 2011)

  5. #3
    jomarkosabel's Avatar
    Join Date
    Mar 2009
    Location
    Philippines
    Posts
    40,696
    Thanks
    166
    Thanked 3,390 Times in 3,261 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!
    Please help our moderating team work more efficiently by not sending us support questions via PM. You can read more about how AppThemes support works here. However, you can send a PM to follow up and remind me if I missed your support request/thread.

    Thank you and have a nice day.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. ClassiPress Migrating to another domain
    By tonyperez in forum ClassiPress General Discussion
    Replies: 8
    Last Post: November 23rd, 2016, 12:56 AM
  2. Sql server to classipress
    By megabalcao in forum Help Using ClassiPress
    Replies: 1
    Last Post: August 15th, 2011, 02:05 AM
  3. Installing a second copy of Classipress on same server??
    By indianajim in forum Help Using ClassiPress
    Replies: 2
    Last Post: May 21st, 2011, 08:32 PM
  4. [SOLVED] Migrating old posts from 2.9 to Ads in v.3.5
    By kinski in forum Report ClassiPress Bugs
    Replies: 4
    Last Post: December 29th, 2010, 03:34 PM
  5. Who's hosting Classipress on their own server?
    By pkmonockus in forum ClassiPress General Discussion
    Replies: 5
    Last Post: June 30th, 2009, 01:16 AM