Jump to content

Server interprets php file as png pic file?


All4172

Recommended Posts

I use the same exact script on a few different servers, but on the my new server I just put it on, in the title bar at top of browser it'll say "name.php (PNG Image 30x10 pixels)".

Only problem is I don't have any PNG images in the script at all.  On this server its in PHP Safe Mode, would that make a difference?
I'm not seeing the problem.. your creating an image.. and it say's PNG in title bar.. it's a png so whats wrong?
sorry probs just me having long slow day at work..

EDIT: must have clicked to reply before he had edited out his code :)
[quote author=shocker-z link=topic=108295.msg435554#msg435554 date=1158421034]
I'm not seeing the problem.. your creating an image.. and it say's PNG in title bar.. it's a png so whats wrong?
sorry probs just me having long slow day at work..
[/quote]

He sent a wrong header.
Looks like I spoke too soon.  At the bottom portion I have the headers like this:

[code]
switch ($a) {
default:
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); 
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header ("Pragma: no-cache"); // HTTP/1.0
header ("Content-type: image/png");
$im = @ImageCreate (30, 10)
or die ("Cannot Initialize new GD image stream");
$white = ImageColorAllocate ($im, 255, 255, 255);
$trans = imagecolortransparent($im,$white);
ImagePng ($im);
incrementVisits ($HTTP_REFERER,$REMOTE_ADDR);
break;
case "vs":
print viewStatus($PHP_SELF,$password);
break;
case "rc":
print resetCounter($pageID,$PHP_SELF,$password);
break;
case "dc":
print deleteCounter($pageID,$PHP_SELF,$password);
break;
}
[/code]

It displays correctly on all other servers, but this one it seems to have trouble with either the imagecreate or the png header.  Any advice?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.