• Resolved Josh_A

    (@josh_a)


    Hello… just tried to install v2.1.8 and the admin pages are all blank.

    Tried disabling all plugins and switching to default theme… no errors showing in WP debug log or PHP logs.

    Trying to access wp-admin and viewing source shows that that it renders some amount of the header, but doesn’t get as far as </head>

    https://ww.wp.xz.cn/plugins/all-in-one-event-calendar/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Josh_A

    (@josh_a)

    Oh yes, memory limit is at 100m

    Thread Starter Josh_A

    (@josh_a)

    Wow…

    When I do this:
    define( ‘AI1EC_DEBUG’, true );

    The admin pages show again. Set it to false and they are blank.

    Obviously we can’t run with DEBUG true all the time, so this isn’t a solution.

    No obviously it’s not a solution. When you say it renders some amount of the header, do you see any error in the header?It might be hidden somewhere.
    Also try to add

    function shutdown() {
        	$error = error_get_last();
    	echo '<pre>';
    	var_dump($error);
    	echo '</pre>';
    }
    
    register_shutdown_function('shutdown');

    at the beginning of all-in-one-event-calendar.php

    It can’t be memory, debug mode consume more memory when turned on obviously.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Blank admin pages after install’ is closed to new replies.