当我将 CodeIgniter 系统上传到 Amazon EC2 时,为什么我的所有权限都混乱了?
由于某些奇怪的原因,当我上传它时,我的“系统”文件夹的权限为“000”。这完全破坏了 CodeIgniter,因为我收到了各种各样的错误:
Message: CI_Config::include(/[mysite]/system/application/config/assetlibpro.php) [ci-config.include]: failed to open stream: Permission denied
For some weird reason, my "system" folder has permissions of "000" when I upload it. This totally breaks CodeIgniter as I get all sorts of errors:
Message: CI_Config::include(/[mysite]/system/application/config/assetlibpro.php) [ci-config.include]: failed to open stream: Permission denied
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为这是 EC2 特有的问题。如果您使用修复权限
应该没问题(755表示所有者读/写/执行,组和世界读/执行)
I don't think this is an EC2-specific problem. If you fix the permissions using
you should be OK (755 means read/write/execute for owner, read/execute for group and world)