Ask a Question related to Dreamweaver AppDev, Design and Development.
-
pixelsoul #1
installing GD for php
Why does it seem to be difficult to install GD for PHP? I have tried and just
can not seem to figure it out! does any one know where I can get some better
directions to do it then the ones on their site? I want to use this PHP
photogallery and it uses GD for the thumbnails.
Too bad they just don't make it part of PHP when you install it.
Thanks for the help if any one has some ;-)
pixelsoul Guest
-
Error 1409 installing Acrobat 8 on SystemError message 1409, installing Acrobat 8Professional on O
Have tried installing from the CD or copy files to HD and then install. Will not happen either way. Will get error message or will not open. Have... -
Help! CFMX7 stalls on installing at "Installing WebServer Connectors"
I hope someone can help with this - I am currently doing an install (fresh = no other CF versions on server) on a small production server - the... -
Installing CF on XP pro with IIS 5
I have installed CF MX, 6.1 and 7 and still not having any luck and i really need to get this sorted. After i install the software the admin page... -
Installing standalone CF7 after installing JRun4
I have installed JRun4 in developer mode. Subsequently I am attempting to install CF7 in "Multiserver configuration" but this option is dimmed out... -
Installing PHP 4.3.8
I am trying to install php 4.3.8 with the following: ../configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var... -
pixelsoul #2
installing GD for php
Why does it seem to be difficult to install GD for PHP? I have tried and just
can not seem to figure it out! does any one know where I can get some better
directions to do it then the ones on their site? I want to use this PHP
photogallery and it uses GD for the thumbnails.
Too bad they just don't make it part of PHP when you install it.
Thanks for the help if any one has some ;-)
pixelsoul Guest
-
-
Alexandro Colorado #4
Re: installing GD for php
On Tue, 29 Mar 2005 06:10:52 +0000 (UTC), pixelsoul
<webforumsuser@macromedia.com> wrote:
Which OS are you running, on linux is rather simple just compile the> Why does it seem to be difficult to install GD for PHP? I have tried and
> just
> can not seem to figure it out! does any one know where I can get some
> better
> directions to do it then the ones on their site? I want to use this PHP
> photogallery and it uses GD for the thumbnails.
>
> Too bad they just don't make it part of PHP when you install it.
>
> Thanks for the help if any one has some ;-)
>
latest and add to the extension, then go to php.ini and update the list
pointing to the library.
--
Alexandro Colorado
------------------------------
Support Engineer
InterAKT Online
[url]http://www.interaktonline.com[/url]
Tel: 40(21) 312.5312
Alexandro Colorado Guest
-
Alexandro Colorado #5
Re: installing GD for php
On Tue, 29 Mar 2005 06:10:57 +0000 (UTC), pixelsoul
<webforumsuser@macromedia.com> wrote:
Actually they do, most php full packages contain GD Libraries as an> Too bad they just don't make it part of PHP when you install it.
extension. For example if you download a bundle install like
appservnetwork.net (for windows) you would have under extensions all
modules including gdlibrary.
Also for linux you might want to visit friendsofapache.com which also lets
you install Apache-MySQL-PHP on the same installation process and usually
include the extensions.
This article even talk about php with XML XSLT support bundled into your
instalation:
[url]http://blog.bitflux.ch/archive/download_apache_php_sablotron_libxml_gd_in_one_nea t_package.html[/url]
--
Alexandro Colorado
------------------------------
Support Engineer
InterAKT Online
[url]http://www.interaktonline.com[/url]
Tel: 40(21) 312.5312
Alexandro Colorado Guest
-
David Powers #6
Re: installing GD for php
pixelsoul wrote:
GD is normally enabled by default in PHP installations on hosting> Why does it seem to be difficult to install GD for PHP?
companies. If you are running PHP on Windows, you need to enable GD in
php.ini. Locate the following line:
;extension=php_gd2.dll
Remove the semicolon from the beginning. Save php.ini, and restart your
web server (Apache or IIS).
--
David Powers
Author, "Foundation PHP 5 for Flash" (friends of ED)
Co-author "PHP Web Development with DW MX 2004" (Apress)
[url]http://computerbookshelf.com[/url]
David Powers Guest
-
pixelsoul #7
Re: installing GD for php
I have tried uncommenting extension=php_gd2.dll in php.ini and I got an error:
unknown(): Unable to load dynamic library'./php_gd2.dll' - The specified
module could not be found.
I thought I would get a more current version of GD so I installed 4.3.10 and
same problem.
I do not know where the php_gd2.dll is.
Any ideas what that error is from?
Thanks for the help by the way :)
pixelsoul Guest
-
Master Ruthless #8
Re: installing GD for php
Thats easily remedied by doing the following:
Open your php.ini file.
search for:
; Directory in which the loadable extensions (modules) reside.
extension_dir = "./"
Once found change variable to look like so:
extension_dir = "./ext"
Make sure that you uncommented the extension extension=php_gd2.dll and restart
your web server. You should be good to go then.
by changing the loadable extensions directory to ./ext you will be able to
uncomment any other extensions listed in the php.ini file due to the fact any
extra nondefault extensions are stored there when using the installer.
Master Ruthless Guest
-
pixelsoul #9
Re: installing GD for php
I tried that and now I get same error except with different file path:
unknown(): Unable to load dynamic library'./ext\php_gd2.dll' - The specified
module could not be found.
when I installed I used the php installed for windows from php.net
I noticed it saying something about extensions not included. Could I install
version 4.3.10 with out the GD extension?
I did download php_gd2.dll from another site hoping that it was all I needed
and I dropped it in php root directory but I had already changed the file path
for extensions and it still did not work.
pixelsoul Guest
-
Master Ruthless #10
Re: installing GD for php
You might want to look into the .zip package that contains more extensions plus the one your looking for.
Master Ruthless Guest
-
Alexandro Colorado #11
Re: installing GD for php
usually is under /php/extensions/php_gd2.dll
you can download from here:
[url]http://www.boutell.com/gd/faq.html[/url]
On Wed, 30 Mar 2005 04:22:50 +0000 (UTC), pixelsoul
<webforumsuser@macromedia.com> wrote:
> I have tried uncommenting extension=php_gd2.dll in php.ini and I got an
> error:
>
> unknown(): Unable to load dynamic library'./php_gd2.dll' - The specified
> module could not be found.
>
> I thought I would get a more current version of GD so I installed
> 4.3.10 and
> same problem.
>
> I do not know where the php_gd2.dll is.
>
> Any ideas what that error is from?
>
> Thanks for the help by the way :)
>
--
Alexandro Colorado
------------------------------
Support Engineer
InterAKT Online
[url]http://www.interaktonline.com[/url]
Tel: 40(21) 312.5312
Alexandro Colorado Guest
-
David Powers #12
Re: installing GD for php
Master Ruthless wrote:
That won't work on Windows. Assuming that PHP has been installed in> Once found change variable to look like so:
> extension_dir = "./ext"
C:\php, it needs to be changed to:
extension_dir = "C:\php\ext"
That's the correct path for PHP 5. If I remember correctly, extensions
in PHP 4 are in a folder called extensions. So, in the case of PHP 4, it
would be:
extension_dir = "C:\php\extensions"
--
David Powers
Author, "Foundation PHP 5 for Flash" (friends of ED)
Co-author "PHP Web Development with DW MX 2004" (Apress)
[url]http://computerbookshelf.com[/url]
David Powers Guest



Reply With Quote

