Could not run osTicket because of the short open tags in code.
Had to replace all the "<?" to "<?php" and "<?=" to "<?php echo" in
several files to be able to run the app
Why this code is using short PHP open tags?
Please read the advice in php.ini:
; Allow the <? tag. Otherwise, only <?php and 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.