Search results

  1. Cold-Egg

    OLS using header IP, not trusted Cloudflare IP, for connection limit?

    Since v1.7.13, OLS whitelisted QUIC.cloud and Cloudflare IPs automatically. What if you clean up those IPs from the Access Control, does that help?
  2. Cold-Egg

    OpenLiteSpeed Drupal at DigitalOcean - image styles not working

    Narrow down the issue to the /var/www/html/web/sites/default/files/.htaccess file. If you remove it, everything works. But the file will auto regenerate by the Drupal. https://www.drupal.org/project/drupal/issues/360057 If you know which function generates it, maybe we can comment out those...
  3. Cold-Egg

    OpenLiteSpeed Drupal at DigitalOcean - image styles not working

    Hi @szy I looked into it, for "DivisionByZeroError: Division by zero in template_preprocess_image_style_preview() ", it is more like a permission issue. Please try to run the following command: chown -R www-data:www-data /var/www/html/web For the styled image, If I removed the context for the...
  4. Cold-Egg

    postfix is not working

    Hi, May I know what the question is? The postfix is a system package, not OpenLiteSpeed-related.
  5. Cold-Egg

    Quick Cloud CDN IPs auto update issue

    Hi, Thanks, I have set it up for two days, and even tried different to clean the list and remove the compose package to reproduce it but failed. If you refresh OLS and still get the same output, please raise a ticket to support@litespeedtech.com with this forum post link appended for further check.
  6. Cold-Egg

    on server startup CPU 100%

    Was it under any attack? Please update OLS to the latest version and try to monitor the access log if you can. If it's still happening, please report the issue to support@litespeedtech.com with the forum post link appended for further help.
  7. Cold-Egg

    Quick Cloud CDN IPs auto update issue

    I will give it a try, may I know the whole installation command?
  8. Cold-Egg

    OpenLiteSpeed Drupal at DigitalOcean - image styles not working

    Alright then, I can only help if there's a reproduction method. If this is cache-related, you can try to purge the cache to narrow down the issue.
  9. Cold-Egg

    OpenLiteSpeed Drupal at DigitalOcean - image styles not working

    Hi, That Static context (exp:^/sites ...) is for making the Thumbnail or something work by default. I'm not familiar with other modules, if you have the reproduce method and share the origin and styles image whole path, then I can help to take a look. If you want, can also send it to...
  10. Cold-Egg

    I really messed up my file permissions and owners

    mmm, have you checked if those file permissions back to the origin after the reinstallation?
  11. Cold-Egg

    I really messed up my file permissions and owners

    Reinstalling the package won't erase the existing config or site, only the admin console password may need to be reset. For the CentOS system, yum -y install --reinstall openlitespeed For the Debian/Ubuntu system, apt-get install --reinstall openlitespeed -y You can back up the site config...
  12. Cold-Egg

    OLS on CyPanel 2.3 | index.html > 404

    Thanks for sharing. I remember Cyberpanel does not come with Apache by default, is it possible that the default OS comes with it?
  13. Cold-Egg

    Is It Possible To Deploy Only Subdomain In OpenLiteSpeed Server?

    Yes, you can deploy OLS with a subdomain for sure. Have you checked if the 502 returns by the OLS server?
  14. Cold-Egg

    OLS on CyPanel 2.3 | index.html > 404

    Yes, please check if you have Apache installed on the server, if so, remove it. Or, the A record is not pointing to this CyberPanel server yet, please check it with the browser dev tool.
  15. Cold-Egg

    OLS on CyPanel 2.3 | index.html > 404

    The 404 image indicates this is served from the Apache web server, do you know why?
  16. Cold-Egg

    I really messed up my file permissions and owners

    For OLS configs? Assume you installed it from the repository, maybe you can try to reinstall the OLS package and see if it helps.
  17. Cold-Egg

    Openlitespeed server + plugin dosent pull images

    If wp-cron is not working, you can set up a system cronjob. See https://docs.litespeedtech.com/lscache/lscwp/troubleshoot/#scheduled-posts-not-publishing-on-time. FYI, our WordPress plugin support is located on the official WordPress plugin support page. If you have further WP-related...
  18. Cold-Egg

    How to change password for wordpress mysql database ?

    To change the WordPress user password, you might want to change it from the database, or phpmyadmin. E.g. https://support.cpanel.net/hc/en-us/articles/4404770838551-How-to-change-Wordpress-User-s-password-with-phpMyAdmin
  19. Cold-Egg

    WordPress missing the MySQL extension

    I just did a quick test and it works. Do you have mysql and common package installed? Please run the following command and share the output here. apt list --installed | grep php81
  20. Cold-Egg

    How to read Environment variables on virtual host in Nodejs app?

    From my test, it works. The attached file is the OLS configuration. app.js const http = require('http'); const hostname = '127.0.0.1'; const port = 3000; const testVar = process.env.TESTVAR const server = http.createServer((req, res) => { res.statusCode = 200...
Top