I have just pushed a new dev. release - it should fix the issue.
The problem is that you guys have asp tags enabled in your php.ini . The syntax for our javascript templates uses <% and php is trying to evaluate the content of those tags... I've changed our syntax to the mustache/handlebars style {{ }} and it should be fine now. Also please note that as per the PHP docs:
de1.php.net/manual/en/language.basic-syntax.phpmode.php
ASP style tags (example four) are only available when they are enabled via the asp_tags php.ini configuration file directive.
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.
the recommendation is not to use this option...
Regards,
Daniel