Search results

  1. Unique_Eric

    How to Force http to https in AWS WordPress Package by Litespeed?

    HI, How about adding these rules to LSWS web admin (port 7080) -> Virtual Hosts -> wordpress -> Rewrite Tab -> Edit Rewrite Rules. RewriteCond %{SERVER_PORT} 80 RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] or RewriteCond %{HTTPS} off RewriteRule (.*)...
  2. Unique_Eric

    quic is not working

    Hi, `Failed to verify certificate chain`. Possible to provide a URL to let use see if cert works all good? Best
  3. Unique_Eric

    How can I tell Litemage to ignore certain stores

    Yes, in .htaccess file. If rules work, you should not see any cache hit from the response header. To avoid cache all other pages under education, you may want to try removing the $ sign Let us know if it works.
  4. Unique_Eric

    How can I tell Litemage to ignore certain stores

    Hi @misseppie , Try this RewriteCond %{HTTP_HOST} ^domain.com$ [NC] RewriteRule .* - [E=Cache-Control:no-cache] Best
  5. Unique_Eric

    Litespeed 5.3.8 - failed to connect to database

    Hi @Daniel Marques , Possible too many sql request? Could you also put a top command output result when issue happens? Have you tried lscache enabled? Did you also tried object cache? Best
  6. Unique_Eric

    Problem with Mysql

    Hi @lucasdomonte , We released LSAPI 7.5 for PHP yesterday that should fix the issue for good but will need to wait on cPanel, Plesk, CloudLinux, etc to release updated PHP binaries with the new LSAPI. For now, you can do a rollback to LSAPI 7.3.1, it can be done using `yum history undo` and...
  7. Unique_Eric

    Litespeed and Apache Running.

    Hi Adem, We will follow up the issue on the ticket system. Best, Eric
  8. Unique_Eric

    Error Logs - PHP Fatal error

    @onemillionplaces , could you try upgrading to latest lscache version e.g. 2.9.8.3 first see if issue still? Best, Eric
  9. Unique_Eric

    URI is not valid

    FYI, I tried magento 2.3.2 with demo data+ LiteMage install with "Method 2: Download the LiteMage 2 package directly. " has no URl issue.
  10. Unique_Eric

    OpenLiteSpeed won't read .htaccess files

    Hi @chmod000 , Forgot to ask did you do restart lsws, .e.g. service lsws restart after putting rules inside of the .htaccess? Please give it another try, if still not work, then we need to access to the server and check. By the way, you can post openlitespeed related in Openlitespeed' forum...
  11. Unique_Eric

    OpenLiteSpeed won't read .htaccess files

    @chmod000 , Something not right on your server since OLS does support read rewrite rules from .htaccess file for a very long time. We also build some images with some rewrite rules, e.g. force https inside of the .htaccess file and it works no issue. Also many wordpress users on OLS have no...
  12. Unique_Eric

    [Solved] Browser caching only for 3 seconds

    Hi @ironfist, Any possible other rules overwrite the value from .htaccess file? Best,
  13. Unique_Eric

    Caching functions on this page are currently unavailable!

    Hi Michael, LSCACHE_ADV_CACHE = NULL, please look into the wp-content/advanced-cache.php file where you can find a line define(‘LSCACHE_ADV_CACHE’, true);. If the line already exists, then it might be a permissions issue. Best, Eric
  14. Unique_Eric

    [Solved] CSS combine breaking cart page even after excluding all CSS files

    Hi @pixelar , If exclude all success, you probably won't see random string .css in this screenshot https://cl.ly/31b8884750b4, right? So I guess some css file you missed to exclude. If you still can't find it, submit a ticket to LiteSpeed with wp access and allow us to check it for you...
  15. Unique_Eric

    [Solved] CSS combine breaking cart page even after excluding all CSS files

    Hi @pixelar, Can you check if combine works by browser developer tool -> Network -> CSS. If css files number is same as no combine which means combine is not working, then why it causing the woo cart page breaks? Could you provide a screenshot? Also a screenshot for exclude, thanks. If you...
  16. Unique_Eric

    Wordpress returning server error without error code

    Hi @JTerra , Can you try turning off the lscache plugin, see if issue still? Any error log generated under this wordpress folder? Best
  17. Unique_Eric

    [Solved] Dynamic module hook

    Glad you figured it out. :)
  18. Unique_Eric

    Errors After Installing Cyberpanel, OLS and Upgrading to LSWS

    Hi @kbrebel04 , You're right and can ignore those `scripthandler` error message. It's due to cyberpanel comes with lsphp7x installed, and LSWS auto setup all versions of php which 5x can not be found, so the warning shows. I just installed fresh 1.8.3 with LSWS but no Listener for _default_ is...
  19. Unique_Eric

    Maximum upload file size is 2 MB

    Hi @danielunited, Post is not equal to upload. Please try increasing the upload_max_filesize value from e.g. 2MB to 10MB. Best, Eric
  20. Unique_Eric

    LSCache + ESI + Smarty

    Hi @serpent_driver , yeah, I was thinking if you were asking about smarty cache or php engine. Unfortunately I don't think LiteSpeed ESI support smarty syntax. But it support cache-control= "public" and cache-control= "private" as well for different scenario you need. Best, Eric
Top