zend_application showing blank page
- by daniel
Hi,
I'm using Zend_Application to bootstrap my app.
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
public static $frontController = null;
public static $registry = null;
protected function _initEnvironment()
{
ini_set('display_errors', true);
//date_default_timezone_set('Europe/London');
}
protected function…