views:

79

answers:

0

I was doing some clean up on a test project in Zend, and now main index page works, but every active link gives this error.

An error occurred
Page not found
Exception information:

Message: Action "xxxxx" does not exist and was not trapped in __call()
Stack trace:

#0 C:\xampp\php\PEAR\Zend\Controller\Action.php(515): Zend_Controller_Action->__call('authentificatio...', Array)
#1 C:\xampp\php\PEAR\Zend\Controller\Dispatcher\Standard.php(289): Zend_Controller_Action->dispatch('authentificatio...')
#2 C:\xampp\php\PEAR\Zend\Controller\Front.php(946): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#3 C:\xampp\php\PEAR\Zend\Application\Bootstrap\Bootstrap.php(77): Zend_Controller_Front->dispatch()
#4 C:\xampp\php\PEAR\Zend\Application.php(358): Zend_Application_Bootstrap_Bootstrap->run()
#5 C:\xampp\htdocs\zftutorials\zftutorial\public\index.php(26): Zend_Application->run()
#6 {main}  

Request Parameters:

array (
  'controller' => 'index',
  'action' => 'xxxxxxx',
  'module' => 'default',
)  

bootstrap looks like this:

protected function _initAutoload()
{
    $modeLoader = new Zend_Application_Module_AutoLoader(array
        ('namespace'=>'',
        'basePath'=>APPLICATION_PATH ));
     //echo(APPLICATION_PATH);  
    return $modeLoader;
}