I am trying to figure out why I am getting a white screen/blank page... I first experienced this when editing a page. After I hit update, the post.php page went blank. When I tried to access the site (top level) it was a blank white page. When I went home, to a new network, the site worked just fine. So I began editing the pages again. I hit update again, and got the white page again. Can't see the front end of the site either. If I access the site from my phone, not using wifi, I can see the site. But here is the kicker... If I try to access ANY Wordpress site on my server, I get a blank white screen. I've searched and can't find anyone who has experienced this? Any help or direction is much appreciated. This is a new VPS server from HostGator. I have contacted HostGator but so far they haven't been able to replicate it.
White screens are PHP errors. Try Debug and see what PHP errors you are getting.
See https://codex.wordpress.org/WP_DEBUG
Add
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
in wp-config.php and the debug.log file will be in wp-content.
Add this line
define( 'WP_DEBUG_DISPLAY', true);
to wp-config.php to log and dump them to the browser.
For me this was a conflicting plugin - Yoast SEO - I disabled it and it stopped the error.
It occurred whenever I tried to update a post as an admin user.
Related
when trying to save changes, update button stays green and changes are not saved. I’ve tried every single advice I could found (cache cleaning, disabling plugins, enabling healt-check plugin). The error ‘Document already in save progress’ apeears in browser console. This issue can be reproduced only on one page (the biggest one). Also, on different hosting everything works fine.
This are the only plugins I use, and the theme is “OceanWP”:
The error in browser console:
Can you try this:
Edit wp-config.php and insert the following lines:
define( 'WP_DEBUG', true);
define( 'WP_DEBUG_LOG', true);
define( 'WP_DEBUG_DISPLAY', false );
and check the debug log at /wp-content/debug.log afterwards.
Also try to enable the Elementor Debugger to see if there are some more detailed erros:
https://elementor.com/help/elementor-debugger/
I had a same problem and finally found the solution here :
update button not work
I was having the same issue, also I was getting an 524 error sometimes on the site, always on my browser console, for me it was related to reaching the resources limit on my hosting... Had to change to a hosting with bigger limits... I tested this by migrating my site from my current hosting to a local instance, everything worked just fine.
Wp-admin or wp-login.php is blank. First time I'm having this problem.
I use godaddy basic wp plan. I can't reinstall wordpress
But I have tried by changing the "wp-Sg7k4r-options" folder name.
I renamed the theme and trying to deactivate plugins. But still I have the problem. The "information -scheme" shows some plugins still active.
I don't understand what to do? Can anyone help me?
The answer is simple:
Turn on WP Debug.
There is a good chance that you are seeing the error because of any PHP errors. And once you turn on WP_DEBUG, it will show you all the errors which you can track and fix the error.
How to debug:
Open wp-config.php file in your editor and add the following code to it.
define( 'WP_DEBUG', true );
I am working on wordpres site, site works good but whenever i try to login using wp-admin it shows me error called "cookies are blocked due to unexpected output" and i can see one of the text "password" return on left top area of wp-admin screen.I tried to change password from phpmyadmin but it does not works. can any one help me out for this.
Thanks in advanced
Turn on Debug info by adding following code in wp-config.php
define('WP_DEBUG', true);
It will show you what code might by causing the issue.
Also read this thread please people with same issue have solved:
https://wordpress.org/support/topic/unable-to-log-in-cookies-are-blocked-due-to-unexpected-output?replies=37
If this is happening after moving a multisite to a different domain (for dev purposes for instance) then make sure you edit the following line in your wp-config.php file and change the previous domain to the current one:
define('DOMAIN_CURRENT_SITE', 'newdomainname.com');
I am new to Wordpress and I jut installed it today, I created a username and password, am able to login to wordpress and access the dashboard. I made a few changes, installed a theme, created a menu, picked out a header, etc...
When I try to preview the site however, it just shows a blank white screen, anyone know how to fix this?
thanks in advance.
I ran into a similar problem in the past... to solve it I edited the wp-config.php file and activated the debug function... that let wordpress show me what the error was, so I could fix it...
Basically in wp-config.php search for:
define('WP_DEBUG', false);
and replace it with:
define('WP_DEBUG', true);
Once your done fixing the error don't forget to change it back...
taken from: Wordpress Codex - editing wp-config.php
I'm developing a WP theme for a client and have run into some trouble.
When my theme is activated:
I edit post or page (or several other areas), click UPDATE, PUBLISH, etc - and I get a blank white page.
When I go back, the post has been updated - so the system is working, it just isn't redirecting me back to the edit page.
Everything works fine when the default template is activated.
Thanks!!!
To trace the error set the WP_DEBUG as true
Refer : http://www.wprecipes.com/how-to-easily-enabledisable-debug-mode-in-wordpress
Change WP_DEBUG to true in wp-config.php file located in the WordPress root folder, and then you will be able to see the errors that are coming up. Fixing those errors will resolve your problem.