soleimanian 0 Report post Posted October 27, 2004 hi every onehow i can chmod my files to 666 via ftp program or ssh accessplease help mebest regardssoleimanian Share this post Link to post Share on other sites
iGuest 3 Report post Posted October 27, 2004 hi every one how i can chmod my files to 666 via ftp program or ssh access please help me best regards soleimanian <{POST_SNAPBACK}> In an FTP Program like FileZilla, log into your FTP, browse to folders or files you want to chmod and right-click on them and select File Attributes and just check all Read and Write and No Execute or type 666 inside the box. Cheers, MC Share this post Link to post Share on other sites
Hercco 0 Report post Posted October 27, 2004 In shell you can change access permission simply with chmod command. You can use the numerical form (ie. chmod 666) or letters (easier to remember).With letters it goes like this:For example if you want to give others (in web server meaning anyone who tries to access the file thru web) write permission you could type: chmod o+w <filename>If you wanted to take the write permissions away you'd use - (minus) instead of plus. chmod o-w <file>For read the letter is r and for execution x. Notice that execution also means access to directory (if the file is a directory)For yourself the symbol to use is u (as in user) and for group g (group means users belonging to same usergroup as the owner. In web server doesn't really matter). Latter a means all (ie. user, group and other)You can also combine different change rules to one command. For example setting read, write and execute right for yourself: chmod u+rwx <file> Share this post Link to post Share on other sites
spacewaste1405241471 0 Report post Posted October 27, 2004 lol with ftp its EZ!!! just select all the files u wanna change permissions 2 and then just right click em and hit properties n just poof changes ez the easest ftp program that works good for me that would allow u 2 do that would be ctuftp...well thats in my opinion Share this post Link to post Share on other sites
musichere 0 Report post Posted November 2, 2004 OK if you want to do this without using a complicated FTP connection, all you have to do is go to http://www.youraddress.com/cpanel and log in with your cpanel username and password. After you have done this go into file manager and select the function 'change chmod' and that will let you do this much quicker and easier. I dislike fiddling around with it in FTP as well. Share this post Link to post Share on other sites
pbolduc 0 Report post Posted December 22, 2004 Setting permissions in cpanel is easiest for sure. Click on the file and then in the upper right click on set permissions. Convenient and quick. Share this post Link to post Share on other sites
cryptwizard 0 Report post Posted December 22, 2004 Actually, there's a simple map to give you the numeric.Start with n = 000 and add all that apply from this chart: Owner Group WorldRead 400 40 4Write 200 20 2Execute 100 10 1For example, if you want everone to Read and Execute but only the owner to write:400+40+4+200+100+10+1=755So 755 is your numeric.Seems quite easy now, doen't it. Share this post Link to post Share on other sites
hashbang 0 Report post Posted December 22, 2004 hi every one how i can chmod my files to 666 via ftp program or ssh access <{POST_SNAPBACK}> Hey Mate,Using ssh is easy. Simply cd to the appropriate directory. Then at the command prompt type: chmod 666 filename. That's it. You can see from others posts how you might change permissions other than 666. It works the same if you want 755 or 777 or whatever. best wishes hashbang Share this post Link to post Share on other sites
rapco 0 Report post Posted December 22, 2004 Using a ftp client like WS_FTP you can right clcik your file and folderan..With the properties you can change your chmodin this client, boxes that indicate the meaning of the chmod number appera, that makes editing it easieryou can get ws_ftp in http://download.cnet.com/windows/ Share this post Link to post Share on other sites
cryptwizard 0 Report post Posted December 22, 2004 Hey Mate, Using ssh is easy. Simply cd to the appropriate directory. Then at the command prompt type: chmod 666 filename. That's it. You can see from others posts how you might change permissions other than 666. It works the same if you want 755 or 777 or whatever. best wishes hashbang <{POST_SNAPBACK}> Notice, that most of us don't have shell/SSH access: user@svr ~$ ssh cryptw@cw.astahost.comThe authenticity of host 'cw.astahost.com (69.50.168.69)' can't be established.RSA key fingerprint is 28:79:b0:99:d5:3c:cb:9e:9d:6f:42:f7:2e:80:52:dd.Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added 'cw.astahost.com' (RSA) to the list of known hosts.cryptw@cw.astahost.com's password:Shell access is not enabled on your account!If you need shell access please contact support.Connection to cw.astahost.com closed. Share this post Link to post Share on other sites