Xmlrpc

From Acenet Knowledgebase
Revision as of 19:39, 30 October 2018 by Docs admin (Talk | contribs)

Jump to: navigation, search

Due to the large amounts of XMLRPC attacks we see against our shared and reseller servers, Acenet has decided to block access to all xmlrpc.php files globally on the server. If you have an application that needs to use xmlrpc, you will need to manually enable access for specific IPs to the file with the following.



1) in your home directory, open or create a ".htaccess" text file.

2) In the .htaccess file, add the following text:

<Files xmlrpc.php>
order deny,allow
deny from all
allow from XXX.XXX.XXX.XXX
</Files>

Replace the XXX.XXX.XXX.XXX with the static IP of the connecting server.

3) Save the file.

You should now be able to connect via XMLRPC from that specified IP.