Hallo,
ich habe folgendes Problem. Ich habe bei einem Anbieter kostenlosen Webspace und habe dort ein Statsprogramm laufen. Dazu habe ich einen Gameserver. Das Statsprogramm muss sich eine Datei von dem Gameserver auf den Webspace laden. ProFTPD bringt dazu folgende Fehlermeldung:
USER ****: Login successful. mod_cap/1.0: cap_set_proc failed: Operation not permitted mod_cap/1.0: attempt to configure capabilities failed, reverting to normal operation mod_delay/0.4: delaying for 39204 usecs FTP session closed.
Ich habe jetzt wirklich schon sehr lange gesucht und nichts gefunden.
# 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 "xxx" ServerType standalone DefaultServer on ServerIdent on "xxx" ServerAdmin xxx UseReverseDNS off IdentLookups off
# 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
# 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 nobody Group nogroup
# deny root login RootLogin off
# homedir DefaultRoot ~
# FXP AllowForeignAddress off
# Resuming AllowStoreRestart on AllowRetrieveRestart on
# Bandwidth TransferRate RETR 1048576 TransferRate STOR 1048576
# Maxclients MaxClients 50 MaxClientsPerUser 2 MaxClientsPerHost 2 MaxLoginAttempts 3
# Timeouts TimeoutNoTransfer 600 TimeoutIdle 600
# Logging SystemLog /var/log/proftpd_system.log ExtendedLog /var/log/proftpd_read.log READ ExtendedLog /var/log/proftpd_write.log WRITE ExtendedLog /var/log/proftpd_auth.log AUTH
# no symlinks ShowSymlinks off
# global settings <Directory /> AllowOverride on AllowOverwrite on HideUser root HideGroup root ListOptions "-a" <Limit SITE_CHMOD> Allow from all </Limit> </Directory>
|