I tried to start php on my snow leopard server.

The file is

<?php phpinfo() ?>

I turned on php and put the file in /Library/WebServer

I get the following two errors in the log:

(8)Exec format error: exec of '/Library/WebServer/test/index.php' failed
Premature end of script headers: index.php

What can I do to fix this?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I believe you need a ; after phpinfo(), and to actually echo (display) the information:

<?php echo phpinfo(); ?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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