If you are using cPanel/WHM, and have ownCloud installed. You might soon realise that delete actions are not working. The reason is because it fails due to DELETE methods that are not going through.
The fix is to modify the .htaccess file, at end of file: ADD
<Limit GET POST>
order allow,deny
allow from all
</Limit>
<Limit PUT DELETE>
order allow,deny
allow from all
</Limit>