So...did you by any chance edit any of the theme code??? like header.php perhaps?
say by adding in a line of code at the end that calls uberMenu_easyIntegrate? (I fixed it and the site is running)
when I looked at your error log it is filled with
HTML Code:
18-Feb-2012 10:42:47] PHP Fatal error: Call to undefined function uberMenu_easyIntegrate() in /mnt/Target01/341443/344923/yourdomain.com/web/content/blog/wp-content/themes/atahualpa/header.php on line 124
header.php is only 123 lines long. at 124 you have
HTML Code:
<?php uberMenu_easyIntegrate(); ?>
This would work as long as the plugin was active, but when you shut off the plugin, you start getting the error.
if you want to add something like that in you should always be coded like this
HTML Code:
<?php if (function_exists('uberMenu_easyIntegrate')) { uberMenu_easyIntegrate(); } ?>
to test for the functions existance before calling it