abazovicMirza Posted July 7, 2006 Share Posted July 7, 2006 Suse 10I installed apache2, apxs, mysql, ... and php4 as module also php4-gd (gd) php4-mysql etc .. all using yaststarted and stoped apache2 server but my phpinfo() shows all the time this './configure' '--prefix=/usr' '--datadir=/usr/share/php' '--mandir=/usr/share/man' '--bindir=/usr/bin' '--libdir=/usr/share' '--includedir=/usr/include' '--sysconfdir=/etc' '--with-_lib=lib' '--with-config-file-path=/etc' '--with-exec-dir=/usr/lib/php/bin' '--disable-debug' '--enable-inline-optimization' '--enable-memory-limit' '--enable-magic-quotes' '--enable-safe-mode' '--enable-sigchild' '--disable-ctype' '--disable-session' '--without-mysql' '--disable-cli' '--without-pear' '--with-openssl' '--with-apxs2=/usr/sbin/apxs2-prefork' 'i586-suse-linux'note '--without-mysql' but mysql support worksServer API Apache 2.0 HandlerI have error log from apache Unable to load dynamic library '/usr/lib/php/extensions/gd.s' ... undefined symbol gdImagePngCtx in UnknownPlease I want to enable gd I have all packages installed and restarted server and I think that problem is in Unable to load dynamic library '/usr/lib/php/extensions/gd.s' ... undefined symbol gdImagePngCtx in UnknownHow to solve this Quote Link to comment https://forums.phpfreaks.com/topic/13936-how-to-enable-gd/ Share on other sites More sharing options...
Daniel0 Posted July 8, 2006 Share Posted July 8, 2006 Add something like: [code]extension=gd.so[/code] in your php.ini file if you use Linux, else I think it's [code]extension=php_gd.dll[/code] or something like that. Quote Link to comment https://forums.phpfreaks.com/topic/13936-how-to-enable-gd/#findComment-54797 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.