Using CMSMS version 1.10.3 - PHP version 5.2, MySQL 4.1 and GoDaddy Hosting. I also contacted them and they said they did nothing on there end to my hosting / server that could make a change.
I haven't changed anything to my site since June (last month) and all I did was update an image and a pdf to the site for my News section. However yesterday morning at 8ish AM my site crashed with this error:
Code: Select all
Fatal error: Class 'ContentOperations' not found in /home/content/18/4216918/html/lib/autoloader.php on line 82"
Code: Select all
Fatal error: Call to undefined function check_login() in /home/content/18/4216918/html/lib/misc.functions.php on line 683
Code: Select all
$contentops = ContentOperations::get_instance();
if( $contentops )
{
// why would this ever NOT be true.. dunno, but hey.
$types = $contentops->ListContentTypes();
if( in_array(strtolower($classname),array_keys($types)) )
{
$contentops->LoadContentType(strtolower($classname));
return;
}
}
$fn = $config['root_path']."/modules/{$classname}/{$classname}.module.php";
if( file_exists($fn) )
{
__cms_load($fn);
return;
}
$list = ModuleOperations::get_instance()->GetLoadedModules();
if( is_array($list) && count($list) )
{
foreach( array_keys($list) as $modname )
{
$fn = $config['root_path']."/modules/$modname/lib/class.$classname.php";
if( file_exists( $fn ) )
{
__cms_load($fn);
return;
}
}
}