开发者

Wordpress site blank after logging in

开发者 https://www.devze.com 2023-03-06 09:55 出处:网络
This is regarding the website http://brijux.com The website is working as expected now, except when I login to the admin area.

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?


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


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消