Jan 17th, 2010, 9:31 AM
(This post was last modified: Jan 17th, 2010, 9:32 AM by martin_undefined.)
Hi,
Just ran in to a similar set of issues myself upgrading from 20091030 to 20100101 (current version).
Similar error messages to what other posters saw:
Reverting the session_start to the old version seemed to resolve the problem.
So the new version that I downloaded that caused the problems was:
But reverting to the version below has made it work again:
Don't know what defer_init_page does - but is it the cause of this issue?
Just ran in to a similar set of issues myself upgrading from 20091030 to 20100101 (current version).
Similar error messages to what other posters saw:
Reverting the session_start to the old version seemed to resolve the problem.
So the new version that I downloaded that caused the problems was:
PHP Code:
<?php
$folder = dirname(__FILE__);
$g_defer_init_page = true;
require_once("$folder/library.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/init_page.php");
But reverting to the version below has made it work again:
PHP Code:
<?php
$folder = dirname(__FILE__);
require_once("$folder/library.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");
Don't know what defer_init_page does - but is it the cause of this issue?