Wordpress elementor denied AH01623: client method denied by server configuration: 'PUT'

Magistar

Verified User
Joined
May 31, 2014
Messages
91
I am having issues with wordpress websites running elementor on a pretty standard apacha + php-fpm setup controlled by directadmin. Templates cannot be renamed and trashed. When I check the logs I get on rename

AH01623: client method denied by server configuration: 'PUT'

Now AFAIK this is because in custombuild I enabled the security option (as makes sense!). I have tried adding to https://server:2222/CMD_CUSTOM_HTTPD?
domain=thedomain

in the field CUSTOM3:
Code:
AllowMethods GET POST PUT PATCH DELETE OPTIONS

<Limit PUT PATCH DELETE>
    Require all granted
</Limit>

After that it works. But I really do not understand why suddenly this is needed. Can someone help me understand what is going on here?
 
You should put ALL in options.conf and run command via root:
da build rewrite_confs

e.g

http_methods=ALL
 
Last edited:
Back
Top