From: yawstick <yaw...@ch...> - 2004-08-28 22:15:17
|
When I go to the photo album page there is an error saying I need the GD = libraries for the photo album to work properly. I am using PHP 4.3.6 = which supposedly has this built in. Any help would be greatly = appreciated. |
From: Steven L. <st...@tu...> - 2004-08-30 12:56:14
|
On Sat, 2004-08-28 at 18:18, yawstick wrote: > When I go to the photo album page there is an error saying I need the > GD libraries for the photo album to work properly. I am using PHP > 4.3.6 which supposedly has this built in. Any help would be greatly > appreciated. Please send a link to your phpinfo file. -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University http://phpwebsite.appstate.edu |
From: yawstick <yaw...@ch...> - 2004-08-31 00:57:48
|
Subject: Re: [Phpwebsite-developers] photo album errors > On Sat, 2004-08-28 at 18:18, yawstick wrote: > > When I go to the photo album page there is an error saying I need the > > GD libraries for the photo album to work properly. I am using PHP > > 4.3.6 which supposedly has this built in. Any help would be greatly > > appreciated. > > Please send a link to your phpinfo file. > > I hope this is what you meant http://66.191.183.140/info.php It doesn't appear to have the GD libraries. I installed PHP from the ports collection on FreeBSD and did not have any control over what the options were. The error msg said that PHP 4.3.0 and above should have the GD libraries already built in. I guess maybe you still have to enable them. Thanks Paul |
From: yawstick <yaw...@ch...> - 2004-09-01 00:09:38
|
> > > On Sat, 2004-08-28 at 18:18, yawstick wrote: > > > When I go to the photo album page there is an error saying I need the > > > GD libraries for the photo album to work properly. I am using PHP > > > 4.3.6 which supposedly has this built in. Any help would be greatly > > > appreciated. > > > > Please send a link to your phpinfo file. > > > > > I hope this is what you meant > http://66.191.183.140/info.php > > It doesn't appear to have the GD libraries. I installed PHP from the ports > collection on FreeBSD and did not have any control over what the options > were. The error msg said that PHP 4.3.0 and above should have the GD > libraries already built in. I guess maybe you still have to enable them. > Are there any options other than reinstalling PHP, such as including in php.conf |
From: yawstick <yaw...@ch...> - 2004-09-01 14:21:09
|
> > > > > > On Sat, 2004-08-28 at 18:18, yawstick wrote: > > > > When I go to the photo album page there is an error saying I need the > > > > GD libraries for the photo album to work properly. I am using PHP > > > > 4.3.6 which supposedly has this built in. Any help would be greatly > > > > appreciated. > > > > > > Please send a link to your phpinfo file. > > > > > > > > I hope this is what you meant > > http://66.191.183.140/info.php > > > > It doesn't appear to have the GD libraries. I installed PHP from the ports > > collection on FreeBSD and did not have any control over what the options > > were. The error msg said that PHP 4.3.0 and above should have the GD > > libraries already built in. I guess maybe you still have to enable them. > > > > Are there any options other than reinstalling PHP, such as including in > php.conf > thanks for your help, I finally got it all working. I tried compiling PHP 4.3.8 but it complained with mysql=/usr/local and also would not compile with-xml. I was using the same ./configure command as was reported with phpinfo plus the gd stuff and just wouldn't work I ended up doing a make from the ports dir for PHP 4.3.6 where I got to pick the options and that worked. If anyone can shed some light on this I would appreciate it. If not I do have php-4.3.6 installed with the options I needed and it is working. thanks again Paul |
From: Steven L. <st...@tu...> - 2004-08-31 14:21:23
|
On Mon, 2004-08-30 at 21:00, yawstick wrote: > Subject: Re: [Phpwebsite-developers] photo album errors > > > > On Sat, 2004-08-28 at 18:18, yawstick wrote: > > > When I go to the photo album page there is an error saying I need the > > > GD libraries for the photo album to work properly. I am using PHP > > > 4.3.6 which supposedly has this built in. Any help would be greatly > > > appreciated. > > > > Please send a link to your phpinfo file. > > > > > I hope this is what you meant > http://66.191.183.140/info.php > > It doesn't appear to have the GD libraries. I installed PHP from the ports > collection on FreeBSD and did not have any control over what the options > were. The error msg said that PHP 4.3.0 and above should have the GD > libraries already built in. I guess maybe you still have to enable them. You are correct. This message means that the source for php 4.3 and above ships with the GD libraries included and most builds have it enabled by default. I do know for a fact the FreeBSD does not have it enabled by default. So you will need to recompile and enable (--with-gd) in your configuration. More info on GD: http://www.php.net/image -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University http://phpwebsite.appstate.edu |