Ah like this

<?php

error_reporting(E_ALL|E_STRICT);
ini_set('display_errors', 1);
date_default_timezone_set('America/Phoenix');

set_include_path('.' . PATH_SEPARATOR . '../library' . PATH_SEPARATOR .
'./application/default/models/' . PATH_SEPARATOR . get_include_path());
require_once 'Zend/Controller/Front.php';

Zend_Loader::registerAutoload();  // autoloads stuff as we make calls

/**
 * Setup controller
 */

$controller = Zend_Controller_Front::getInstance();
$controller->setControllerDirectory('../application/default/controllers');
$controller->throwExceptions(true); // should be turned on in development
time 

// run!

array('layoutPath' => '../application/default/layouts');

$controller->dispatch();



Sorry and thanks again.
-sean
-- 
View this message in context: 
http://www.nabble.com/Where-does-View-helpers-pull-layouts-from---%28outdated-Zend_Layout-code%29-tp17678271p17678920.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to