Esempio n. 1
0
 * @package
 * @copyright Copyright (c) 2005-2011, Openbiz Technology LLC
 * @license   http://code.google.com/p/openbiz-cubi/wiki/CubiLicense
 * @link      http://code.google.com/p/openbiz-cubi/
 * @version   $Id: index.php 5185 2013-01-19 15:34:13Z hellojixian@gmail.com $
 */
/** @todo need to move to header of view. */
header("Cache-Control: no-cache");
header("Pragma: no-cache");
$start = (double) array_sum(explode(' ', microtime()));
$installStatus = new InstallStatus();
if (!$installStatus->isAppInstalled()) {
    $installStatus->redirectToInstaller();
}
include 'bin/app_init.php';
$app = new Openbiz\Application();
$app->setBasePath(dirname(__FILE__));
$app->run();
$end = (double) array_sum(explode(' ', microtime()));
echo "Processing time: " . sprintf("%.4f", $end - $start) . " seconds";
class InstallStatus
{
    /**
     * Check, is the app installed?
     * @return boolean
     * @todo Need move to Installer class
     */
    function isAppInstalled()
    {
        return is_file(dirname(__FILE__) . '/files/install.lock') && filesize(dirname(__FILE__) . '/files/install.lock') == 1;
    }
Esempio n. 2
0
<?php

//$start = (float) array_sum(explode(' ',microtime()));
define("OPENBIZ_USE_CUSTOM_SESSION_HANDLER", true);
include_once "app_init.php";
$app = new Openbiz\Application();
$app->run();
/*
$end = (float) array_sum(explode(' ',microtime()));
echo "Processing time: ". sprintf("%.4f", ($end-$start))." seconds"; 
*/