Search results

  1. Cold-Egg

    how to setup reCaptcha (huge server load)

    Do you see many lsphp processes from the `top` command output? Possible to share a snapshot? Please check the output of the connection numbers netstat -nat | awk '{print $6}' | sort | uniq -c | sort -n Also, please decrease the number of PHP_LSAPI_MAX_REQUESTS, 10000 is way too high.
  2. Cold-Egg

    Failed to open temp file for swapping

    Please check your disk and tmp folder space. df -h df --inodes
  3. Cold-Egg

    Poor Performance and SSL handshake failed(5)

    Hi, It seems like your test client issue. Please prepare your client-server in the same region to avoid any network latency issue. h2load -n 100000 -c 100 -t 1 -T 5 -m 10 -H 'Accept-Encoding: gzip,deflate' https://www.gospel4china.org/ starting benchmark... spawning thread #0: 100 total...
  4. Cold-Egg

    ipv6 not working

    No extra port allowed needed, it should just work. May I know the OLS version? and if this IPv6 interface can be found from the server? ip addr
  5. Cold-Egg

    LScache for phpBB ?

    No experience on this CMS before, you can check LSCache without plugin method and give it a try, https://docs.litespeedtech.com/lscache/noplugin/installation/
  6. Cold-Egg

    Https greatly increases response time

    Hi @ofmarconi , The number of HTTPS lower than HTTP is expected to me, HTTPS will go through handshakes and encrypt/decrypt key process. It might be helpful a little if you use the ECC certificate.
  7. Cold-Egg

    OpenLiteSpeed with mod_security running as reverse proxy (WAF)

    Wait, it should shows like this if the conf file doesn't exist, isn't it? Then you need to click the "Click to create" button to generate the config file.
  8. Cold-Egg

    OpenLiteSpeed with mod_security running as reverse proxy (WAF)

    I will forward this request to the web admin developer. :)
  9. Cold-Egg

    Site shows mime type application/octet-stream - why?

    Could you help to check if this is a compatibility issue with LSCache plugin? Turn the plugin off and try Elementor again. Also, did you use LSCache with default options?
  10. Cold-Egg

    Help: You must enable the intl extension to use the script.

    If you haven't, please install the extension, apt-get install lsphp73-intl lsphp74-intl -y then restart PHP process killall lsphp
  11. Cold-Egg

    Site shows mime type application/octet-stream - why?

    Hi, When running OLS, do you see any application/octet-stream type from your browser? Will it makes any difference if you bypass the CDN? Best, Eric
  12. Cold-Egg

    Changing PHP limit

    No problem, glad to help.
  13. Cold-Egg

    503 error + [lsphp]: Failed to listen socket [/tmp/lshttpd/lsphp.sock]: No space left on device

    Hi @gilles If the no space left on the device message because /tmp partition full, then not much we can help with on the OLS setup. https://www.php.net/manual/en/function.session-gc.php Low traffic sites' session data may not be deleted within the preferred duration. In such a case, please...
  14. Cold-Egg

    Changing PHP limit

    Try /usr/local/lsws/lsphp74/etc/php/7.4/litespeed/php.ini
  15. Cold-Egg

    Ubuntu 20.04 focal dependency issue with libzip4

    Hi, It works for me. 1 wget -O - http://rpms.litespeedtech.com/debian/enable_lst_debian_repo.sh | bash 2 apt-get install openlitespeed 3 service lsws status Maybe you can try apt update && apt upgrade -y before the installation.
  16. Cold-Egg

    PostgreSQL Administration Tools for Ubuntu 20.04 Virtual Machine running OpenLiteSpeed

    Here's the example to install phppgadmin for OpenLiteSpeed Django image, 1. Go to /usr/local/lsws/Example/html/ folder and download https://github.com/phppgadmin/phppgadmin/archive/REL_7-13-0.zip 2. apt-get install unzip lsphp74-pgsql -y, then unzip the phppgadmin zip file. 3. Change the...
  17. Cold-Egg

    Changing PHP limit

    Did you change it on php.ini file? After updating the file, please remember to restart PHP process , e.g. "killall lsphp"
  18. Cold-Egg

    OpenLiteSpeed with mod_security running as reverse proxy (WAF)

    Hi @edan , This config is not from the script setup, is it? Possible to share any domain?
  19. Cold-Egg

    "No request delivery notification has been received from LSAPI application, possible dead lock."

    As mentioned in the log, there was no request delivery notification received from the LSAPI. This means that the PHP process got hung up on something. In order to properly diagnose the issue, please try the following steps: - Turn on debug logging for OLS. - run 'top' in a terminal. Once it is...
  20. Cold-Egg

    OpenLiteSpeed with mod_security running as reverse proxy (WAF)

    Hi @edan , In this case, better raise a ticket with us support@litespeedtech.com and I will show you where's the issue. Best, Eric
Top