Dynamic sig problem

Computer builds, hardware and software discussion or troubleshooting, including peripherals. Essentially a general place to talk about desktop computers.
Locked
Anonymous

Dynamic sig problem

Post by Anonymous »

Ive got apache and php on my slackware box.
server is override all.

made folder called "sigs" for fake sigs and put .htaccess in there with the force php line, and then made a fake sig.png with these contents:

<?php
header("Content-type: image/png");
header("Cache-Control: no-cache, must-revalidate, no-store");
$im = imagecreatefrompng("http://skullnet.darktech.org/webpics/sheepdog.png");
$color = imagecolorallocate($im, 255, 255, 255);
$px=100
$py=100

$string = "testing";
imagestring($im, 2, $px, $py, $string, $color);
imagepng($im);
imagedestroy($im);
?>

-----------------

So now if i go: http://skullnet.darktech.org/sigs/sig.png
it should work yes?

cos i just get a blank page.

any ideas?

Archived topic from Iceteks, old topic ID:2459, old post ID:20715
User avatar
Red Squirrel
Posts: 29209
Joined: Wed Dec 18, 2002 12:14 am
Location: Northern Ontario
Contact:

Dynamic sig problem

Post by Red Squirrel »

hmm weird. Put a file with invalid php in there to see what happends (see if there's a parse error, or if it just spits out the code, or whatever)

Archived topic from Iceteks, old topic ID:2459, old post ID:20716
Honk if you love Jesus, text if you want to meet Him!
Locked