icon Get the most out of Surmunity, read our tips here! Need an interesting blog to read? You've got to read the Surpass Blog! | Welcome! Please register to access all of our features.
Old June 11th, 2006, 7:16 PM   #1 (permalink)
Registered User
Seasoned Poster
 
Joined in Apr 2004
49 posts
Gave thanks: 0
Thanked 0 times
php blank page

I recently had php and the OS reinstalled on my server and the following code that used to work now just shows a blank white page:

<?

$id = "1";

$view = "gallery";

/* DO NOT EDIT BELOW THIS LINE */

$get_string = ""; foreach ($HTTP_GET_VARS as $key => $value) $get_string .= "&" . rawurlencode ($key) . "=" . rawurlencode ($value);

readfile ("http://bellavitaphoto.net/gallery/display.php?id=$id&view=$view$get_string");

?>

I assume something needs to be changed in the php.ini file to get this to work again? Any ideas?
dotmatr is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old June 11th, 2006, 8:41 PM   #2 (permalink)
Registered User
Comfy Contributor
 
Joined in Oct 2004
124 posts
Gave thanks: 1
Thanked 0 times
$HTTP_GET_VARS is like, php 3? These servers probably use PHP 5, try $_GET (standard since PHP 4, for $HTTP_POST_VARS it is $_POST)
marlov is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old June 11th, 2006, 8:49 PM   #3 (permalink)
Registered User
Seasoned Poster
 
Joined in Apr 2004
49 posts
Gave thanks: 0
Thanked 0 times
well shoot..thats all it was, thanks marloy!

Last edited by dotmatr; June 11th, 2006 at 8:52 PM..
dotmatr is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old June 11th, 2006, 8:52 PM   #4 (permalink)
Registered User
Comfy Contributor
 
Joined in Oct 2004
124 posts
Gave thanks: 1
Thanked 0 times
Surpass is, if I am correct, updateing they're servers.

$HTTP_GET_VARS is outdated anyway, try the new vars.
marlov is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

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

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