I tried this in the Install forum, but no luck, so I hope to try here.
I've got OmniHTTPd running and PHP works fine (PHP comes with OmniHTTPd - I have it running my forum system, which uses mySQL so there are no problems with PHP as such), but I'm wanting to modify a script which uses php_gd.dll (it's the dynamic sig script, if you post in FYAD you'll know what's happened).
OmniHTTPd doesn't come with any extensions so I downloaded PHP from php.net and unziped the extension DLL's to:
c:\httpd\php\extensions
Now I'm aware I have to edit php.ini, so here's what I set:
register_globals = On
;include_path = ".;c:\php\includes"
;doc_root =
;user_dir =
extension_dir = "c:\httpd\php\extensions\" (even putting .; & removing \ didn't work)
(further on in the file, dynamic libraries - uncommented php_gd.dll)
extension=php_gd.dll
Regardless of this setup I still get a popup message when I load a PHP page saying the following:
Unable to load dynamic library 'c:\httpd\php\extensions\php_gd.dll' - The specified module could not be found.
I'm aware that php_gd2.dll has been made (updated version) but I have php_gd.dll and setting it to be php_gd2.dll didn't work either.
Do I need to set include path to be something, along with doc_root/user_dir (considering php already works well)? I've looked on Google but all I get is stuff I've already done (set extensions dir etc).
Any ideas?
Thanks in advance.