Hallo zusammen,
auf der Suche nach Hilfe bin ich auf dieses Forum gestoßen.
Ich versuche seit einer Woche ProFTPD beizubringen,
dass ich Daten, die Anonyme User geUploaded haben
löschen darf. Leider ohne Erfolg.
Ich hab ziemlich viel versucht deswegen hier mal meine aktuelle Konfiguration.
ServerName "FTP-Server"
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
# Note that this ONLY works in standalone mode
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group nogroup
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot /srv
# Our "basic" anonymous configuration, including a single
# upload directory ("uploads")
<Anonymous /srv/ftp>
# Allow logins if they are disabled above.
<Limit LOGIN>
AllowAll
</Limit>
# Maximum clients with message
MaxClients 5 "Sorry, max %m users -- try again later"
User nobody
Group nogroup
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous nobody
# Limit WRITE everywhere in the anonymous chroot
<Limit WRITE DELE>
Order allow,deny
AllowUser test
AllowUser phpscript
DenyAll
</Limit>
# An upload directory that allows storing files but not retrieving
# or creating directories.
<Directory /srv/www/htdocs/stats/cs/*>
<Limit ALL>
Order allow,deny
AllowUser phpscript
DenyAll
</Limit>
<Limit STOR>
Order allow,deny
AllowUser phpscript
DenyAll
</Limit>
AllowOverwrite on
</Directory>
<Directory /srv/ftp/incoming/*>
<Limit ALL>
Order allow,deny
AllowUser test
DenyAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
AllowOverwrite off
DeleteAbortedStores off
HiddenStor on
</Directory>
</Anonymous>
Das FTP sowie das INCOMING-Verzeichnis sind vom User Nobody/Nogroup mit 777. Ich bin User Test. Einige PHP-Scripte die nur was hochladen benutzen phpscript. Die klappen auch
Auch können die Anonymen Benutzer hochladen und die Dateien nicht sehen. Ich kann sie sehen, hochladen aber nicht löschen (meine Schon nur die der Anonymen nicht)
Vieleicht sieht ja jemand meinen Fehler.
Grüße und ein dickes Danke im Vorraus,
Skrelpawin