wildweaselmi Posted July 9, 2012 Share Posted July 9, 2012 Server Transfers without SSH access This guide will take you through the steps required to successfully move your IP.Board from one server to another where you do not have SSH access. Part One: Preparation 1) First of all, you should turn your board offline to prevent users from adding content during the transfer. 2) You should ensure that your new server meets the requirements for IP.Board. Our requirements, along with a script which can check those requirements can be found here. 3) You should check what the MySQL version is for your current server, and what it is for your new server - your host will be able to provide this information for you if you are unsure what versions you have. If the version for the new server is newer than the old server, then you should be okay. If it is older, you will need to perform a compatibility backup when you get to step 4. Part Two: Downloading Data 4) Backup your database using your preferred method. IPS recommends using phpMyAdmin which is a popular database management tool available on many hosts. If you have a particularly small forum, there is a backup tool in your Admin CP under the "Support" tab - but this may not work with larger databases. If you are in any doubt talk to your host. 5) Using FTP, download all of the files from your current server, preserving the directory structure. Part Three: Uploading Data 6) Create a blank database on your new server, note the username, password and database name. 7) Upload and import your MySQL using your preferred method. You can use a tool such as bigdump to import the database. 8) Upload all of the files you downloaded in step 5 to your new server, preserving the directory structure and permissions. Part Four: Final Steps 9) If you are keeping the same URL, transfer your domain to the new server. Your new host and domain name provider will be able to provide assistance with this. Note that it will likely take up to 24 hours for the domain name to fully propagate. 10) On the new server, open the conf_global.php and fill in your new database details as created in step 6. The particular variables you need to edit are: $INFO['sql_database'] $INFO['sql_user'] $INFO['sql_pass'] $INFO['sql_host'] $INFO['board_url'][/code] 11) In your Admin CP, go to the "Support" tab and select "Permissions Checker" - fix any problems it reports. 12) In your Admin CP, go to the "System" tab and select "System Settings" - go to the "General Configuration" group and change the "Upload path" and "Upload URL" as required. If you use IP.Blog, IP.Gallery, IP.Downloads, IP.Content or IP.Nexus - you should also go into their respective settings and change any relevant paths. 13) In your Admin CP, go to the "System" tab and select "Cache Management" - press the "Recache All" button. 14) In your Admin CP, go to the "Look & Feel" tab and select "Template Tools" - press the "Recache Skin Sets" button. 15) Check you can access your board, and if so, turn it back online. Link to comment Share on other sites More sharing options...
wildweaselmi Posted July 9, 2012 Author Share Posted July 9, 2012 Server Transfers with SSH access This guide will take you through the steps required to successfully move your IP.Board from one server to another where you have SSH access to both servers. Part One: Preparation 1) First of all, you should turn your board offline to prevent users from adding content during the transfer. 2) You should ensure that your new server meets the requirements for IP.Board. Our requirements, along with a script which can check those requirements can be found attached below. 3) You should check what the MySQL version is for your current server, and what it is for your new server - your host will be able to provide this information for you if you are unsure what versions you have. If the version for the new server is newer than the old server, then you should be okay. If it is older, you will need to perform a compatibility backup when you get to step 5. 4) Connect via SSH to both the source and destination servers. This is done by opening your command line (or Terminal if you're on a Mac) and running the following command: ssh USERNAME@EXAMPLE.COM You will be prompted for a password.After you are logged in, you should navigate to the directory containing your forums directory. You can use the "ls" command to list all files in your current directory, and "cd folder" to change to a different folder.Part Two: Downloading Data5) Create a backup your database by running the following SSH command: mysqldump -uUSERNAME -pPASSWORD DATABASE_NAME > backup.sql[/code]If you have determined in step 3 that a compatibility backup is required, add "--compatible" to the command.You may also want to compress the backup using this command: ''.str_replace('', '', 'gzip backup.sql').'' Once the backup has been created, download it via FTP. It will be called "backup.sql.gz" and be in the folder your forums are in (or whatever folder you navigated to in step 4)6) Create an archive of your files using this command (replace "public_html" with whatever the directory is called. It must be in your current directory that you navigated to in step 4):''.str_replace('', '', 'tar -cf public_html.tar public_html').'' And then compress it with this command:''.str_replace('', '', 'gzip public_html.tar').'' Using FTP, download the created file (in our example, it would be called public_html.tar.gz).Part Three: Uploading Data7) Create a blank database on your new server, note the username, password and database name.8) Upload and import your database.You will first need to unzip it with this command:''.str_replace('', '', 'gunzip backup.sql.gz').'' And then import it by running the following commands one at a time - fill in the blanks with the database details you created in step 7:''.str_replace('', '', 'mysql -uUSERNAME -pPASSWORD ').'' ''.str_replace('', '', 'use DATABASE_NAME ').'' ''.str_replace('', '', 'source backup.sql').'' 9) Upload the tar.gz file you downloaded in step 6 to your new server. Then uncompress with the following command:''.str_replace('', '', 'tar -xf public_html.tar.gz').'' Part Four: Final Steps10) If you are keeping the same URL, transfer your domain to the new server. Your new host and domain name provider will be able to provide assistance with this. Note that it will likely take up to 24 hours for the domain name to fully propagate.11) On the new server, open the conf_global.php and fill in your new database details as created in step 6. The particular variables you need to edit are:''.str_replace('', '', '$INFO['sql_database']$INFO['sql_user']$INFO['sql_pass']$INFO['sql_host']$INFO['board_url']').'' 12) In your Admin CP, go to the "Support" tab and select "Permissions Checker" - fix any problems it reports. 13) In your Admin CP, go to the "System" tab and select "System Settings" - go to the "General Configuration" group and change the "Upload path" and "Upload URL" as required. If you use IP.Blog, Gallery or Downloads - you should also go into their respective settings and change any relevant paths. 14) In your Admin CP, go to the "System" tab and select "Cache Management" - press the "Recache All" button. 15) In your Admin CP, go to the "Look & Feel" tab and select "Template Tools" - press the "Recache Skin Sets" button. 16) Check you can access your board, and if so, turn it back online. check_requirements.zip Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now