Showing posts with label LiteSpeed. Show all posts
Showing posts with label LiteSpeed. Show all posts

Friday, April 16, 2021

Installation fails with request timeout in Litespeed server

 LiteSpeed totally ignores the usual Apache setting. You can do it yourself by setting some environment variables for LiteSpeed in the .htaccess file of your document root . See below -

<IfModule Litespeed>
SetEnv noabort 1 
SetEnv noconntimeout 1 
</IfModule>

Extract Domain from email in Excel or Google sheet

  =TEXTAFTER( A2 , "@") or, =MID(A1, FIND("@", A1) + 1, LEN(A1) - FIND("@", A1))