Hello,
Running a website with no problem, i just installed the EE4 plugin after purchasing a licence. After plugin activation, I get a blank page on both frontend and backend. My fix was to deactivate EE plugin from the mysql database
Test was made with 17 theme to ensure no issue comes from there.
The blank page is usually the result of a PHP fatal error, which could be caused by a plugin conflict or the server has hit its memory limit. If you can check the server’s PHP error log that may have captured the fatal error, or you can set up WP_DEBUG_LOG to log the error. You can set up WP_DEBUG_LOG by following this guide:
Hi Josh,
Thanks for your quick reply, looks like the memory limit was the issue.
So I can try now to understand why the calendar add-on is only showing the selector at the bottom of this page (after event list). Should see the month view… http://www.ssmg.pascalmoise.net/liste-evenements/
It’s happening because you are using a page builder to add the shortcode, EE loads it’s assets only when it can detect they are needed but page builders can prevent the shortcode tracking for working correctly.
However you’ll need to change line 7, where it has:
is_page( 'calendar' )
Change that to:
is_page( array( 1728 ) )
Which will tell EE to load the calendar assets on the page above, you can add additional page ID’s to load them on more pages, for example:
is_page( array( 1728, 1199 ) )
Loads the assets on pages 1728 and 1199
Viewing 3 reply threads
The support post ‘EE4 plugin activation result in blank page’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.