I created my website on the subfolder /.
After it was finished, I moved the website's files to the main adress / (ftp). And after that, I edited the siteurl
and home
record in the database in the wp_options
table.
I have done this before, and as far as i rememeber, these were all the steps that were needed. However, as you can see for yourself, nothing is showing, just a blank page. Also no connection error, the page source is blank too.
What happened? What could be the cause? The only difference with other websites I moved is that I installed the Wordfence plugin. Could this be a problem? And mostly, were do i start to fix this issue?
I created my website on the subfolder https://www.lokaction.be/dev/.
After it was finished, I moved the website's files to the main adress https://www.lokaction.be/ (ftp). And after that, I edited the siteurl
and home
record in the database in the wp_options
table.
I have done this before, and as far as i rememeber, these were all the steps that were needed. However, as you can see for yourself, nothing is showing, just a blank page. Also no connection error, the page source is blank too.
What happened? What could be the cause? The only difference with other websites I moved is that I installed the Wordfence plugin. Could this be a problem? And mostly, were do i start to fix this issue?
you need to see below post to move word-press site one server to other
Ref :- Wordpress link
some simple steps follow and change site location
you can update your database using following queries
UPDATE wp_options SET option_value = replace(option_value, 'https://www.oldurl', 'https://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'https://www.oldurl','https://www.newurl');
UPDATE wp_posts SET post_content = replace(post_content, 'https://www.oldurl', 'https://www.newurl');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://www.oldurl','https://www.newurl');
RewriteBase
line)? – kero Commented Aug 30, 2018 at 15:25website_root/htdocs/wp-content/debug.log
Can you check the file if you see anything in there? Because you seem to be getting a server 500 error. So that's probably because of your webserver or some of the code is creating a fatal error. – Kumar Commented Aug 30, 2018 at 16:27