www.ProFTPD.de

ProFTPD => ProFTPD - Deutsch => Thema gestartet von: artist am 23. März 2006, 13:36:41



Titel: Resume Funktion, der X. Thread dazu ;)
Beitrag von: artist am 23. März 2006, 13:36:41
Hallo,
ich bin neu hier, wie man vll links an meinem Profil sieht ;)
Ich bin im besitz eines vServers bei s4y, wo Confixx (1 Premium) mit ProFTPD schon vorinstalliert ist und eingerichtet ist.
Gestern wollte ich ein Datei per FTP uploaden, habe dann gestoppt, um etwas anderes machen zu können. Als ich später wieder Resumen wollte, stand das im Log

Code:
[R] 200 PORT command successful
[R] REST 42488032
[R] 350 Restarting at 42488032. Send STORE or RETRIEVE to initiate transfer
[R] STOR Eths.rar
[R] 451 Eths.rar: Append/Restart not permitted, try again
[R] Transfer Failed!


Darauf hin habe ich mich mal schlau gemacht. Und las hier mehrmals im Forum, bzw. ProFTPD F.A.Q, das ich folgendes in meine Config reinschreiben soll ( /etc/proftpd.conf )

Code:
AllowRetrieveRestart on
AllowStoreRestart on
AllowForeignAddress on

und das HiddenStore nicht aktiviert sein darf.

Mit oder ohne "Hiddenstore off" krieg ich immer noch nicht die Datei zum resumen.

Hier mal der Inhalt meiner aktuellen .conf

Code:
#### CONFIXX PRO-FTPD CONFIG FILE ####
    #### created at Thu Feb  2 19:48:21 2006 ###

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

# Normally, we want files to be overwriteable.
<Directory /*>
  AllowStoreRestart      on
  AllowOverwrite      on
  #HiddenStor         on
  #HideNoAccess         on
</Directory>

ServerName *hust*
ServerType standalone
DefaultServer on
ServerAdmin technik@*hust*
ServerIdent     on "FTP Server ready."

# 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 that the server normally runs at.
User                            nobody
Group                           nogroup

TransferLog /var/log/xferlog


#
# Do a chroot for web-users (i.e. public or www group), but
# do not change root if the user is also in the users group...
#
#DefaultRoot ~/public_html       public,!users
#
DefaultRoot ~

# Groups that are not allowed to login
<Limit LOGIN>
DenyGroup poponly
</Limit>


     ### ENDE ####



Ihr wisst doch sicher was ich falsch mache :)
Vielen Dank im VOrraus für eure Antworten,
artist


Titel: Re: Resume Funktion, der X. Thread dazu ;)
Beitrag von: stonki am 23. März 2006, 14:08:56
das sieht ok aus. ProFTPD auch wirklich neu gestartet ?


Titel: Resume Funktion, der X. Thread dazu ;)
Beitrag von: artist am 23. März 2006, 14:40:04
*unauffällig-pfeiff*

Ja, hatte ich vergessen ;)

Vielen Dank fürs Erinnern & Helfen :)