
Hey, just so you know ... this post is now about
9 years old. Please keep that in mind as it very well may contain broken links and/or outdated information.
A recent server upgrade (to Ubuntu 16.04) that included PHP 7.0 seems to have broken WordPress. I’m working on it!
Fixed! It was an old plugin that wasn’t compatible with PHP7 causing the problem.
I got it working by changing this line:
$final_stuff = eregi_replace(':space:+', ' ', $final_stuff);
to this:
$final_stuff = preg_replace('/:space:+/', ' ', $final_stuff);
(eregi_replace was removed in PHP 7.0)