Reuben
Reuben

Reputation: 2751

Wordpress goes blank after publishing new content?

So out of no where after clicking the publish button the page just goes blank...

The url at the top is: http://www.brightboxstudios.com/sociabulls/wp-admin/post.php

What's good news is it still posts the content :)

Not great at coding so details rock :)

Upvotes: 0

Views: 3050

Answers (3)

Ramiz Syed
Ramiz Syed

Reputation: 43

There will be many reasons for blank page, you have not mention version for wp, php etc.
To solve wordpress blank page issue follow the steps
  1. disable all plugin and try (if there is an error in plugins then enable 1 by 1)
  2. switch to default theme and try (if there is an error in theme)
  3. rename .htaccess and param-link to default (page/post id)

Upvotes: 0

Muhammad Zeeshan
Muhammad Zeeshan

Reputation: 77

I was getting same error, when I update the site content and press update it goes to /wp-admin/post.php and this appears as blank page.

It is solved by:

  • I removed all the spaces at the end of functions.php file, I had included a widget and there were some spaces in between older content and new widget function, when I removed the spaces everything is working fine.

if that don't work then - go into wp-config.php and find this "define('WP_DEBUG', false);"

  • change its value, if it is flase, make it true or if it is true change it to false.

And everything must work Good.

Thanks

Upvotes: 2

Ayman Safadi
Ayman Safadi

Reputation: 11552

A blank page usually means Apache failed. Check your error logs. You'll probably find a line that starts with:

PHP Fatal error:

You can also display your errors on the screen instead of looking at the log.

Upvotes: 1

Related Questions