View Poll Results: Do you think that gproftpd is useful ?

Voters
872. You may not vote on this poll
  • Yes, it's easy to use and really powerful

    473 54.24%
  • Yes, but i won't use it

    136 15.60%
  • No, the GUI has to be improved

    263 30.16%
Results 1 to 10 of 1225

Thread: HOWTO : Create a FTP server with user access (proftpd)

Threaded View

  1. #11
    Join Date
    Jun 2005
    Location
    France
    Beans
    7,100
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO : Create a FTP server with user access (proftpd)

    Ok i see, by default read is denied in the upload directory according to the proftpd.conf given in first post.

    Relevant section is :
    Code:
    <Directory /home/FTP-shared/upload/>
    Umask 022 022
    AllowOverwrite on
    	<Limit READ RMD DELE>
          	DenyAll
        	</Limit>
    
        	<Limit STOR CWD MKD>
          	AllowAll
        	</Limit>
    </Directory>
    Just modify it as follow :

    Code:
    <Directory /home/FTP-shared/upload/>
    Umask 022 022
    AllowOverwrite on
    	<Limit RMD DELE>
          	DenyAll
        	</Limit>
    
        	<Limit STOR CWD MKD READ>
          	AllowAll
        	</Limit>
    </Directory>
    My english is not perfect too
    Last edited by frodon; February 25th, 2010 at 06:56 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •