Search results

  1. N

    Litespeed Installation Problem on cPanel

    this is called "Build Matching LSPhp" in WHM litespeed plugin. you can run it now while running apache. after finish, you can switch to litespeed, see if the issue is gone. if the issue is gone, then it was because this step was not successful for whatever reason. and rebuild fix it.
  2. N

    My server responding late (around 5 min) to prestashop webservice due to litespeed cache

    I'm new to Prestashop, maybe our other staff as well. can you provide more info so we know what exact issue is ? for example, what's current rewrite rules in .htaccess which relating to Prestashop ?
  3. N

    Litespeed Installation Problem on cPanel

    put phpinfo.php in document root, access it under apache and litespeed, see if lsphp matchs with apache php. can you switch to apache successfully ?
  4. N

    mod_rewrite and mod_alias

    I did tests again under apache 2.4, my results shows if <Directory> inside <VirtualHost>. then return "200 OK" if out of <VirtualHost> (server level <Directory>), then return "404 Not Found" <VirtualHost *:80> DocumentRoot /var/www/html <Directory "/var/www/html/sub"> RewriteEngine On...
  5. N

    mod_rewrite and mod_alias

    I didn't test those reweiterule under <DIrectory>, search apache document, it's valid -- I haven't experienced this case before ( rewrite rule inside <Directory> block), I believe this is vary rare case in practice. anyway I did tests, my result: 5. in httpd.conf, within <Directory...
  6. N

    mod_rewrite and mod_alias

    installed apache 2.4.6 and confirmed your result. also did some other testings. my test result so far: 1. in httpd.conf, put in Alias /TestURI "/var/www/html/test.html" 2. in .htaccess, put in RewriteEngine On RewriteRule PublicLink /TestURI [L] then when access domain.com/PublicLink a)apache...
  7. N

    mod_rewrite and mod_alias

    there is no difference for domain.com/TestURI between apache and litespeed. both are "200 OK" I don't use DirectAdmin, but apache with simplest config file. as you see above my test, the apache version is 2.2.15. your apache's version ? 2.4.x ? you can enable apache's rewrite log, then access...
  8. N

    mod_rewrite and mod_alias

    yes, my test result is same as yours regarding litespeed. my point is: what's the test result under apache ? while litespeed return "404 Not Found" apache return "500 Internal Server Error" because of the rewriterule RewriteRule PublicLink /TestURI [L] it looks apache not meet your...
  9. N

    mod_rewrite and mod_alias

    my tests shows that apache will return 500 error for that rewriterule. while lsws will return 404 Not Found here's detail: /var/www/html>cat .htaccess #Options Indexes RewriteEngine On RewriteRule .* /TestURI [L] #RewriteRule .* /TestURI [PT] /var/www/html>ls -al drwxr-xr-x 11 root root 4096...
  10. N

    Content Coding Error/ERR_CONTENT_DECODING_FAILED! Need help

    it may due to "double gzip" for whatever reason. to identify/debug the issue, you've to find a way to reproduce the issue easily. at least which URL is easy to have this problem. for example, you find /path/to/this-url.html is often problem, you can disable gzip in .htaccess for it...
  11. N

    xsendfile

    so here x-sendfile you mean https://tn123.org/mod_xsendfile/ mod_xsendfile for Apache2/Apache2.2 here's litespeed implementation: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:config:internal-redirect
  12. N

    [Resolved] the new guid wiki (cpanel-shared)

    I think Yes. <IfModule Litespeed> CacheRoot /home/lscache </IfModule> will take care of mkdir/chown|chmod etc. I think by default, you no need care about it. so it's easier for most users. at the end of the wiki page, "For Advanced Cache Configuration info, look here." lsws web admin part has...
  13. N

    [Resolved] htaccess double not condition failing

    My test results are different with yours. I cloned your .htaccess RewriteEngine On RewriteCond %{REQUEST_URI} !^/robots.txt$ RewriteCond %{REQUEST_URI} !/ExternalConnect RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} ^foobar\.org [NC] RewriteRule ^(.*)$ https://www.foobar.org/$1...
  14. N

    [Resolved].htaccess php_value and php_flag being ignored in sub-directory

    I did tests 5.0.16 and 5.0.17, fixed.
  15. N

    few problems with instalation

    how about install lsphp via apt ? https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:php:apt
  16. N

    few problems with instalation

    is WHM/cPanel on this server ? then the installation guide is https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cpanel
  17. N

    few problems with instalation

    open litespeed 1.4.17 ? have you followed http://open.litespeedtech.com/mediawiki/index.php/Help:Installation to install ?
  18. N

    [Resolved] PHP Phalcon extention Enable lsws

    Thanks for update!
  19. N

    [Resolved].htaccess php_value and php_flag being ignored in sub-directory

    just confirmed: I can reproduce this issue in my env with latest 5.0.16 here's all contents of .htaccess in main dir: <IfModule litespeed> php_value max_execution_time 600 php_value max_input_time 600 </IfModule> <FilesMatch "\.(php)$"> allow from all </FilesMatch> comment out "allow from...
  20. N

    received unexpected signal=9, no core file created

    please upgrade to latest 5.0.16 maybe your issue will be gone bug report only meaningful to latest version.
Top