X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fsession.inc;h=c761660b4e311a7cd48a884a0ef048bc95048f00;hb=6ffe5f040543994725beaf9f8059c054919043d7;hp=612957ae2f8777ca05aa413b090387f559686d77;hpb=9a73d71101aff35e4f27a9e5f4fa2cad612779ce;p=fa-stable.git diff --git a/includes/session.inc b/includes/session.inc index 612957ae..c761660b 100644 --- a/includes/session.inc +++ b/includes/session.inc @@ -168,6 +168,10 @@ if (!isset($path_to_root)) if (isset($_GET['path_to_root']) || isset($_POST['path_to_root'])) die("Restricted access"); +include_once($path_to_root . "/includes/errors.inc"); +// colect all error msgs +set_error_handler('error_handler' /*, errtypes */); + include_once($path_to_root . "/includes/current_user.inc"); include_once($path_to_root . "/frontaccounting.php"); include_once($path_to_root . "/admin/db/security_db.inc"); @@ -177,6 +181,17 @@ include_once($path_to_root . "/includes/ajax.inc"); include_once($path_to_root . "/includes/ui/ui_msgs.inc"); include_once($path_to_root . "/includes/prefs/sysprefs.inc"); +include_once($path_to_root . "/includes/hooks.inc"); +// +// include all extensions hook files. +// +foreach ($installed_extensions as $ext) +{ + if (file_exists($path_to_root.'/'.$ext['path'].'/hooks.php')) + include_once($path_to_root.'/'.$ext['path'].'/hooks.php'); +} + + /* Uncomment the setting below when using FA on shared hosting to avoid unexpeced session timeouts. @@ -186,9 +201,12 @@ include_once($path_to_root . "/includes/prefs/sysprefs.inc"); ini_set('session.gc_maxlifetime', 36000); // 10hrs +hook_session_start(@$_POST["company_login_name"]); + session_name('FA'.md5(dirname(__FILE__))); -//include_once($path_to_root.'/modules/www_statistics/includes/db_sessions.inc'); + session_start(); +session_regenerate_id(); // this is to fix the "back-do-you-want-to-refresh" issue - thanx PHPFreaks header("Cache-control: private"); @@ -206,22 +224,11 @@ if (!isset($_SESSION['language']) || !method_exists($_SESSION['language'], 'set_ $_SESSION['language']->set_language($_SESSION['language']->code); -include_once($path_to_root . "/includes/hooks.inc"); - -$Hooks = array(); -// include current langauge related $Hooks object if locale file exists -if (file_exists($path_to_root . "/lang/".$_SESSION['language']->code."/locale.inc")) -{ - include_once($path_to_root . "/lang/".$_SESSION['language']->code."/locale.inc"); - $code = $_SESSION['language']->code; - $hook_class = 'hooks_'.$code; - $Hooks[$code] = new $hook_class; - unset($code, $hook_class); -} include_once($path_to_root . "/includes/access_levels.inc"); include_once($path_to_root . "/version.php"); include_once($path_to_root . "/includes/main.inc"); +include_once($path_to_root . "/includes/app_entries.inc"); // Ajax communication object $Ajax = new Ajax(); @@ -239,15 +246,13 @@ $Refs = new references(); register_shutdown_function('end_flush'); ob_start('output_html',0); -// colect all error msgs -set_error_handler('error_handler' /*, errtypes */); - if (!isset($_SESSION["wa_current_user"])) $_SESSION["wa_current_user"] = new current_user(); html_cleanup($_GET); html_cleanup($_POST); html_cleanup($_REQUEST); +html_cleanup($_SERVER); // logout.php is the only page we should have always // accessable regardless of access level and current login status. @@ -290,6 +295,8 @@ if (strstr($_SERVER['PHP_SELF'], 'logout.php') == false){ if (!$_SESSION["wa_current_user"]->old_db) include_once($path_to_root . '/company/'.user_company().'/installed_extensions.php'); + install_hooks(); + if (!isset($_SESSION["App"])) { $_SESSION["App"] = new front_accounting(); $_SESSION["App"]->init();