My blog was displaying a funky error message at the top of every page:
ABSPATH already defined in /Library/WebServer/Documents/Default/wp-config.php on line 25
After looking at line 25:
define('ABSPATH', dirname(__FILE__).'/');
I added one line above it:
if ( !defined('ABSPATH') )
And now the funky error message is gone.