Sep 14th, 2009, 10:21 AM
(Sep 14th, 2009, 9:47 AM)Ben Wrote: Hmm. Try this: upgrade to the latest version, then replace your /global/session_start.php with 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");
(No closing PHP tag necessary).
Then try re-logging in.
Let me know!
- Ben
Tnak you. I'm able to log, but haven't test any functionality. I believe will be OK.