Ftp write access

Status
Not open for further replies.

whiternoise

Posts: 67   +0
I'm using filezilla and i need to know how to enable write access on my uploaded files (it would be flippin' useful for my Phpbb2 forum) i just can't figure it out. Thanks guys.

(eg. installing a mod which requires files to be updated/changed without having to manually upload the files)
 
Right click the uploaded file, choose "Attributes...". The FTP server has to support changing file permissions though.
 
Cheers guys. one other question, when installing Phpbb2 the installer gives you the option of automatic ftp and asks you to supply the ftp address relative to the phpbb folder. does this mean the ftp.whatever... address or the html address
 
try the default numbers first without the ftp or http
like
Code:
34.276.87.4
followed by where the files will be /upload or dwnload
if using a shared ip you may have a longer url
passive mode works best auto file type also
that what it will switch between ascii and binary
as nodsu stated check with your controll panel shell to see how to enable permissions some use chmod some just have check for read exacute write chmod 477 or 455
plus other numbers set security levels
 
Nodsu said:
Right click the uploaded file, choose "Attributes...". The FTP server has to support changing file permissions though.

the raw FTP command:
man ftp discloses the command line interface, which typically is well supported
by all FTP clients (even windows).
.....
chmod mode file-name
Change the permission modes of the file file-name on the
remote sytem to mode.

fyi: 'mode' is a tripple set of codes (binary or ascii chars)
......111 is binary for #7 which implies
..........x execute
........w write
......r read


and the tripplet is for Owner, Group, Others, so
...... 777 would be rwx for all three
...... 744 would be rwx for the owner, r/o everyone else
 
Status
Not open for further replies.
Back