Question : FastCGI Error Displaying PHP Page via IIS6 on Windows Server2003

I installed the latest version of PHP on a windows 2003 server.  I am using IIS6.  I had this working but now I am receiving the below error.  

Any ideas on how to resolve?
Attachments:
 
FastCGI Error
FastCGI Error
 

Answer : FastCGI Error Displaying PHP Page via IIS6 on Windows Server2003

Try this:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
	$('.aboutme ul').hide();
	$('.aboutme').hoverIntent(aboutover, aboutunder);	
});

function aboutover() {
	 $('.mediacenter ul, .events ul, .fanclub ul').hide();
     if (jQuery.browser.msie) {
     $('.aboutme ul').show();
     } else {
      $('.aboutme ul').slideDown();
     }
   }
function aboutunder() {
	alert("ascasc")
     if (jQuery.browser.msie) {
     $('.aboutme ul').hide();
     } else {
     $('.aboutme ul').slideUp();
     }
   }
</script>
<li class="aboutme" style="width: 201px;">ascasc
<ul>
<li>something</li>
<li>something</li>
<li>something</li>
</ul>
</script>
Random Solutions  
 
programming4us programming4us