This is the first time I've installed PHP and I am having a problem with getting extensions to work.
Here is my setup:
Win 2003 Server
IIS 6
MS SQL Server
PHP 5.0.2
PHP is up and running, but I modifed to the php.ini file to load the following two extensions:
extension=php_gd2.dll
extension=php_mssql.dll
and I have set the extension path as follows:
extension_dir = "<drive>:\PHP\ext"
But ... nothing. No errors, it just does not work. Also when I run
<?phpinfo();?>
It returns wrong information. It is reporting the wrong path for the php.ini file (I've already verified that I only have one php.ini file on the system) and the wrong extension_path (the path it show does not even exist).
Also, if I run
<?var_dump(gd_info());?>
, I get the following error:
Fatal error: Call to undefined function gd_info()
Which brings up another problem. I've turned short_open_tag =Off, BUT <? still works. Shouldn't this only allow for <?php ... ?> to work?
I've restarted both the specific web site and the IIS services, but neither one seems to read the new php.ini file.
PS we can not run Apache.
Any help would be great!
Thanks