Hi
I was also moving to another server running PHP7. For debugging reasons I added
register_shutdown_function("fatal_handler");
function fatal_handler() {
$error = error_get_last();
echo("<pre>");
print_r($error);
}
to index.php which caused the problem. Not sure this helps...
Lesson learned for me (again): Remember the changes you do. :-)
Regards
Jonas