Quote:
Originally Posted by odln018
Ok, got that resolved, but am now getting the following error:
|
I got the same error but quickly figuered out the problem.
The author has used the short hand <? instead of <?php in the beginning of the PHP files.
This mode is not supported by many installations, and one should always use <?php when programming in PHP.
So, to fix your problem. Go in to all PHP-files in this modification and change the first line to read
<?php
instead of
<?
It seems like the author has ommited the ?> at the end of the files as well. This is poor practise.
Otherwise, top ace!