0
votes

This is regarding the website http://brijux.com

The website is working as expected now, except when I login to the admin area.

When I login, I only see a blank white page with nothing in it. The website works find without logging in as admin.

More info: - I haven't updated wordpress

  • I haven't changed themes or upgraded themes since it was working last time

  • I haven't added any plugin or upgraded plugins since it was working last time

  • I had wordpress super cache plugin enabled. Might that be the reason that the site is working when I am not logged in and serving cached pages?

3

3 Answers

1
votes

Based on the error messages you posted in earlier comments, it looks like your memory limit is too low. You have it set to 32M, so try the following line in your wp-config.php:

define('WP_MEMORY_LIMIT', '64M');

That will double your memory limit to 64 megabytes (keep raising it if that's not enough). See here for more info:

http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

0
votes

Blank pages on a PHP site usually mean a fatal error and error_reporting is turned off. Check the PHP and/or server log (error_log in particular) for details as to what's blowing up.

0
votes

There's a PHP error in your codebase. Set WP_DEBUG to true in your wp_config.php file.