Reputation: 375
Hello I have website that working well in my hostgator cpanel testing server and I have just switched website to client server. I found that backend(wp-admin showing me The connection was reset in the firefox) isnt working right now and frontend working well.
I did lots of r & d like disable the all plugins and disable current activated theme in ftp but not a success.
Please help me guys.
Upvotes: 0
Views: 1066
Reputation: 46
Change the site url and home url in wp_options table.
Also check the rewrite base in your htaccess file.
Upvotes: 0
Reputation: 523
Open your exported sql file. and try to search and replace old domain name (may be with folder path) with the current domain name.
Upvotes: 0
Reputation: 743
please check your wp database in wp_options table
siteurl and home with bellow query :
SELECT *
FROM wp_options
WHERE option_name
IN (
'siteurl', 'home'
);
and check option_value is coming correct?
Upvotes: 1
Reputation: 1
Please update your old URL with your New URL for all the posts,pages,etc.
You can change the url by using following plugin
https://wordpress.org/plugins/velvet-blues-update-urls/
Upvotes: 0