Description:
------------
Trying to install PHP 5 on XP with IIS. The following page runs once, then fails when refresh is clicked. If I close the browser and try the page again, the page loads once, then fails on refresh.
I installed PHP exactly the way the php.net instructions told me to do. It is a brand new machine with a clean install of Windows XP. Also, I am able to stop and start the web site through the IIS Management console. But, IIS crashes if I try to stop and start World Wide Web Services from the services management console. Is PHP 5 just completely unstable in a Windows XP/IIS 5 environment? Any comments would be appreciated.
Reproduce code:
---------------
<?php
session_start();
?>
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<p>
The browser you're using is
<?php echo $_SERVER['HTTP_USER_AGENT']; ?>
</p>
<p>
<!-- test the browscap setup -->
Your browser's capabilities are: <br/>
<pre>
<?php print_r(get_browser(null, true)); ?>
</pre>
</p>
<?php phpinfo(); ?>
</body>
</html>
Expected result:
----------------
It should work more than once without closing and opening my web browser.
Actual result:
--------------
Page just attempts to load.
---------------------