Search results

  1. Cold-Egg

    403 Forbidden error on /wp-admin/admin-ajax.php

    May I know which plugin caused the 403? any new rules insert to the .htaccess file after the plugin enabled?
  2. Cold-Egg

    No mysqli under Ubuntu 20.04

    Just did a quick test, it's included in the lsphpxx-mysql. Since OpenLiteSpeed comes with php detached mode by default, you need to restart PHP with command killall -9 lsphp to make settings take effect immediately.
  3. Cold-Egg

    LiteSpeed with Nginx reverse-proxy

    I remember the OLS behind the proxy throttling issue has been fixed. Have you checked that http://127.0.0.1:8083 loading properly?
  4. Cold-Egg

    No mysqli under Ubuntu 20.04

    Hi, You only need lsphpxx-mysql package for LSPHP on Ubuntu 20, http://rpms.litespeedtech.com/debian/pool/main/focal/
  5. Cold-Egg

    Solved. how can i install mcrypt on lsphp74 ?

    https://forum.openlitespeed.org/threads/mcrypt.4955/#post-11227 @a159cm , if not working, please share the error output
  6. Cold-Egg

    Brotli/gzip Compression enabled but not working?

    LSCache won't cache static files. LSWS/OLS has both gzip and brotli enabled by default, so no need to change it. You can verify it from your browser tool.
  7. Cold-Egg

    How to Install CloudFlare edge certificate on open Litespeed wordpress?

    Not sure if you want to use edge certificate or client certificate. You can upload your own key/cert to the server, and point either Listener>SSL or Virtual Hosts > xxxx > SSL, to load it from the web admin. https://docs.litespeedtech.com/cloud/images/wordpress/#step-4-set-ssl-for-https
  8. Cold-Egg

    Getting error in metaspace litespeed configuration

    You can do phpinfo comparison between Apache and LSWS, see if their memory size is different. Increase: Web admin > Server Configuration -> External App -> lsphp Process Soft Limit Process Hard Limit Also, increase the memory limit from php.ini
  9. Cold-Egg

    mcrypt

    We can install mcrypt package from pecl, https://docs.litespeedtech.com/extapp/php/extensions/#configure. apt-get install lsphp74-pear -y apt install lsphp74-dev libmcrypt-dev -y sudo /usr/local/lsws/lsphp74/bin/pecl install mcrypt add extension=mcrypt.so to...
  10. Cold-Egg

    maxDynRespSize

    Resolved by turning on compression in phpmyadmin
  11. Cold-Egg

    Getting error in metaspace litespeed configuration

    Maybe it has something to do with the PHP limit. Can you try to increase both Memory Limit and Process Limit to the lsphp?
  12. Cold-Egg

    Getting error in metaspace litespeed configuration

    I am not sure the root cause, but it seems like a server resource issue to me https://forum.image.sc/t/jvm-error-could-not-allocate-metaspace-solved/12543
  13. Cold-Egg

    Per Client Throttling not working

    with this post link appended should be ok, we may ask for more information via ticket
  14. Cold-Egg

    Per Client Throttling not working

    Could you raise a ticket to bug@litespeedtech.com for further support?
  15. Cold-Egg

    Per Client Throttling not working

    /usr/local/lsws/admin/misc/lsup.sh -v 1.7.12
  16. Cold-Egg

    Per Client Throttling not working

    @stmx Just so you know that OpenLiteSpeed v1.7.12 has this issue fixed, feel free to give it a try.
  17. Cold-Egg

    Litespeed wordpress on AWS redirection issue

    18.168.235.88 can not be reached. Do you want to allow the domain only? if so, visit the web admin at port 7080 > Listener, make sure you have the domain mapping only.
  18. Cold-Egg

    Future OpenLiteSpeed v1.7.12 support on Ubuntu 21.XX?

    Hi, We support the long-term support version, so the next one will be 22.04.
  19. Cold-Egg

    Root access issue

    If you have an SSH key added to the Metadata>SSH Keys before or after server launching, should all works. To run the ufw command, please run as root. You can try sudo ufw allow 7080 or sudo -s, then rum the ufw command again.
  20. Cold-Egg

    Custom Errors not loading CyberPanel + Cmsms

    Hi, My guess for 403 works is because it won't hit the following rules. Whereas, ID 112 hit this. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?page=$1 [QSA] Maybe this cms has a build-in 404 page somewhere, so it redirected...
Top