We are implementing standard out-of-the-box PHP 5.0.3 on a Windows 2000 and Windows 2003 boxes as an ISAPI extension.
But almost anytime I run a PHP script - or any file named *.php, the only output I get is "No input file specified."
The only exception is a file called test.php that contains one line: <?php phpinfo(); ?> which gives me the configuration info. Meanwhile my hello.php script:
<?php
echo "Hello, World!";
?>
gives me "No input file specified."
What's going on and more importantly, how do i fix it?
Jeof