Topic: PHP files are not parsed/interpreted

I ran a test to make sure php works, and it does.

I saved the following in test.php

<?php

phpinfo();

?>

and it works fine, so my php installation is okay. But when I run chevreto, it is not parsed. I checked the code and saw that it uses only <? instead of <?php so it seems that is causing the problem. I'm running Apache on a Fedora 12 server.

Thumbs up

Re: PHP files are not parsed/interpreted

Do you own the server, or better said can you access your php.ini?
If so enable php shorthand by findig the config varible called

short_open_tag

put it like so:

short_open_tag = On

And chevereto will work.

If you can't mod you php.ini post back here.

--Gamerlv

Thumbs up

Re: PHP files are not parsed/interpreted

Hello, yes I have root on the server.

I made the change in php.ini and it works now. smile

Thanks.

Thumbs up

Re: PHP files are not parsed/interpreted

Glad to hear it.

If there are any more problems that pop-up, just make a new thread.

--Gamerlv

Thumbs up