Sep 22nd, 2009, 7:57 PM
Hi Nikita,
Yeah... I think I know what the problem is. Edit your /global/session_start.php file and change it to this:
Let me know if that fixes it.
- Ben
Yeah... I think I know what the problem is. Edit your /global/session_start.php file and change it to this:
PHP Code:
<?php
if ($g_session_type == "database")
$sess = new SessionManager();
if (!empty($g_session_save_path))
session_save_path($g_session_save_path);
session_start();
header("Cache-control: private");
header("Content-Type: text/html; charset=utf-8");
$folder = dirname(__FILE__);
require_once("$folder/library.php");
Let me know if that fixes it.
- Ben