PHP script problems... :( causing my Google Maps Mashups not to work.
Looks like Yahoo Web Hosting (my webhosting provider) has changed something, because none of my php scripts which have parameters passed to them are working. As a result most of my Google Maps Mashups have stopped working.
Am working with Yahoo Support. Hopefully things will get back to normal.
3 Comments:
I am also getting same error
Ayushi Travel
I am experiencing a similar problem with my PHP-driven commerce site. All of the searches are querystring-driven, and it appears (according to the access logs) that the underlying pages are experiencing an HTTP 302 Redirect Error that sends the user to the exact same page but carries none of the querystring parameters along.
That's my diagnosis, but of course I have no idea what the root cause is. Yahoo! Web Hosting support has yet to get back to me regarding the problem.
Its the register_globals variable which has been turned off.
So you cannot read parameters being passed to php script (via url). So if a parameter being passed is
http://somedomainname/ex1.php?user_name=test
this is how I read it now and it works whereas before I used to read/use user_name directly.
$temp_user = $_REQUEST['user_name'];
Post a Comment
<< Home