i tried to install this software, and it didnt work.
i resolved the issue bu changing the first line of the code in every file:
from:
<?
to:
<?php
it seems to apache or php version specific (i'm not an expert on this but the solution i offered worked)
OK, that is known as php short tags. you can fix this easily by editing your php.ini file as below:
short_open_tag = On
That said, you did the right thing for future installs by changing the php open tag.