hab da nochn kleines problem mit der config von meinem proftpd, und zwar bringe ich das nicht fertig , meine config so zu editieren, dass ich in meinem uploadverzeichnis auch andere verzeichnisse uploaden kann ! zur zeit kann ich nur einzelne dateien uploaden.
vielleicht kann mir jemand nen tip geben ?!
hier kurz nen ausschnitt aus der config:
Code: Alles auswählen
<Anonymous ~ftp>
User ftp
Group public
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
RequireValidShell off
# Limit the maximum number of anonymous logins
MaxClients 4
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message
# Limit WRITE everywhere in the anonymous chroot
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
# Uncomment this if you're brave.
<Directory incoming>
# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask 022 022
<Limit READ WRITE>
DenyAll
</Limit>
<Limit STOR CWD>
AllowAll
</Limit>
</Directory>
</Anonymous>