Clan Adverts

Latest Product

User Box

Anonymous
38.107.191.102
Nickname:

Password:

Security Code
Security Code
Type Security Code


PND Downloads Feed

Phpnuke Downloads
Clan Members 3.0 Updated
Clan Members 3.0 Updated
Untergang from UDesigns has updated his very popular Clan Members Modu...
NukeTAGS 2.1 Released
NukeTAGS 2.1 Released
MeoToo has released an updated new version of the popular TagClouds mo...
Battlefield: Bad Company ...
Battlefield: Bad Company 2 Theme
Clan themes has released there first gaming theme of 2010. Battlefield...
Modern Gamer Multi Gaming...
Modern Gamer Multi Gaming PHPNuke Theme
Clan Themes has done it again, it has released an amazing Multi Gaming...
Business 5 Free Phpnuke T...
Business 5 Free Phpnuke Theme
Nothing better than news reporting on FREE stuff is there, Clan Themes...
Business 4 Free Phpnuke T...
Business 4 Free Phpnuke Theme
Free Themes Friday is here again, it seems to come round so quick thes...
Business 3 Free Phpnuke T...
Business 3 Free Phpnuke Theme
PHPNuke Clan Themes has released another free phpnuke themes in the fo...
Donation Addon Donation M...
Donation Addon Donation Meter v3.0
This Donation script was coded by Telli from Codezwiz. Donation Addon ...
Business 2 Free Phpnuke T...
Business 2 Free Phpnuke Theme
This is another business related free phpnuke theme from Clan Themes. ...
Free Phpnuke Theme : Busi...
Free Phpnuke Theme : Business
Business Themes are very sourced after themes these days, this Free Bu...

Advertisement


Phpnuke Downloads

How To chmod Files On Your Server

First you will need to get yourself a good FTP client like CuteFTP (it does permissions/CHMODs visually) although you can use SSH and type in commands for CHMODding files and folders manually.
For CuteFTP, you simply need to right-click the uploaded file or folder in the remote window and click Properties/CHMOD.
You should see a box where you can type a number and a a bunch of tick boxes near it.
A CHMOD is a number, it references reading, writing, execution and group access of a file or folder.
In these three digit CHMOD numbers the first digit indicates the permissions for the owner, the second is the permissions for other members of the same "group" as the owner and third is the permissions for "others", aka the public at large.
You might also find permissions specified in rwx format (r= Read, w= Write, x =eXecute), ex: 600 = -rw-rw-rw-
In the three-digit number format the individual numbers are derived by adding up the permissions with 1=execute, 2=write and 4=read (read, write and execute = 4+2+1 -> 7)
 

  • 0 = no permissions (---)
  • 1 = execute only (--x)
  • 2 = write only (-w-)
  • 3 = write and execute (-wx)
  • 4 = read only (r--)
  • 5 = read and execute (r-x)
  • 6 = read and write (rw-)
  • 7 = read, write and execute (rwx)

Just a few examples

644 (-rw-r--r--) = "I don't mind if other people can read this file, however only I should be able to run or write to/edit it"
755 (-rwxr-xr-x) = "I don't mind if other people can read or run this file, however only I should be able to write to/edit it"

 

777 (-rwxrwxrwx) = "Anybody can do anything they want (read, run, modify) with this file"
Permissions can be modified in a number of ways:
 

  • Using an FTP client such as WS_FTP LE or CuteFTP
  • Using the CHMOD command in a shell (SSH) session
  • Using your host's website control panel
CHMOD Calculator
Use the calculator below to calculate the chmod number for your file depending on what kind of permissions you want to give it.

Permissions:

owner group other
read
write
execute

If this doesnt answer your question a great place to start is Google