Beginner's question, so please bear with me.

I installed XAMPP under Windows XP, and PHP seems to work: when I click "phpinfo()" in http://localhost/xampp/ the complete list of settings is shown. However, when I check file:///C:/xampp/htdocs/index.php I get an error message saying "Something is wrong with the XAMPP installation :-(". Apparently the PHP code in this file is not being executed. Any ideas?

TIA
Steven

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

When you access http://localhost/xampp/index.php then your request is processed by apache web server, which invokes php interpreter.

Accessing the same file directly (via file:///C:/xampp/htdocs/index.php) does not go through the apache web server and that is why no php interpreter is invoked.

link|improve this answer
Thanks a million! – stevenvh Aug 8 '10 at 6:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.