-
Posted to
PHP Community
by
Alex.W474
on
07-16-2008, 6:29 PM
You do not need to uninstall anything, all you need is to configure the system properly.
Please create a small PHP file with the following content:
<?php phpinfo();
Open it and veryfy that you corrected the right PHP.ini (search for Loaded Configuration File entry).
-
Posted to
IIS 7 - FastCGI Module
by
Alex.W474
on
07-07-2008, 5:26 AM
Microsoft Windows Service Pack 1 does not automatically enable the
FastCGI module for already installed IIS. To enable it, turn the CGI
feature off, and then turn it on again.
-
Posted to
PHP Community
by
Alex.W474
on
07-04-2008, 6:10 AM
First, you need to check that the Web server is up and running.
What you see when you type http://localhost/ in your browser? You should see the IIS welcome page. Then you can try to create the "phpinfo.php" file with the following content:
<?php phpinfo();
and navigate the brower to http://localhost/phpinfo.php, the PHP ...
-
Posted to
PHP Community
by
Alex.W474
on
07-03-2008, 6:20 AM
Well, on my Windows XP Pro I've created folder c:\inetpub\wwwroot\test, created application in IIS management console, set 404 error page to /test/404.php and created file:
<?php
header('HTTP/1.1 404 Not Found');
echo "test";
Then open http://localhost/test/asdf and get "test" content.
Firebug ...
-
Posted to
PHP Community
by
Alex.W474
on
07-02-2008, 3:58 PM
How do you know that server does not return content after the response?
Try to disable the IE Show Friendly Errors option and try again: http://www.witsuite.com/support/knowledge-base/general/disable-ie-friendly-error-messages.php
-
Posted to
PHP Community
by
Alex.W474
on
07-02-2008, 3:37 PM
> does this include php-flags / php_values like safemode or magic_quotes_gpc
Yes.
For IIS 5.1, 6.0 FastCGI handler and IIS 7.0 FastCGI module.
-
Posted to
PHP Community
by
Alex.W474
on
07-02-2008, 10:40 AM
In the C:\WINDOWS\system32\inetsrv\fcgiext.ini you can create different configurations per site:
http://learn.iis.net/page.aspx/248/configuring-fastcgi-extension-for-iis60/
-
Posted to
FastCGI Handler
by
Alex.W474
on
07-02-2008, 6:18 AM
It seems that IIS PHP FastCGI does not support links like
http://localhost/file.php/any/path/here
So the problem is not wordpress specific.
-
Posted to
FastCGI Handler
by
Alex.W474
on
06-27-2008, 4:45 AM
I've set "Integrated Windows Authentication" and open http://localhost/1/1.php in FireFox (it is configured to send NTLM credentials to localhost) and check the headers with FireBug: "X-JSON: test" header is on the place. So my sample works well with NTML authentication.
Regards,
Alex
-
Posted to
FastCGI Handler
by
Alex.W474
on
06-26-2008, 9:42 AM
I test all my projects with IIS FastCGI and never have any issue related to headers.
So, at least the simple example that I've posted works on your computer?