well, basically what I want to do is make it where people can upload, and download things, but not delete things. I have NO clue how I would go about doing this, and I didnt see it in the options. Well, is this even possible? If so, how?
You can do this by limiting what commands the user(s) in question can do either in the main proftpd config file or enabling the use of .ftpaccess files (might not be exactly what their called, but very similar to apaches .htaccess system). In your case you would probably not want to allow the DELE command for example.
Hi;
it's an old topic but I would like to write how I solved the same problem in case someone may need.
1)Create an ftp user with access to public_html user. (user1)
2)Create another user with access to public_html/upload (user2)
3)Create a file named .ftpaccess and write these into the file and save it to public_html/upload
well, he can download from browser cause you are in public_html, you would need a .htaccess too for stop download from browser aswell or point ftp not to public_html (example. /home/USER/DOMAIN/ftp/upload
And BTW, thanks for sharing this Always appreciated.