我将应用程序部署到ubuntu服务器后面临以下错误:
PHP Fatal error: Uncaught exception 'Zend_Application_Bootstrap_Exception' with message
'Resource matching "Jquery" not found' in /home/ZendFramework-1.12.7/library/Zend/Application
/Bootstrap/BootstrapAbstract.php:706
我已经在本地测试了我的代码,它工作正常,但它不在服务器上。我使用ZendFramework-1.12.7并且我无法弄清问题是什么。
非常感谢任何帮助。
更新
我的application.ini具有与jquery相关的以下配置:
resources.Jquery.enable = true
resources.Jquery.ui_enable = true
resources.Jquery.noconflictmode = false
resources.Jquery.render_mode = 255
答案 0 :(得分:0)
试试这个:
pluginPaths.ZendX_Application_Resource = "ZendX/Application/Resource"
resources.jquery.enable = true
resources.jquery.ui_enable = true
resources.jquery.noconflictmode = false
resources.jquery.render_mode = 255
注意:现在J
查询是j
查询
此处列出了可用的资源插件。 Jquery是额外的
http://framework.zend.com/manual/1.12/en/zend.application.available-resources.html
答案 1 :(得分:0)
<强>解决:强>
我将zend库从我的系统复制到服务器上,并将include_path更改为php.ini文件中的新库,一切都开始工作了。我认为当我使用另一个版本的zend库时会出现一些兼容性问题。