<?php
//echo "<p style='font-size:30px; text-align:center; color:#03A6B3'>We're curretly experiencing technical difficilties</p>";
//echo "<p style='font-size:30px; text-align:center; color:#03A6B3'>We'll be back shortly</p>";
//echo "<img src='/Background4_2018_maintenance.jpg' style='width:100%'/>";
//exit;
ini_set('display_errors',1);
error_reporting(E_ALL|E_STRICT);

date_default_timezone_set('Africa/Johannesburg');

// 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('UPDATE_PATH')
    || define('UPDATE_PATH', realpath(dirname(__FILE__) . '/../public/archives/'));	
		
// 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();
 