Zend View Script Errors
i recently moved my zend framework project to another computer, the project was working perfectly fine, however now almost all the view scr开发者_JS百科ipts generate parse errors. Is ai a configuration that am missing
At a guess, I'd say you're using short open tags in your views
<?= $foo ?>
and your new server does not have this syntax enabled.
http://www.php.net/manual/en/ini.core.php#ini.short-open-tag
精彩评论