11.10.2009, 17:37
Quote:
|
Originally Posted by Linx [Stunt Revolution
]
um try this in your proftpd conf file replace Code:
# Bar use of SITE CHMOD by default <Limit SITE_CHMOD> DenyAll </Limit> Code:
# Bar use of SITE CHMOD by default #<Limit SITE_CHMOD> # DenyAll #</Limit> Code:
killall proftpd Code:
proftpd |
Code:
SITE CHMOD 777 viewtopic.php 550 CHMOD 777 viewtopic.php: Operation not permitted
Code:
#This is a basic ProFTPD configuration file (rename it to # 'proftpd.conf' for actual use. It establishes a single server # and a single anonymous login. It assumes that you have a user/group # "nobody" and "ftp" for normal operation and anon. ServerName "Time2Play!" ServerType standalone DefaultServer on # Port 21 is the standard FTP port. Port 21 # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 022 MaxClients 10 MaxClientsPerHost 10 MaxClientsPerUser 10 MaxHostsPerUser 10 # Display a message after a successful login AccessGrantMsg "TimeToPlay FTP" # 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 30 # Set the user and group under which the server will run. User root Group root # To cause every FTP user to be "jailed" (chrooted) into their home # directory, uncomment this line. DefaultRoot ~ # Normally, we want files to be overwriteable. AllowOverwrite on # Bar use of SITE CHMOD by default #<Limit SITE_CHMOD> # DenyAll #</Limit>
P.S. CentOS release 5.3 (Final)

