• 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);
    
Viewing 1 replies (of 1 total)
  • This does not seem to be an issue for me. I have gone through every .php file in WP and they all seem to be intact without any preceding or trailing spaces. At this point, the edit.php, post.php, all return a blank page. Although, the actions are always executed, but the update, publish,or activate action is not returning to its previous page.

    I also have this issue when I activate a plugin. No errors show up in my server log and no error messages show up in the browser after setting Debug to true. Even disabling all my plugins do not help.

    Any ideas?

Viewing 1 replies (of 1 total)
  • The topic ‘/wp-admin/post.php turns to blank page every update’ is closed to new replies.