The issue is actually related to your server’s configuration. By default all types of requests are not allowed. Please add the following to your .htaccess file
1 2 3 4 5 | <Limit GET POST OPTIONS PUT DELETE PROPFIND> Order allow,deny Allow from all Require all granted </Limit> |
Leave a Reply