Installation problem

Permalink
Hello

I'm trying to install c5 on my host but I'm having a problem with the folders permission.

I already set 755 permission in /package, /files and /config and to all the files inside but the setup fails in here: "Web Server Access to Files and Configuration Directories"

How can I solve this?


Thanks
Regards,
Ownr

 
ryan replied on at Permalink Reply
ryan
The guaranteed way to make it work without changing ownership of the files is:

chmod -R 777 config packages files
- that makes the config, packages and files directories read, write & executable by all users on the system.

A more secure way of setting it up is to change the group of those folders to the group of the webserver, typically "nobody" and then make them read, write & executable only by your user and the web server.

chmod -R 775 config files packages
chgrp -R nobody config files packages
Ownr replied on at Permalink Reply
Thanks! :)