---
title: "Error 429 Too Many Requests"
canonical_url: "https://www.zone.lv/help/kb/error-429-too-many-requests-2/"
post_type: "ht_kb"
published: "2024-04-03T15:45:21+00:00"
modified: "2024-04-03T15:57:16+00:00"
language: "en"
author: "silver"
taxonomies:
  ht_kb_category:
    - name: "Apache"
      url: "https://www.zone.lv/help/kb-categories/apache-en/"
  ht_kb_tag:
    - name: "429 error"
      url: "https://www.zone.lv/help/kb-tags/429-error/"
    - name: "apache"
      url: "https://www.zone.lv/help/kb-tags/apache-eng/"
---

# Error 429 Too Many Requests

Protection has been added to the websites hosted at Zone to limit the number of queries to `wp-login.php` and `xmlrpc.php` scripts. The purpose of the restriction is to protect the website from bots that try to guess passwords and cause excessive load on the server.

Using the default setting, the `wp-login.php` and `xmlrpc.php` scripts are allowed to make 6 requests per **IP** per minute. All subsequent requests per minute will receive a response from the server `Error 429: Too Many Requests`.

[![](https://www.zone.lv/static/sites/5/error-ru-1.png)](https://www.zone.lv/help/en/kb/error-429-too-many-requests-2/error-ru-2/)

If you wish, you can remove this setting from your server.

In order to remove the settings lo into My Zone control panel and in Webhosting management under `Webserver` -&gt; `Main domain settings` -&gt; `modify` -&gt; `Apache directives` -&gt;in the `add directive block` window add following `directive block`:

```
<IfModule mod_security2.c>
  SecRuleRemoveById 70005 70003
</IfModule>

```

 The 429 error code may not always come from a server-side limitation. An application, such as a security plug-in, may also return a response with this code.
