View Single Post
  #28  
Old 09-17-2012, 08:57 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 627,364
Hall of Famer is on a distinguished road
Default

Well I am not sure if this will work, but let's give it a try. Open your siggy.php file and find the following lines:

PHP Code:
header ($contentType); 
$status readfile($image); 
if(
$status == "" or $status == "false" or $status == "FALSE"){ 
    
// Reading the file failed, so show an error...      
    
header ("text/plain"); 
    die(
"Readfile appears to be disabled on your host."); 

Replace by:

PHP Code:
header ($contentType); 
$ch curl_init();
curl_setopt($chCURLOPT_URL$image);
curl_setopt($chCURLOPT_HEADER0);
curl_exec($ch);
curl_close($ch); 
Incase you get an error message, please report to me so I can troubleshoot it further. I am not quite familiar with curl functions myself, so I really cannot guarantee that it will definitely work for this time being.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote