Bulk Updates timeout on Litespeed server
-
Hi
I am not sure when this issue was introduced as WordPress, WordFence and Litespeed have all had updates recently, but now when I try to do bulk updates from the update-core.php page, the updates timeout and the .maintenance file is left behind.
WP version: 4.8.2
Wordfence Version: 6.3.19
LiteSpeed version: 5.2.1I found that deleting the WordFence code from the .htaccess file makes WordFence go through the firewall config wizard again and it re-adds the updated code to the .htaccess file. Now the bulk updates work again.
OLD CODE
# Wordfence WAF <IfModule LiteSpeed> php_value auto_prepend_file '/home/xxxx/public_html/xxxxx.com.au/wordfence-waf.php' </IfModule> <Files ".user.ini"> <IfModule mod_authz_core.c> Require all denied </IfModule> <IfModule !mod_authz_core.c> Order deny,allow Deny from all </IfModule> </Files> # END Wordfence WAF
NEW CODE
# Wordfence WAF <IfModule LiteSpeed> php_value auto_prepend_file '/home/xxxx/public_html/xxxxx.com.au/wordfence-waf.php' </IfModule> <IfModule lsapi_module> php_value auto_prepend_file '/home/xxxx/public_html/xxxxx.com.au/wordfence-waf.php' </IfModule> <Files ".user.ini"> <IfModule mod_authz_core.c> Require all denied </IfModule> <IfModule !mod_authz_core.c> Order deny,allow Deny from all </IfModule> </Files> # END Wordfence WAF
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Bulk Updates timeout on Litespeed server’ is closed to new replies.