Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter ontheroad

    (@ontheroad)

    Apologies, it’s

    Disable XML-RPC-API that’s causing the issue.

    No idea why it worked for a while after disabling Blackhole. Feel free to delete this post.

    Plugin Author Jeff Starr

    (@specialk)

    Thanks for the follow-up, glad you determined the cause of the issue. I will go ahead and mark this topic as resolved. Cheers, @ontheroad.

    @ontheroad

    You can do that via htaccess instead of a plugin. its more lightweight less stuff too

    # Block WordPress xmlrpc.php requests
    <Files xmlrpc.php>
        Order Deny,Allow
        Deny from all
    </Files>

    or if you want to add just your static IP

    # Block WordPress xmlrpc.php requests
    <Files xmlrpc.php>
        Order Deny,Allow
        Deny from all
        Allow from xxx.xxx.xxx.xxx
    </Files>
Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.