LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Proftp-- I can upload now but I can't see the file I just uploaded HELP PLEASE (https://www.linuxquestions.org/questions/linux-newbie-8/proftp-i-can-upload-now-but-i-cant-see-the-file-i-just-uploaded-help-please-67168/)

funnyusa 06-21-2003 10:58 PM

Proftp-- I can upload now but I can't see the file I just uploaded HELP PLEASE
 
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.

User funnyusa
Group private

SystemLog /var/log/proftpd.system.log
TransferLog /var/log/proftpd.transfer.log

# 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>
------------------------------------------

nemesisza 06-22-2003 11:00 AM

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.

funnyusa 06-22-2003 11:01 AM

Quote:

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

nemesisza 06-22-2003 12:26 PM

No worries... my box has just gone down so I gotta plan a trip to the town its located in.
Haha, oh well
Hope u get the problem fixored

funnyusa 06-22-2003 03:00 PM

someone help please


All times are GMT -5. The time now is 01:57 AM.