My homepage is gone but header is still there

jjj reported that the issue has been solved in the comments to the original question: …In the mean time I did some trouble shooting with the plugins page and it turns out the ‘sitemap’ plugin may be the culprit. It works fine after I deactivated that plugin. I will definitely debug however. Thank you again

504/502 errors plauging our site

If you think a plugin is causing the problem, disable all plugins by renaming the wp-content/plugins folder. Then put the plugins (in the subfolders of wp-content/plugins) back into a new wp-content/plugins folder. Do a couple/three at a time to see if you can find a bad plugin. You might also reload WP 4.7.2 via the … Read more

500 error after upgrading from 5.0 to 5.4 and adding empty functions.php

I’ve managed to print the error message by adding the following to the functions.php: function exception_handler($exception) { echo “Uncaught exception: ” , $exception->getMessage(), “\n”; } set_exception_handler(‘exception_handler’); For some reason logs did not include the error details before. The error is call to undefined function is_blog_installed() which I have no idea why’s that. 😀