What is Chomd
How do you CHOMD a file
what is CHMOD 777?How do you do that.
Can you do it on your own computer
What is Chomd
Moderator: General Moderators
It's a command that lets you change the permission settings for a file/folder. See http://www.php.net/chmodWhat is Chomd
chmod($file, 0755), chmod($file, 0666), chmod($file, 0777), etc.How do you CHOMD a file
The 777 means "full permission" or "full access"--anyone can read/write/execute the file.what is CHMOD 777?How do you do that.
From a technical standpoint, here's the different bit settings that you can combine:
Code: Select all
Owner:
0100 Execute
0200 Write
0400 Read
Group:
0010 Execute
0020 Write
0040 Read
Other:
0001 Execute
0002 Write
0004 ReadThat depends on your Operating System. It works in Unix, but not in Windows, I think.Can you do it on your own computer
Also note that:
PHP Manual - 'User Contributed Notes' wrote:chmod does not work when PHP's Safe Mode is enabled
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK