Reputation: 5758
i user APACHE with PHP. if we use FTP program like filezilla. we will have field information about Permission (777) and Owner/Group (99 99) in *NIX i understand how to translate the Permission like 777
where its mean RW = 42 = 6
but what about Owner/Group = 99 99
How to translate it??
Many Thanks
Upvotes: 0
Views: 1177
Reputation: 76755
These are owner and group ids, so in the permission block :
In your case, 777 is read/write/execute for owner, owner group, and others.
Upvotes: 1