Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
If the asker does not get an answer then they have 10 days to request a refund.
$20
How to move a site
> So I am having some trouble with a site I made. I switched
> servers, but before I did I downloaded the FTP files and
> then exported the databases, but when I uploaded everything,
> and imported the databases, the site isnt there any more???
> Wondering if you have a minute to help me out??
Lawrence Krubner | 12/19/11 at 8:53pm
Edit
Tutorial: How to assign prize money
(9) Possible Answers Submitted...
See a chronological view of answers?
Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
-

Last edited:
12/19/11
8:59pmRomel Apuya says:this problem is on the domain settings.
you need to point your domain i.p to the new server.
Previous versions of this answer: 12/19/11 at 8:59pm
-

Last edited:
12/19/11
9:04pmJerson Baguio says:Hi lawrence,
can i ask for the ftp and login details i got time to check on your friends site. -

Last edited:
12/19/11
9:26pmlarrieberndrocha says:What is the URL of the site? What kind of site is this? What CMS (Wordpress, Drupal) is being used?
To transfer a domain from one webhost to another:
1. Backup files and database of the domain in the old host.
2. Add domain, upload files and setup database of the domain in the new host.
3. Update Nameserver and wait until it's propagated.
There must be an issue in between. Potential issues:
Step 1: Big sites have tendencies of having incomplete database backup or export. Make sure that your database is complete. Make sure that you have all the files installed.
Step 2: Importing the database doesn't make the setup complete. Different account have different database name initials. Make sure that the MYSQL information on the CMS (say wordpress) has been updated and correct.
Step 3: Web host have different waiting propagation waiting time. If the above steps are correct, probably, all you have to do is to wait till the propagation is complete. -

Last edited:
12/19/11
11:12pm -

Last edited:
12/20/11
12:20amDaryl Lozupone says:The question is a little vague, but here are the necessary steps to transfer a WordPress site from one hosting account to another:
1. Export databases from MySQL
2. Download files via ftp
3. On new hosting account, add domain name
4. Upload files to new host
5. Create database on new hosting acccount, noting db name, username and password
6. Import database tables
7. Edit wp-config.php to reflect new database settings (specifically: db name, username, and password)
8. Assuming this transfer is keeping the old domain name itself, update the nameservers with the registrar. (If the domain name is changing, you will have to modify it in the wp_options table in the database)
9. Wait for propagation and test. You can verify your nameserver settings using whois on linux/unix/mac/etc or you can use this online tool: http://networking.ringofsaturn.com/Tools/whois.php
i hope that helps. If you have any further questions, feel free to post them. -

Last edited:
12/20/11
4:16amMarko Nikolic says:In short, I assume that he did these two steps correctly (ftp files and db import).
After that he should check wp-config.php and fill right info there.
Next step is to go to db in phpmyadmin and to edit wp_options table. - he will see his old address there and he should change that:
siteurl (first line)
home (35-36th line). -

Last edited:
12/20/11
9:24amnina magbanua says:Hi,
You should change the value on your database on wp_options table. Change your value on the fields siteurl and home with your new site url. -

Last edited:
12/20/11
10:22amPaul Gregory says:Your friend only had one question, although three additional question marks were deployed to emphasise confusion. The answer to your friend's question is in your question to us, and it is No.
It's impossible to solve the problem without asking more questions; it would have been more helpful if you'd given your friend a credit for this site and told them to ask here as they could then comment. As it is, your friend may have got help from another friend in the meantime.
Indeed, it's not even 100% clear that your friend's missing site ran WordPress at all. As databases are plural there's a good chance that it is at least running something else as well.
The part that has alarm bells ringing for me is "the site isnt there any more". Isn't where? How is this tested?
What you need is an answer that you can copy/paste back to your friend. Here is my effort:
The solution depends on how the not-being-there manifests itself.
A) Website shows generic Coming Soon message despite all files being in FTP:
New hosting contains an index.html which has priority over index.php - delete index.html and site will be visible.
B) Website shows blank white page despite all files being in FTP:
Most likely to be an error in the database connection file - either a semi-colon is missing after changes or no changes have been made and the details are wrong. It's possible that a better error will be visible if viewed in Firefox because Internet Explorer tends to assume very short error messages are always equivalent to 404. (Chrome does some other unhelpful things with failing pages).
C) Website shows generic message and no files are in FTP:
Files were actually uploaded to the Old Site during propagation and now the empty New Site is being viewed. Upload a simple HTML file, see if that is viewable, and if so upload everything again. If errors persist, it's a misconfigured site, not an issue with moving. -

Last edited:
12/21/11
2:34amDennis says:I just successfully migrated a site this morning. After you uploaded your site files and imported the database, you need to make some change in the database like this:
1. UPDATE wp_options SET option_value = replace(option_value, 'http://www.original.com', 'http://www.current.com') WHERE option_name = 'home' OR option_name = 'siteurl';
2. UPDATE wp_posts SET guid = replace(guid, 'http://www.original.com','http://www.current.com');
3. UPDATE wp_posts SET post_content = replace(post_content, 'http://www.original.com', 'http://www.current.com').
That should do it.
This question has expired.
Chris Bunting had additional discourse to offer.
Current status of this question: Community pot
Please log in to add additional discourse to this page.
Warning: Please do not give out any FTP or ssh credentials to anyone, unless you trust them completely. Giving out login details is dangerous.
If the asker does not get an answer then they have 10 days to request a refund.
