_getParam ( 'error_handler' ); switch ( $errors->type) { case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER : case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION : $this->getResponse ()->setRawHeader ( 'HTTP/1.1 404 Not Found' ); $view = Zend_Registry::get ( 'view' ); $this->getResponse()->sendHeaders(); echo $view->fetch('404.tpl'); die(); break; default : $exception = $errors->exception; echo $exception->getMessage () . "\n" . $exception->getTraceAsString (); break; } } } ?> http://fitorfugly.com

Error Occured

ZF Message: Invalid controller class ("ErrorController")

You are trying to run this :

Module: default
Controller: error
Action: error

Check your controller here /var/www/html/app/controllers/default or define it in config/routers.cfg.php

-or-

Here is error trace

#0 /var/www/html/Libs/Zend/Controller/Dispatcher/Standard.php(255): Zend_Controller_Dispatcher_Standard->loadClass('ErrorController')
#1 /var/www/html/Libs/Zend/Controller/Front.php(945): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#2 /var/www/html/index.php(143): Zend_Controller_Front->dispatch()
#3 {main}