PDA

View Full Version : How do I make the permissions of a file....


Rayvin
7-14-03, 02:17 PM
If I only want my php and my ftp account the only parties that can access a particular file, how and to what do I set the permissions? I figure for the php to access it, I have to give permisions to the server (?)...I don't know. Help :)

B&T
7-14-03, 05:33 PM
chmod 600. You can do this through your ftp program or through Internet Explorer.

This means only you can read it. And a PHP script is run as you.

For ftp it does not matter. Your ftp account can always see everything.

Rayvin
7-14-03, 07:02 PM
B&T: Big up on the response. I'll dig in to it.


ez