I am trying to use Zend_View but facing interesting issue, here is my code in controller.
$view = new Zend_View();
$view->setScriptPath(APPLICATION_PATH . '/views/scripts/account/');
$view->render("add.phtml");
and in add.phtml I do have below code to include header..
<?php echo $this->render('includes/header.phtml')?>
but it says "script 'includes/header.phtml' not found in path 'application path/views/scripts/account/)".
while I am able to include header file in other view files.
Please advise why it is looking under absolute path in views..
KJ..