views:

11

answers:

1

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
+1  A: 

I don't think this is an EC2-specific problem. If you fix the permissions using

chmod -R 755 /[mysite]/system

you should be OK (755 means read/write/execute for owner, read/execute for group and world)

gareth_bowles