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
i dont' know if any of you 4.3ers have run into this yet. but its frustrating me.
I cannot figure out from the description what will cause my script to throw this...
nor can i seem to turn the error off in php.ini by setting session.bug_compat_42 and/or session.bug_compat_warn to 0 or Off or blank or false. (yes im restarting apache)
has anyone determined what things do and do not throw this error
my actual script is too long to post here and since i can't figure out whats up i can't reduce my case to something managable...
i use only calls like
$var_from_session = $_SESSION['my_var'];
and
$_SESSION['my_var'] = 'value';
when i try and remove a session var i've been to do this just to make the error go away, but it won't
$SESSION['var'] = null;
unset($SESSION['var']);