Title: 403 Forbidden response  BackUpWordPress
Last modified: August 20, 2016

---

# 403 Forbidden response BackUpWordPress

 *  Resolved [borderline11](https://wordpress.org/support/users/borderline11/)
 * (@borderline11)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/)
 * I installed BulletProof and since then my BackUpWordPress gives me the message:
   BackUpWordPress has detected a problem. wp-cron.php is returning a 403 Forbidden
   response which could mean cron jobs aren’t getting fired properly
 * I read on another thread about removing the HEAD from the the filter… I dont 
   know if it also applies to this error but in any case I don’t know what exactly
   I need to remove
    thanks!
 * [http://wordpress.org/extend/plugins/bulletproof-security/](http://wordpress.org/extend/plugins/bulletproof-security/)

Viewing 10 replies - 1 through 10 (of 10 total)

 *  Plugin Author [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172194)
 * Yep it applies to this issue as well. I just posted that BackUpWordPress plugin“
   fix” about 1 hour ago here >>> [http://www.ait-pro.com/aitpro-blog/2252/bulletproof-security-plugin-support/checking-plugin-compatibility-with-bps-plugin-testing-to-do-list/#back-up-wordpress](http://www.ait-pro.com/aitpro-blog/2252/bulletproof-security-plugin-support/checking-plugin-compatibility-with-bps-plugin-testing-to-do-list/#back-up-wordpress)
 *  Thread Starter [borderline11](https://wordpress.org/support/users/borderline11/)
 * (@borderline11)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172207)
 * Ok thank you.
    Please can you tell what exactly I need to remove from that chunk
   of code? The word HEAD?
 *  Plugin Author [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172208)
 * Yep remove/delete the HEAD Request Method and leave the rest.
 *  Thread Starter [borderline11](https://wordpress.org/support/users/borderline11/)
 * (@borderline11)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172210)
 * Thank you !
 *  [gotmedia](https://wordpress.org/support/users/gotmedia/)
 * (@gotmedia)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172244)
 * Hi there,
 * I’m trying to understand these instructions. Would you post a step by step way
   of fixing this? I’m not sure where this code goes, or should this code be used
   to be remove it.
 *  Plugin Author [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172245)
 * Modifying this BPS nuisance filter ONLY applies to folks who are using the BackUpWordPress
   plugin or another plugin that needs to make a HEAD Request or if someone/anyone
   would just like to allow HEAD Requests in general. This filter is ONLY a nuisance
   filter that blocks mainly junk bots and spam bots from making HEAD Requests. 
   So with all of this said to modify this BPS nuisance filter you would do these
   steps:
 * 1. Go to the BPS Edit/Upload/Download tab page.
    2. Click the “Unlock htaccess
   File” button if your root .htaccess file is locked. 3. Click on the “Your Current
   Root htaccess File” tab. 4. Scroll down in your root .htaccess file until you
   see this code below.
 *     ```
       # REQUEST METHODS FILTERED
       # This filter is for blocking junk bots and spam bots from making a HEAD request, but may also block some
       # HEAD request from bots that you want to allow in certains cases. This is not a security filter and is just
       # a nuisance filter. This filter will not block any important bots like the google bot. If you want to allow
       # all bots to make a HEAD request then remove HEAD from the Request Method filter.
       # The TRACE, DELETE, TRACK and DEBUG request methods should never be allowed against your website.
       RewriteEngine On
       RewriteCond %{REQUEST_METHOD} ^(HEAD|TRACE|DELETE|TRACK|DEBUG) [NC]
       RewriteRule ^(.*)$ - [F,L]
       ```
   
 * 5. Remove “HEAD” from the BPS nuisance filter as shown below.
 *     ```
       # REQUEST METHODS FILTERED
       # This filter is for blocking junk bots and spam bots from making a HEAD request, but may also block some
       # HEAD request from bots that you want to allow in certains cases. This is not a security filter and is just
       # a nuisance filter. This filter will not block any important bots like the google bot. If you want to allow
       # all bots to make a HEAD request then remove HEAD from the Request Method filter.
       # The TRACE, DELETE, TRACK and DEBUG request methods should never be allowed against your website.
       RewriteEngine On
       RewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK|DEBUG) [NC]
       RewriteRule ^(.*)$ - [F,L]
       ```
   
 * 6. Click the “Update File” button to save your editing changes and lock your 
   root .htaccess file again.
 *  [gotmedia](https://wordpress.org/support/users/gotmedia/)
 * (@gotmedia)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172246)
 * Thank you very much!
 *  [NightZambri](https://wordpress.org/support/users/nightzambri/)
 * (@nightzambri)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172345)
 * THanks for the support. Very appreciated.
 *  [dayswithus](https://wordpress.org/support/users/dayswithus/)
 * (@dayswithus)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172346)
 * Hi. I am getting the following message:
 * “BackUpWordPress has detected a problem. wp-cron.php is returning a 403 Forbidden
   response which could mean cron jobs aren’t getting fired properly. BackUpWordPress
   relies on wp-cron to run scheduled back ups. See the FAQ for more details.”
 * Suggestions please? Also, can you make the instructions as easy as possible because
   I am new to fixing these types of problems on my own.
 * Thank you!
    Nikki
 * [http://dayswithus.com/](http://dayswithus.com/)
 *  Plugin Author [AITpro](https://wordpress.org/support/users/aitpro/)
 * (@aitpro)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172347)
 * see the step by step instructions posted above.

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘403 Forbidden response BackUpWordPress’ is closed to new replies.

 * ![](https://ps.w.org/bulletproof-security/assets/icon-128x128.png?rev=1731938)
 * [BulletProof Security](https://wordpress.org/plugins/bulletproof-security/)
 * [Support Threads](https://wordpress.org/support/plugin/bulletproof-security/)
 * [Active Topics](https://wordpress.org/support/plugin/bulletproof-security/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bulletproof-security/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bulletproof-security/reviews/)

 * 10 replies
 * 5 participants
 * Last reply from: [AITpro](https://wordpress.org/support/users/aitpro/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/403-forbidden-response-backupwordpress/#post-3172347)
 * Status: resolved