PHP 文件在具有 777 权限的文件夹内执行时返回错误 500
当我安装 Qivva 日历 Joomla 模块时,这个问题就开始出现。 AJAX 请求返回 ajax failure
它返回 500 错误。 我认为这是因为 Qivva 的ajax请求不是到网站的根目录,它会转到这个 URL
/modules/mod_eventlistcalqajax/mod_ajaxloader.php?modid=42&Itemid=4&el_mcal_month=1&el_mcal_year=2012
同时,在默认情况下,joomla chmod modules
文件夹为 777。我的问题是,为什么 php 无法在 chmoded 777 文件夹内执行?
This problem begin when I installed the Qivva calendar Joomla module. The AJAX request return ajax failure
it returns 500 error.
I think it because the ajax request of Qivva is not to the root of the site, It goes to this URL
/modules/mod_eventlistcalqajax/mod_ajaxloader.php?modid=42&Itemid=4&el_mcal_month=1&el_mcal_year=2012
While, in default joomla chmod the modules
folder to 777. my Question is, Why php can't be executed inside chmoded 777 folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代码 500 表示内部服务器错误。这意味着您应该检查
error.log
以获取更多信息。我不认为这与777权限有关。The code 500 means internal server error. That means you should check your
error.log
for more information. I do not think that it is related to the 777 permissions.