GJH - 2008-01-06

Hi,

First of all, thanks for your script.

When installing I noticed your script wouldn't work on my PHP installation. The pages contain a lot of garbage code and nothing works. Then I noticed you are using <? at the start of your PHP scripts. Default, PHP only allows <?php. In the php.ini file there is the following comment:

; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
; NOTE: Using short tags should be avoided when developing applications or
; libraries that are meant for redistribution, or deployment on PHP
; servers which are not under your control, because short tags may not
; be supported on the target server. For portable, redistributable code,
; be sure not to use short tags.
short_open_tag = Off

By switching this the On it worked for me. Maybe you can change your scripts so there will be no problems when you can not modify the php.ini.

Greetings,
GJH