Helping ordinary people create extraordinary websites!

Go Back   Web Development Forum > Website Programming > Server-Side Scripting
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-06-2009, 03:10 AM
Junior Member
 
Join Date: Jul 2009
Posts: 3
Default why it isn't working online eventhough it works locally

Hello everyone,
i don't know if what i'm going to state is a problem in my code or something else,
the following is a code that i'm using :

$shgleh = "http://website_address/supports/gamemaster.php?id=".$userid;
$res = file_get_contents($shgleh) ;
$objDOM = new DOMDocument();
$objDOM->loadXML($res);
$finalarray = array() ;
$root = $objDOM->childNodes->item(0);
$characters = $root->childNodes->item(3);
$rating = $root->childNodes->item(0)->nodeValue;
for($i=0; $i<$characters->childNodes->length; $i++)
{
$tag = $characters->childNodes->item($i);
$finalarray[$i] = $tag->nodeValue;
}


NOTE : the returned value of $shgleh an xml string

the problem is that when i'm using this code on my local environment(which is the same as the online environment) everything goes well and that data being retrieved but when uploading this code to the online environment i don't get any data and the page keeps blank!!!!!
is there anything needs to be changed before uploading this piece of code...???
any suggestions
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 11-30-2009, 08:06 PM
Senior Member
 
Join Date: Jul 2009
Location: www.shoesbuyonline.com
Posts: 134
Send a message via MSN to gengye
Default

I think this might be an issue on permissions. You might have not enough permissions to perform a script on your online environment.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

All times are GMT -5. The time now is 09:28 AM.


Website Design by Ducani Media Group
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.