Hello,
I am using vsftpd on my server, using virtual users. My problem is that I can upload fine, but I can't delete, resume, rename, chmod. Basically any changes.
config file
dirmessage_enable=YES
# banner_file=/etc/vsftpd/vsftpd.banner # edit banner first
chown_uploads=NO
xferlog_enable=YES
idle_session_timeout=600
data_connection_timeout=120
ascii_upload_enable=NO
ascii_download_enable=NO
#chroot_list_enable=YES
listen=YES
ls_recurse_enable=NO
local_enable=YES
write_enable=YES
anonymous_enable=NO
anon_world_readable_only=NO
anon_mkdir_write_enable=YES
anon_upload_enable=YES
anon_other_write_enable=NO
local_umask=022
#this is important
ssl_enable=YES
#choose what you like,
# it's a matter of performance i guess
force_local_data_ssl=YES
#choose what you like
force_local_logins_ssl=YES
#you should at least enable this if you enable ssl...
ssl_tlsv1=YES
#choose what you like
ssl_sslv2=YES
#choose what you like
ssl_sslv3=YES
#give the correct path to your currently generated *.pem file
rsa_cert_file=/etc/ssl/certs/vsftpd.pem
#the *.pem file contains both the key and cert
rsa_private_key_file=/etc/ssl/certs/vsftpd.pem
guest_enable=YES
pam_service_name=vsftpd
chmoding to 777 and chowning to nobody doesnt help
-rwxrwxrwx 1 nobody nobody 35905 Mar 22 02:15 20070308.htm
The error is 550 permission denied
Thanks for any help in advance

