error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED ^ E_STRICT);
if ($_SERVER['HTTP_HOST'] == "midas" || $_SERVER['HTTP_HOST'] == "localhost" || $_SERVER['HTTP_HOST'] == "maninder") {
define('LOCAL_MODE', true);
} else {
define('LOCAL_MODE', false);
}
// File system path
$tmp = dirname(__FILE__);
$tmp = str_replace('\\' ,'/',$tmp);
$tmp = substr($tmp, 0, strrpos($tmp, '/'));
define('SITE_FS_PATH', $tmp);
// include all the library files needed here
require_once(SITE_FS_PATH."/includes/config.inc.php");
require_once(SITE_FS_PATH."/includes/funcs_lib.inc.php");
require_once(SITE_FS_PATH."/includes/funcs_cur.inc.php");
require(SITE_FS_PATH."/includes/arrays.inc.php");
/*
if(strtolower($_SERVER['HTTPS'])=='on') {
define('IN_SSL', true);
} else {
define('IN_SSL', false);
}
*/
session_start();
//
$CURRENT_SUB_PATH = str_replace(SITE_FS_PATH, '/', dirname($_SERVER['PHP_SELF']));
$plugin_pos = strpos($_SERVER['PHP_SELF'], '/'.PLUGINS_DIR.'/');
if($plugin_pos !== false) {
$CURRENT_PLUGIN = substr($_SERVER['PHP_SELF'], $plugin_pos + strlen(PLUGINS_DIR)+2);
$slash_pos = $plugin_pos = strpos($CURRENT_PLUGIN, '/');
$CURRENT_PLUGIN = substr($CURRENT_PLUGIN, 0, $slash_pos);
}
define('CURRENT_PLUGIN', $CURRENT_PLUGIN );
// Script start time used to test site performance
define('SCRIPT_START_TIME', getmicrotime());
//echo("
SCRIPT_START_TIME: ".SCRIPT_START_TIME);
// magic_quotes_gpc needs to be "on"
if(get_magic_quotes_gpc()==0) {
$_GET = ms_addslashes($_GET);
$_POST = ms_addslashes($_POST);
$_COOKIE = ms_addslashes($_COOKIE);
@extract($_GET);
@extract($_POST);
} else {
$_GET = ms_trim($_GET);
$_POST = ms_trim($_POST);
$_COOKIE = ms_trim($_COOKIE);
import_request_variables('gp');
}
// magic_quotes_runtime needs to be "off"
if(get_magic_quotes_runtime()) {
set_magic_quotes_runtime(0);
}
// load plugins
if ($handle = opendir(SITE_FS_PATH.'/'.PLUGINS_DIR)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
$curr_dir = SITE_FS_PATH.'/'.PLUGINS_DIR.'/'.$file;
if(is_dir($curr_dir)) {
if(file_exists($curr_dir.'/midas_plugin.php')) {
require_once($curr_dir.'/midas_plugin.php');
}
}
}
}
closedir($handle);
}
// Protect admin pages
$PHP_SELF = $_SERVER['PHP_SELF'];
$admin_pos = strpos($PHP_SELF, '/'.ADMIN_DIR.'/');
if($admin_pos !== false) {
// Remove following comment to enable admin login check
protect_admin_page();
}
Fatal error: Call to undefined function is_post_back() in D:\xampp\htdocs\charts\request_ndc_charts_form.php on line 11