Click to See Complete Forum and Search --> : [Resolved] PHP4 + IIS6/Win2K3 configuration


mobiuz
04-20-2005, 09:55 PM
I've just installed PHP4 (ISAPI) on IIS6/Win2K3 environment by following the instructions from the php.net documentation. To test the installation, I've created index.php with the following line:

<? phpinfo(); ?>

It works except for a couple of things that worries me. From the output I've noticed the following:

1) The PHP and Zend logo does not show up. Anyone know why this is? PHP version = 4.3.11

2) Configuration File (php.ini) Path is pointing to "C:\Windows". I've got my php.ini residing in the PHP folder ("C:\php4") and I have added that folder into the Windows path environment variable. How do I change it so PHP looks for the ini file in the right place?

Thanks in advance for any help you can provide with this one.

mobiuz
04-21-2005, 01:52 PM
Solved the issue with the config file path. I've created PHPRC env variable in windows and that fixed it. Still having issues with the PHP and Zend logos not showing up and "expose_php" is set to "On". Any ideas?

mobiuz
04-21-2005, 02:24 PM
Great solved the logo issue now too. Realized that the PHP and Zend logos are retrieved via a get type request. So I started experimenting passing get parameters and found that all the get requests are being ignored.

I'm using ISAPI Rewrite with IIS6 and the culprit was that I forgot to take into account get parameters into the rewrite rules.

Hehe silly me. I declare this thread resolved.