Can you provide more information to the problem?I will change host and i need step by step tutorial how to do it.
I read about migration, first download forum via FTP, download forum via phpMyAdmin, then upload forum via FTP and upload data base via phpmyAdmin.
Is it possible that people give more answer arount than on official forum?
BTW if we have payed software migration is somethig what we all have someday and tutorial for that is something natural or maybe i am wrong about it.
When i use MyBB you could finde all about migration and its a free software.
BTW if we have payed software migration is somethig what we all have someday and tutorial for that is something natural or maybe i am wrong about it.
When i use MyBB you could finde all about migration and its a free software.
Import your database in PhpMyAdmin on the new server
It could be as simple as providing your new hosting provider your cPanel log in details and letting them handle everything for you.
I have found that phpmyadmin is no good for importing any database over 50MB. I use big dump for this but I would do this if possible:
BTW if we have payed software migration is somethig what we all have someday and tutorial for that is something natural or maybe i am wrong about it.
When i use MyBB you could finde all about migration and its a free software.
tar -czvf ../filename.tar.gz .
scp -P [port number] filename.tar.gz [username]@[host ip]:
tar -xvzf filename.tar.gz
Migrating to a new server is best done at the command line. Try this from a test server, from within the website's root directory:
Code:tar -czvf ../filename.tar.gz .
Make sure you input the period after the filename, which ensures hidden files are included. This will put the archive above the root directory, so that it won't be available to the public. If your site is a typical XF install, all of your content/addons/media should be rolled up in one large file. The actual "filename" of your archive can be whatever you wish, but keep it short.
Then move up to the directory with the archive and do a secure copy to the new server via ssh:
Code:scp -P [port number] filename.tar.gz [username]@[host ip]:
The "port number" may be the normal SSH port, but if you've already changed it as you should then use that. The "username" and "host ip" would be whatever represents a user that can login to the new server via ssh. There are several references on scp command line examples on the web.
The only remaining step would be to export a copy of the database, and put the copy on the new server as well via secure copy.
On the new server, setup your virtual host with the same configuration parameters and put the website archive in the root directory. Then extract it as such:
Code:tar -xvzf filename.tar.gz
When completed, ensure that your permissions are retained. In some cases the user/group ownership may match, but you may have to update them as well.
Then restore your database from the export. Delete both archives, and Test.
Do this on a test server until you're comfortable doing it with your live data. Reduce the TTL on your DNS a few days before the move, in order to minimize user impact on DNS propagation, and move it back to the normal TTL setting afterward in order to minimize page load times.
Hello
I will change host and i need step by step tutorial how to do it.
I do not know anything so .......
I try to finde it but all tutorials are for people who know something.
Yup... followed by, "what do I type now."Maybe you missed this bit
We use essential cookies to make this site work, and optional cookies to enhance your experience.