| can rewrite the tags on-the-fly, enabling you to utilize that syntax
| in your view files.  Options are TRUE or FALSE (boolean)
|
*/
$config['rewrite_short_tags'] = FALSE;
/*
|--------------------------------------------------------------------------
| Reverse Proxy IPs
|--------------------------------------------------------------------------
|
| If your server is behind a reverse proxy, you must whitelist the proxy IP
| addresses from which CodeIgniter should trust the HTTP_X_FORWARDED_FOR
| header in order to properly identify the visitor's IP address.
| Comma-delimited, e.g. '10.0.1.200,10.0.1.201'
|
*/
$config['proxy_ips'] = '';
//added by wiliam 18/06/2015 15:53:11
$config['default_page'] = "application/index";
$config['common_path'] = define('COM_URL', base_ci_url() . '/ifalconi_oci_responsive/');
function base_ci_url()
{
    if (isset($_SERVER['HTTPS'])) {
        $protocol = $_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off" ? "https" : "http";
    } else {
        $protocol = 'http';
    }
    return $protocol . "://" . $_SERVER['HTTP_HOST'];
}
/* End of file config.php */
/* Location: ./application/config/config.php */
<?php

error_reporting((E_ALL ^ E_DEPRECATED) & ~E_NOTICE);
/*
    Theme Setting
*/
$sysConfig['Theme.siteTitle'] = 'CCBS PAYMENT';
$sysConfig['Theme.defaultTheme'] = 'default';
$sysConfig['Theme.defaultPage'] = 'default';
/* Web Service Connection */
$sysConfig['WS_SERVER'] = base_ci_url() . '/ifalconi_ws/wsdl.php?wsdl';
/*
    Module Setting
*/
$sysConfig['Module.defaultModule'] = 'paymentccbs';
$sysConfig['Module.defaultClass'] = 'paymentccbs';
$sysConfig['Module.defaultMethod'] = 'main';
/* Session Setting */
$sysConfig['Session.Duration'] = 7;
$sysConfig['Session.InactivityTimeout'] = 90;
function base_ci_url()
{
    if (isset($_SERVER['HTTPS'])) {
        $protocol = $_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off" ? "https" : "http";
    } else {
        $protocol = 'http';
    }
    return $protocol . "://" . $_SERVER['HTTP_HOST'];
}