View Single Post
  #4  
Old 03-01-2009, 11:11 AM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 124,475
Tequila is on a distinguished road
Default RE: Images not showing

Ok Brandon, how about changing
PHP Code:
if($name != "" and $imageurl != ""){
    
//We've got a live one here
    
$imageInfo pathinfo($imageurl);
    
$contentType 'Content-type: '.$extList$imageInfo['extension'] ];
    
header ($contentType);
    
readfile($imageurl);


to
PHP Code:
if($name != "" and $imageurl != ""){
    
//We've got a live one here
    
$imageInfo pathinfo($imageurl);
    
$contentType 'Content-type: '.$extList$imageInfo['extension'] ];
    
header ($contentType);
    
file_get_contents($imageurl);


Would that work if I cannot get the readfile() function to work?
Reply With Quote