Tuesday, November 03, 2009

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.

Labels: ,

3 Comments:

At 12:49 PM, Blogger AyushiTravel said...

I am also getting same error

Ayushi Travel

 
At 12:01 PM, Blogger Jeff Williamson said...

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.

 
At 12:21 PM, Blogger Virender Ajmani said...

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