Sep 14th, 2009, 9:47 AM
Hmm. Try this: upgrade to the latest version, then replace your /global/session_start.php with this:
(No closing PHP tag necessary).
Then try re-logging in.
Let me know!
- Ben
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");
(No closing PHP tag necessary).
Then try re-logging in.
Let me know!
- Ben