physh Posted June 22, 2006 Share Posted June 22, 2006 Hello. I was wondering if anyone could please help me solve this problem. when i have move one site to a new server this piece of code stopped working. The wierdest part is that in firefox it lets me download a blank php file instead of executing it.[code]$topimg = "./i/tops/demo.jpg";$img=ImageCreateFromJpeg($topimg);// this line casues the problem$rgb = ImageColorAt($img, 1, 1);echo '<html><head></head><body bgcolor="#'.dechex($rgb).'"><img src="'.$topimg.'" border=0></body></html>';imagedestroy($img);[/code]at first i thought that GD was not installed bu thats not the case:var_dump(gd_info());[code]["GD Version"]=>"bundled (2.0.23 compatible)" ["FreeType Support"]=> bool(true) ... ["JPG Support"]=> bool(true)[/code] Link to comment https://forums.phpfreaks.com/topic/12644-imagecreatefromjpeg/ Share on other sites More sharing options...
zq29 Posted June 22, 2006 Share Posted June 22, 2006 Have you tried assigning an absolute path to $topimg instead of a relative one? Link to comment https://forums.phpfreaks.com/topic/12644-imagecreatefromjpeg/#findComment-48557 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.