I am using Sessions with PHP 4.3.2and I kept get this warning message about the possible compatibility of using Session variables with Globals off. So, I read a bit about it and decided to try to suppress this message. I went into php.ini and changed:
session.bug_compat_42 = 1
to
session.bug_compat_42 = 0
When I bring up a page to view php info, it says that it is 'On'. If I change it back to '1', it still says 'On', which makes sense since '1' should indicate 'On'. I tried false, no, etc. to no avail
Why is this change not being read?
I still get the same error message and all I want to do is suppress it.