Re: [PHP] imagegif() unable to open temporary file

2005-07-05 Thread Richard Lynch
On Tue, July 5, 2005 1:22 pm, James said: > I would then guess the permission error is with the directory stated. > > ie /path/to/. Have you tried modifying the directory the script resides in > to allow public write access? Woof. There is NO WAY that you should be required to have a world-writab

Re: [PHP] imagegif() unable to open temporary file

2005-07-05 Thread James
05, 2005 3:28 PM Subject: [PHP] imagegif() unable to open temporary file Hi, I'm having a problem with imagegif() - it is apparently unable to open the temporary file it needs to write to: Warning: imagegif(): Unable to open temporary file in /path/to/script.php on line 192 I am using php

[PHP] imagegif() unable to open temporary file

2005-07-05 Thread kristina clair
Hi, I'm having a problem with imagegif() - it is apparently unable to open the temporary file it needs to write to: Warning: imagegif(): Unable to open temporary file in /path/to/script.php on line 192 I am using php 4.3.10 compiled with --with-gd. php was compiled using httpd-2.0.52, but apac

RE: [PHP] ImageGIF

2001-09-07 Thread Rasmus Lerdorf
Install a version of GD with GIF support. > No, its not listed. What do I need to do? > > J > > > > -Original Message- > > phpinfo() also lists which image types your GD supports. Does it list > GIF? Later versions do not have GIF support. > > -Rasmus > > -- PHP General Mailing List

RE: [PHP] ImageGIF

2001-09-07 Thread Joseph Bannon
No, its not listed. What do I need to do? J -Original Message- phpinfo() also lists which image types your GD supports. Does it list GIF? Later versions do not have GIF support. -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: [PHP] ImageGIF

2001-09-07 Thread Rasmus Lerdorf
> ImageGif: No GIF support in this PHP build in counter.php > > I get this error message when I try to run this code... > > Header("Content-Type: image/gif"); > $im = ImageCreate(500, 75); > $red = ImageColorAllocate($im, 255, 0, 0); > ImageFill($im, 100, 100, $red); > ImageGIF($im); > > I install

[PHP] ImageGIF

2001-09-07 Thread Joseph Bannon
ImageGif: No GIF support in this PHP build in counter.php I get this error message when I try to run this code... Header("Content-Type: image/gif"); $im = ImageCreate(500, 75); $red = ImageColorAllocate($im, 255, 0, 0); ImageFill($im, 100, 100, $red); ImageGIF($im); I installed GD. When I us

RE: [PHP] ImageGif: No GIF support in this PHP build

2001-03-01 Thread Jack Dempsey
sorry, clarification, not "only" PNG, but they've moved away from GIF... ~jack -Original Message- From: Jack Dempsey [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 5:27 PM To: PHP General List; Jimmy Bäckström Subject: RE: [PHP] ImageGif: No GIF support in

RE: [PHP] ImageGif: No GIF support in this PHP build

2001-03-01 Thread Jack Dempsey
what version do you have? gd > 1.3 (if memory serves correct) only supports PNG ~jack -Original Message- From: Jimmy Bäckström [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 5:20 PM To: PHP General List Subject: [PHP] ImageGif: No GIF support in this PHP build Shu! Whe

[PHP] ImageGif: No GIF support in this PHP build

2001-03-01 Thread Jimmy Bäckström
Shu! When I try to use the function ImageGif() I get the following error: Warning: ImageGif: No GIF support in this PHP build... I'm using win2k with php4 width the gd module enabled in php.ini What can I do to make this problem go away? Thanks in advance /Broder