0

I have installed PHP manager. But then when I try to access PHPinfo. I got the following screen. enter image description here

What should I do?

Lex Li
  • 60,503
  • 9
  • 116
  • 147
aherlambang
  • 14,290
  • 50
  • 150
  • 253
  • The file physically exists at the physical path? – Pekka Feb 19 '11 at 19:18
  • This is perhaps a dumb question, but do you have a file found at c:\inetpub\wwwroot\ called `phpinfo.php`? On another note (this should not cause the error you have above), but does it have `` within it? – Jared Farrish Feb 19 '11 at 19:18
  • I don't have it there... but what I would like to see the phpinfo, it should be there somewhere right? and I can't write anything into that C:\inetpub\wwwroot\ – aherlambang Feb 19 '11 at 19:23
  • Ok, so you're saying there is no file found at c:\inetpub\wwwroot\ called phpinfo.php? How can it open a file that doesn't exist in the location it's looking for? – Jared Farrish Feb 19 '11 at 19:42

1 Answers1

1

EquinoX, create a directory called C:\inetpub\wwwroot\testsite, and in that directory put a file called test.php which contains

<?php echo phpinfo(); ?>

You should then be able to run this by typing

http://localhost/testsite/test.php

in your browser window.

Scott C Wilson
  • 19,102
  • 10
  • 61
  • 83