Go Back   SitePoint Forums > Forum Index > Program Your Site > PHP
Newsletter FAQ Members List Calendar Mark Forums Read

New to SitePoint Forums? Register here for free!

SitePoint Sponsor
 
Reply
 
Thread Tools Display Modes
Old Nov 9, 2009, 00:27   #1
rsmaha
SitePoint Enthusiast
 
Join Date: Oct 2009
Posts: 37
php session Error

hi all,

If any one knows the meaning of following error, and way to rectify plz tell...


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
rsmaha is offline   Reply With Quote
Old Nov 9, 2009, 03:47   #2
Shrapnel_N5
SitePoint Evangelist
 
Shrapnel_N5's Avatar
 
Join Date: Oct 2009
Posts: 464
Oh that's pretty confusing one
Took me a hours to dig out. Even php source code were examined.

Make sure you don't have $_SESSION array key names matching global variable name.
E.g. if you have $_SESSION['cart'] variable and $cart variable in same script, one of them must be changed.
Name it $_SESSION['sess_cart'] and error will disappear.

also, variable declaration would help
Shrapnel_N5 is online now   Reply With Quote
Old Nov 9, 2009, 04:02   #3
rsmaha
SitePoint Enthusiast
 
Join Date: Oct 2009
Posts: 37
thanks for reply...


now that error has cleared
rsmaha is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread | Next Thread »

Thread Tools
Display Modes

 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Sponsored Links
 
Forum Jump


All times are GMT -7. The time now is 17:55.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright 1998-2009, SitePoint Pty Ltd. All Rights Reserved