Código PHP:
<?php
set_include_path('.' . PATH_SEPARATOR .'./'.'library/'. PATH_SEPARATOR . './Zend');
include_once 'library/Zend/Loader.php';
Zend_Loader::registerAutoload();
Zend_Loader::loadClass('Zend_Controller_Front');
// setup controller
$frontController = Zend_Controller_Front::getInstance();
$frontController->throwExceptions(true);
$frontController->setControllerDirectory('application/controllers');
// run!
$frontController->dispatch();
?>
y las funciones indexAction, addAction,editAction, etc.
el problema es que la unica pagina que veo es index.php, las demas me laraga errores como este:
Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message
'Invalid controller specified (edit.php)'
in C:\Archivos de programa\EasyPHP 2.0b1\www\zf_tutorial\library\Zend\Controller\Disp atcher\Standard.php:193
Stack trace: #0 C:\Archivos de programa\EasyPHP 2.0b1\www\zf_tutorial\library\Zend\Controller\Fron t.php(911):
Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http),
Object(Zend_Controller_Response_Http))
#1 C:\Archivos de programa\EasyPHP 2.0b1\www\zf_tutorial\index.php(14): Zend_Controller_Front->dispatch()
#2 {main} thrown in
C:\Archivos de programa\EasyPHP 2.0b1\www\zf_tutorial\library\Zend\Controller\Disp atcher\Standard.php
on line 193
Si alguien sabe que puede ser se lo agradezco, ya he mirado varios manuales y creo que tengo todo bien.