I setup the example and have it working on my server.
I renamed the frames folder to Xframes
I created a new folder called frames
I placed three files inside of the frames folder located here
gamecharmer.com/universal/signature
...
Each of these files contain code just like the following...
<?php
$imagefile = 'http://daeworld.net/phpBB3/signatures/sig.gif';
$image = imagecreatefromgif($imagefile);
header('Content-Type: image/gif');
imagegif($image);
?>
I can view each file and they appear as GIF.
I can save each file, and I have opened all three with Notepad++ and retrieved the first 6 bytes. They are "GIF87a"
When I run Example.php, I get "GIFEncoder V2.05: 0 Source is not a GIF image!"
What should I be doing differently?
I tried using a .htaccess file so that I could rename the .php to .gif and still have it process, which worked fine on the server for the individual images, but still yeilded the same error. I then modified the example.php with an if to block ".htaccess" from being added to the array. That didn't work. I undid the changes, removed .htaccess (leaving just 3 php files) and await a hopefully working response.
Thanks!