Apache 2.4 command support
-
Hi
I’ve just tried turning on the “Block XMLRPC Access” option and it broke my website
Turns out I’m running Apache 2.4 some of the commands have changed from v2.2 – specifically in this case the ORDER, DENY and ALLOW directives.
In Apache 2.4 these have changed to use the REQUIRE directive – so the following
<Files xmlrpc.php>
order deny,allow
deny from all
allow from 127.0.0.1
allow from 127.0.0.1
</Files>
# END GOTMLS Patch to Block XMLRPC Accessneeds to be changed to
<Files xmlrpc.php>
require host 127.0.0.1
</Files>Is there any way this can be incorporated please.
more information can be found at https://httpd.apache.org/docs/current/upgrading.html
Thanks
- The topic ‘Apache 2.4 command support’ is closed to new replies.