Thanks for the help and information.
I did have the extension_dir properly set in the php.ini file.
And I was restarting the service with every change I made.
What I finally did, that appeared to help was:
I added 'full/path/to/php' to my environment PATH variable
and then rebooted the system. As A
PHP needs to know where the extensions are located, and when you make
changes to php.ini you have to restart the web server in order for the
changes to take place. Under ISAPI the php.ini file is only read during
startup and not on each page reqyues as is the case with CGI.
Getting php to know whe
EMAIL PROTECTED]
Subject: Re: [PHP-WIN] PHP5 ISAPI Extensions
Frank,
That looks good on paper, but... I am loading the extension from php.ini as
you describe.
When I run the site with php-cgi.exe, running phpinfo() shows me that gd is
installed.
When I run the site with php5isapi.dll and then run phpinfo
Frank,
That looks good on paper, but... I am loading the extension from php.ini as
you describe.
When I run the site with php-cgi.exe, running phpinfo() shows me that gd is
installed.
When I run the site with php5isapi.dll and then run phpinfo() it doesn't
appear to be loaded.
I have copied the ph
When you use ISAPI you can only load extensions from php.ini with the line
extension=php_gd2.dll
When using CGI, FastCGI or CLI you can load extensions from the script
with code like
dl("php_gd2.dll");
- Frank
> I am using w2k3 with iis6 and all of the reported "hotfixes".
> I have just instal
I am using w2k3 with iis6 and all of the reported "hotfixes".
I have just installed PHP5 and have successfully configured everything to
work correctly using the php-cgi.exe configuration.
However, I would like to use the php5isapi.dll configuration. The only
problem I seem to have is getting the ph