Il fatto è che non c'è nessun errore. Sul mio server Apache funziona tutto
benissimo senza il ben che minimo errore.
Cmq il codice in IndexController.php è questo
Codice:
<?php
class IndexController extends Zend_Controller_Action
{
function init()
{
$abu = Zend_Registry::getInstance()->get('abu');
$this->view->baseUrl = $abu.$this->_request->getBaseUrl();
$lmenu = new Tables_Loader('site_menu_left');
$this->view->lmenu = $lmenu->fetchAll();
}
function indexAction()
{
$news = new Tables_Loader('site_news');
$this->view->news = $news->fetchAll(null,'id DESC', 5, 0);
$this->view->last_update = $news->fetchAll(null,'id DESC', 1, 0)->current()->date;
}
function whoamiAction()
{
}
}