When I type:
php -info
I get this error message:
Could not open input file: o
I have php 5.4 installed. Trying to find info to configure IIS.
When I type:
php -info
I get this error message:
Could not open input file: o
I have php 5.4 installed. Trying to find info to configure IIS.
This was easy. Found the answer in an IIS forum. http://forums.iis.net/t/1189386.aspx?Installing+PHP+on+IIS7
The -info flag has been depreciated. Its just -i now
Try php -i
.
php -info
will be interpreted as php -inf o
so cause that error.