by admin » Fri Feb 05, 2010 4:52 pm
Are you running on a Windows server instead of a Linux server?
If so, you Windows is not setup with all the Linux defaults. This would cause the PHP script syntax to run differently.
There two way to fix your problem:
1. Move the scripts to a Linux server
2. You have have to edit all files and change <?= you see to <?php echo
for example
<?=$WIN_FIRST?> to <?php echo $WIN_FIRST ?>
<?= is a shortcut for <?php echo which is not understood by your Window server setting
In my next release i will make this change to accommodate the Windows servers