"; //exit; //ini_set('display_errors',1); //error_reporting(E_ALL|E_STRICT); ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); ini_set("memory_limit","800M"); date_default_timezone_set('Africa/Johannesburg'); set_time_limit(0); // Define path to application directory defined('APPLICATION_PATH') || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application')); // Define application environment defined('APPLICATION_ENV') || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production')); defined('UPLOADS_PATH') || define('UPLOADS_PATH', realpath(dirname(__FILE__) . '/../public/uploads/')); defined('IMG_PATH') || define('IMG_PATH', realpath(dirname(__FILE__) . '/../public/IMGS/')); defined('SYS_PATH') || define('SYS_PATH', realpath(dirname(__FILE__) . '/../public/img/users/')); // Ensure library/ is on include_path set_include_path(implode(PATH_SEPARATOR, array( realpath(APPLICATION_PATH . '/../library'), get_include_path(), ))); /** Zend_Application */ require_once 'Zend/Application.php'; // Create application, bootstrap, and run $application = new Zend_Application( APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini' ); $application->bootstrap()->run();