Quote:
Originally Posted by ChopBam
Hey, I just installed this mod and I'd like to use the extension .gif instead of .png. Is there any way I can do this and have it work? Thanks.
I'm willing to edit PHP files. I've already edited the template to display the .gifs.
|
Since png didn't work for me (due to a zlib error), I had to change to gif. The error I got was:
Fatal error: imagepng() [function.imagepng]: gd-png: fatal libpng error: zlib error in
/modules/e-steki_smilie_creator.php on line
34
It is something with my zlib that's not working...
To change this, I did edit modules/e-steki_smilie_creator.php:
Find this:
PHP Code:
header("Content-Type: image/png");
imagepng($placeholder,"",100);
Change to:
PHP Code:
header("Content-Type: image/gif");
imagegif($placeholder,"",100);