PDA

View Full Version : Flat File Permissions


jabi
08-21-2005, 05:32 PM
When the events are written to a flat file, what permissions are granted to the file?

My new host writes php scripts with permissions assigned to user "nobody" so I can't back up the file via ftp. Host offers php cgi-wrap but if it's not needed I'd rather avoid the overhead on the server.

Brian
08-21-2005, 09:29 PM
The script doesn't create the file for you (older versions did) so the permissions are assigned by the user when uploading the file to the server (usually 646).

jabi
08-21-2005, 09:48 PM
Great! Thanks again, Brian.