Re: Warning regarding session side-effect : puzzle



Jerry Stuckle wrote:
<snip />

As you surmised, this is because your php.ini file has:

session.bug_compat_42 = 1

On production systems, you should always be running with

display_errors = off

in your php.ini file, which will stop this notice from occurring, also. (display_errors should be on in development servers).


thanyou very much jerry for the confirming whats going on.
.