• Resolved haleeben

    (@haleeben)


    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.1

    I 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)
  • Hi @haleeben,

    Could you please try and enable WP_DEBUG to see if the are any related errors in the debug file generated?

    Also are there any errors/warnings in the Web server logs?

    Hello!

    I hope we were successful in helping you resolve your issue with Wordfence! Since we have not heard back from you in the past 2 weeks I will now be marking this support thread as resolved. However, if we still haven’t resolved your issue please reach out to us as we would be more than happy to further assist you!

    Thanks and have a great day!
    Chloe

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bulk Updates timeout on Litespeed server’ is closed to new replies.