Jump to content

GD2 Problems? This may help...


Browzer

Recommended Posts

Using Apache 2.2.4 and PHP 5.2.1 on Windows, I was getting the "Call to undefined function imagecreate()" error.  I solved the problem, but the solution for my situation was not documented anywhere on the web, so I am posting it here.

 

The root of the problem is that the GD2 library is not installed.  The first thing to do is make sure the GD2 library.  Your php.ini file should have these lines

 

extension_dir = "C:\PHP\ext"

extension=php_gd2.dll

 

It seems like this solves 99% of the cases...but not mine!  The real problem was that PHP improprely edited Apache's httpd.conf file during installation.  MAKE SURE the httpd.conf file has a clean reference to PHP that looks something like:

 

# For PHP 5:

LoadModule php5_module "c:/php/php5apache2.dll"

AddType application/x-httpd-php .php

 

# configure the path to php.ini

PHPIniDir "C:/php/"

 

In my case, all that text was on a single line with some odd characters (improper newlines?) in there.  I think this was caused by a problem in the installation.  Once I cleaned it up to look like the lines above, it worked.

 

Anyway, hopefully this will save people some time.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.