Search results

  1. L

    WebAdmin Console shows oldest log entries instead of newest

    I believe this started when I upgraded OLS a while ago, possible from 1.6.13 to 1.6.14. The Dashboard and Log Viewer both will read the start of the error.log and not the end. Any suggestions? On CentOS 7 running OLS 1.6.15. The default log settings are in place (log at...
  2. L

    Possible hidden BUG in OpenLiteSpeed

    @natas123 I've run into the "hanging for exactly one minute" problem a few times until I finally cleared out what was causing it. For me, the problem was when I tried to upgrade to BBR for TCP congestion control on my server. If you look up some guides about making this upgrade, they often say...
  3. L

    WebP rewrite rule ignored after adding custom headers for images

    Just looking into this now - this is a simple test page containing one jpeg image (and its webp copy in the same dir). There's no favicon though the browser looks for it, that's why it appears in the logs below. So, with both rewrite rules mentioned above, this is all I get in the log...
  4. L

    WebP rewrite rule ignored after adding custom headers for images

    The usual rewrite rule that I stick inside the "/" static context works fine by itself: RewriteCond %{HTTP_ACCEPT} image/webp RewriteCond %{DOCUMENT_ROOT}/$1.webp -f RewriteRule (.+)\.(jpe?g|png)$ $1.webp [T=image/webp,E=accept:1] But as soon as I add custom Cache-Control headers for images in...
  5. L

    Command Line Interface CLI

    As far as I can tell as a regular user, it does not exist. I've gone and written some of my own bash scripts, using template files for vhosts, but i'm still limited to only a few vhost-creation tasks for myself. FWIW, this is my most useful bash alias: alias...
  6. L

    Self-hosted image optimization

    Ok so you're looking more to see if you can implement whatever processes LSCache and QUIC.cloud are doing on your own VPS? In that case we'll have to wait for someone official to reply :)
  7. L

    Question about HTTP/2 Push integration in LiteSpeed

    I've been reading a lot about Server Push and I came across this interesting Apache directive: H2PushResource I'm wondering if LiteSpeed follows the Apache model of Server Push exactly, and if it's limited to the mod_headers set method (where we can add a Link header through Apache-style...
  8. L

    Self-hosted image optimization

    I choose to do image optimization myself so that I can use custom scripts & settings. You can start with ImageMagick to recompress your jpegs, then use imageoptim to losslessly trim the file size as much as possible both for jpegs and pngs, and then create WebP duplicates of each image using...
  9. L

    Woocommerce Caching Problem

    I've got an old post bookmarked that i haven't read through yet - maybe there's something helpful here: https://blog.litespeedtech.com/2017/05/31/wpw-fixing-lscachewoocommerce-conflicts/
  10. L

    When will 1.5.12 be added to the repo?

    To update, the Current Version header no longer says "New Release: 1.5.12 (current branch)" ...maybe it was cached somewhere... but the log message remains the same as above.
  11. L

    When will 1.5.12 be added to the repo?

    @Cold-Egg I finally upgraded today from 1.5.11 to 1.6.12 using yum, but after restarting the process and even rebooting, the program is still signed as 1.5.11 in some place. From the main log: And up in the header of the admin panel: Is there a way to manually upgrade that info, and has this...
  12. L

    When will 1.5.12 be added to the repo?

    Thanks I'll have to give it a shot, but I had some funkiness with the 1.6 branch alongside CyberPanel and I could not nail down what the culprit was, so I've been rolling steady with the 1.5 branch without CP for a little while without a problem.
  13. L

    When will 1.5.12 be added to the repo?

    I see 1.6.10 is available in the repo but no sign of 1.5.12 yet. Thanks.
  14. L

    Does OLS support brotli compression of dynamic content?

    Thanks David, I'm running 1.5.11. I saw that =brotli#brotli_compression_for_dynamic_pages']Litespeed Enterprise supports it. I'll be giving it a shot in the future.
  15. L

    Does OLS support brotli compression of dynamic content?

    I meant specifically dynamic compression. That is, on-the-fly compression of php output, for example. I know it supports brotli compression of static/cached content, but ideally I want to use two different settings for static (level 10) and dynamic (level 4).
  16. L

    Does OLS support brotli compression of dynamic content?

    Or is it a feature limited to Litespeed Enterprise? (and if it does, where would you set the preferred compression level? I only see settings for dynamic gzip, static gzip, and static brotli) Thanks!
  17. L

    Example vhost - Getting upload progress bar to work

    Thanks @Pong, I actually figured it out this morning. What's strange is I could not find anything like that page when searching the kb or doing a google search. The link provided in the module's readme file leads to the old kb, where there was no information to be found either. Does the module...
  18. L

    Example vhost - Getting upload progress bar to work

    I should mention I'm running v1.5.11 on CentOS 7. Has no one else run into this problem, or been able to re-create it?
  19. L

    Example vhost - Getting upload progress bar to work

    In the Example vhost you have a pop-up that let's us test file upload capabilities. The upload itself works fine but I cannot get the progress bar to work. I get the error: "ERROR -- uploadProgress module not enabled?" At first I thought this had to do with the uploadprogress module for PHP...
Top