Hello,
I have encountered the following error message :
Warning: Unknown(): Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively. in Unknown on line 0
Now I've never seen that before and it's a fairly unhelpful message (well I think so anyway). My session values are the same as I use on many sites and I don't get this error. These are the session values :
<?
session_save_path('/home/sites/domain/public_html/pathsess');
session_start();
if ($sess_id=="") {
session_register('sess_id');
session_register('order_details');
$sess_id=session_id();
}
extract ($_GET); extract ($_POST)
?>
The weird thing is that it doesn't stop the site from working exactly as it should.
Any help/advice/pointers is much appreciated.
Thanks