Created
May 7, 2009 10:15
-
-
Save rgo/108039 to your computer and use it in GitHub Desktop.
wp-cron is having mod_security error 500
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add this to every host running WP (either in Apache conf files - a recommended method - or in .htaccess): | |
<Files ~ "wp-cron\.php$"> | |
<IfModule mod_security.c> | |
SecFilterEngine Off | |
</IfModule> | |
Order Deny,Allow | |
Deny from All | |
Allow from my.own.IP.address | |
</Files> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment