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
register_globals = off (error reporting set to highest possible at runtime)
I found a few other people that were having this problem, but many of them were related to using session_register. I'm using $_SESSION['variable'] = 'whatever' to set all of my session variables and unset($_SESSION['variable']) instead of session_unregister, so I'm uncertain as to why this happens, and only on certain pages.
We've tried setting the php.ini settings described in the warning to every possible combination, and the warning still appears. I'd rather know what is causing the warning and fix it, rather than just masking it.
-- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php