0
I started studying the Zendframework e Configurei as recommended. When calling the project I created with the default code, it works perfectly. When I comment all the index.php
and add the code:
include 'Zend.php';
Zend_Loader::loadClass('Zend_Controller_Front');
Zend_Controller_Front::run('controllers');
Shows the following error:
Fatal error: Class 'Zend_loader' not found in C: wamp www Projetozend public index.php on line 5
You have to call autoloader: require_once 'Zend/Loader/Autoloader.php';
– Ivan Ferrer