Proftp-- I can upload now but I can't see the file I just uploaded HELP PLEASE
Linux - NewbieThis forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Hi all
I could upload with Annonymous account "upload" that belong to group "upload" after I created group upload and user upload and use this command
[root@ensim root]# chmod -R 333 /home/upload
The problem is my "upload" acc can make folder and can upload but can't see it at all. Please help
thanks
----------------------------
ServerName "Funnyusa.net - Funnyusa.org ProFTPD"
ServerType Standalone
DefaultServer on
DefaultRoot ~
# Define this if you want to prevent your server from displaying what FTP
# server and version you are using.
ServerIdent on "Funnyusa.net-Funnyusa.org ProFTPD FTP Server ready."
#Time out parameters
TimeoutIdle 100
TimeoutNoTransfer 150
TimeoutLogin 50
# Port 21 is the standard FTP port.
Port 21
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 12
# Set the user and group that the server normally runs at.
# Allow resume on both upload and download
AllowStoreRestart on
AllowRetrieveRestart on
DeleteAbortedStores on
HiddenStor off
MaxClientsPerHost 2 "Sorry, only %m per host"
MaxClients 12 "Sorry but we only allow %m ftp connection"
<Limit READ DIRS>
IgnoreHidden off
#IgnoreHidden on
</Limit>
# To disable use of system-wide password file
PersistentPasswd off
<Global>
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# Setting this to 'on' makes PAM the final authority on what gets
# authenticated. Turning this off will tell PAM to allow other
# authentication modules compiled into ProFTPD a chance at the user.
AuthPAMAuthoritative On
# This is the PAM configuration file that will be referenced when
# authenticating. It can be set globally and/or per VirtualHost.
# The default is 'ftp'. Note: all PAM configuration files must be in
# /etc/pam.d
AuthPAMConfig ftp
# Don't let people pass % characters to the server and to protect against DoS attacks (Bugzilla ID 1066)
# DenyFilter (\*.*/)|%
# Allow FXP
AllowForeignAddress on
<Limit SITE_CHMOD>
AllowAll
</Limit>
RequireValidShell on
</Global>
<Limit LOGIN>
Order deny,Allow
Deny from 67.107.2.135, 4.61.187.200
Allow from all
</Limit>
# Normally, we want files to be overwriteable.
<Directory /home/ftp>
AllowOverwrite on
HideNoAccess on
HideUser root
HideGroup root
</Directory>
<Anonymous /home/upload>
User upload
Group upload
AnonRequirePassword on #(or off)
RequireValidShell off #(or off)
# Deny login for users with shellaccess
<Limit WRITE>
DenyAll
</Limit>
<Limit LOGIN>
AllowAll
</Limit>
<Directory /home/upload>
<Limit STOR CWD APPE READ RMD DELE MKD>
AllowAll
</Limit>
</Directory>
</Anonymous>
------------------------------------------
Yeah, I have that problem sometimes when logging into FTP with root account. Im gussing that it has something to do with premissions. Will get back to you when I find some useful information.
Originally posted by nemesisza Yeah, I have that problem sometimes when logging into FTP with root account. Im gussing that it has something to do with premissions. Will get back to you when I find some useful information.
thanks, I am fustrating with it now, can't fxp bro/sis hehe
thanks for replying
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.