
Originally Posted by
Mike-Atkins
Please login to your server via ssh and check the folder attributes with the following command
(I suppose you are already in the folder that has the issue)
lsattr filename
If your output is something like this
root@server [/home/user/public_html/testfolder]# lsattr filename
-----a------- filename
or
-----i------- filename
It means that the attributes for the folder has been changed, You need to change the attributes for the folder with the following command
root@server [/home/user/public_html]# chattr -a testfolder
or
root@server [/home/user/public_html]# chattr -i testfolder
Than you can delete/edit your folder as you want.