Reputation: 7907
How can I set permissions of a file to let a PHP program read and write but not be read by the public. When I set read permissions it denies PHP to the files.
Upvotes: 1
Views: 265
Reputation: 10376
chmod 700
or chmod 750
Upvotes: 1