/wp-admin/post.php turns to blank page every update
-
Hi there.. i have some problem to share and this is already fixed.
Every time i will update my post, page, i got a blank page.
I found the problem on my function.php
I just remove the space at the bottom of my functions.
For example, here’s my function.php file.
<?php functions code here .. ?> . . .
Consider the dotted as lines that creates spacing at the bottom of your function.php. You have to remove the lines and save your function.php
If the error is not solve, go to your wp-config.php,look for
define('WP_DEBUG', false);
and replace with
define('WP_DEBUG', true);
You will see some of errors there.. Some of your plugin have the same error like on the function.php just remove the white space and your problem is solve. after that, just put the define(‘WP_DEBUG’, false); to the default.
define('WP_DEBUG', false);
- The topic ‘/wp-admin/post.php turns to blank page every update’ is closed to new replies.