Simply deleting XMLRPC file

I have never used XMLRPC for any activity for my WordPress sites and also not going to do so. There are many articles on disabling XMLRPC on your site for additional security. In the use case scenario that I discussed when if that service is not required, why to disbale it or make it more … Read more

How to secure WordPress XMLRPC?

XMLRPC is great for remote publishing to WordPress, but there has been many security issues attributed to it. How do it make it more secure? More specifically, only user from the intranet will be publishing through XMLRPC. WP is currently running on Lighttpd and php5.3. 4 Answers 4 XMLRPC is as secure as the rest … Read more

Restrict access to xmlrpc.php

I am fairly new to WordPress and I recently noted a huge amount of traffic hitting the following: 162.242.170.222 – – [01/Aug/2014:08:18:54 -0500] “POST /xmlrpc.php HTTP/1.0” 503 4859 162.242.170.222 – – [01/Aug/2014:08:19:01 -0500] “POST /xmlrpc.php HTTP/1.0” 503 4859 162.242.170.222 – – [01/Aug/2014:08:19:01 -0500] “POST /xmlrpc.php HTTP/1.0” 503 4859 162.242.170.222 – – [01/Aug/2014:08:19:02 -0500] “POST /xmlrpc.php … Read more

Removing unnecessary wordpress files

I want to consider removing the next <link> files from the <head> section of my website: …wp-json …xmlrpc.php?rsd …wlwmanifest.xml But I don’t really know how would this may affect my wordpress site – I don’t use any plugins at all – and how to actually remove them efficiently, because while googling, I notice there’s some … Read more

Disable links in header (feeds and such)

I want to disable feeds and things like that (rpc, pingbacks, wlwmanifest, prev/next). Reason is that the website is not a blog, so these are of no use. I wrote the following in a plugin: remove_action(‘wp_head’, ‘rsd_link’); remove_action(‘wp_head’, ‘feed_links’, 2); remove_action(‘wp_head’, ‘wlwmanifest_link’); // and so on… Indeed the links are no longer in the header. … Read more

How Enable XML-RPC in WP 4.8.2

How Can Enable XML in Version 4.8.2 ? I Want Enable XML RPC Then Connected to it with Programming library thx i can not connect to xml-rpc with https://github.com/abrudtkuhl/WordPressSharp WordPress Library for .net 1 Answer 1 XML RPC is enabled by default in WordPress since version 3.5, including WP 4.8.2. Here is the more info … Read more