Search results

  1. Cold-Egg

    Multiple lsphp with high CPU usage

    The cache seems working correctly. LSCache will be based on the URL, so, when you switch the URL, all cached files will be invalidated, that's why you saw the CPU spikes.
  2. Cold-Egg

    Custom Error Page: using script path

    The context looks fine to me. I am not clear about how you set up the /httperror/404 page, it seems like you want to redirect to 404 by the App instead of the web server. If you want to custom OLS error page, please check https://openlitespeed.org/kb/custom-error-page/. About the 400 error, no...
  3. Cold-Egg

    Multiple lsphp with high CPU usage

    May I know what is this CMS? If possible, please implement lscache to reduce the PHP process and MySQL load
  4. Cold-Egg

    ERROR bad socket address

    Looks fine to me, do you have other listeners? If you have Slack, maybe you can join golitespeed community(https://litespeedtech.com/slack) and message me @eric from there, I will help you from there more quickly.
  5. Cold-Egg

    ERROR bad socket address

    Inside of your /usr/local/lsws/conf/httpd_config.conf file, there's a section of listener, could you share the config here?
  6. Cold-Egg

    Updating Mariadb

    Dump the DB just in case. mysqldump -u root -p --all-databases > databasedump.sql Then you can edit the version e.g. 10.6 to 10.7 from "/etc/apt/sources.list.d/mariadb_repo.list" Then upgrade it with following commands apt update apt upgrade apt-get install mariadb-server systemctl...
  7. Cold-Egg

    ExtConn timed out while connecting. CyberPanel

    For PM2 and Node connection timeout issue, it's not OLS related, maybe you could open a ticket here https://platform.cyberpersons.com/ or email to contact@cyberpanel.net
  8. Cold-Egg

    Joomla bug

    Could you submit the issue to bug@litespeedtech.com with the post link appended, we will check it further from there.
  9. Cold-Egg

    URI refers to a static file with PATH_INFO [/] Error

    After you changed both the home and site URLs from blog.domain.com to domain.com/blog, please purge the cache and restart the web server and see if it helps to fix the issue. If not working, feel free to join LiteSpeed community on Slack and message me @eric from there.
  10. Cold-Egg

    Installing openlitespeed on ubuntu 22.04

    Hi @meramsey Thanks for the information, I was replying to Vasdim's question about the lsphp72 package on Ubuntu 22.04. Correct, for Ubuntu 22, we will prepare lsphp74-81.
  11. Cold-Egg

    lsPHP81 Imagick support?

    Thanks for the report @meramsey , it makes sense, will forward it to the team.
  12. Cold-Egg

    How to Use fastapi with OLS

    For OLS as a reverse proxy, it won't take many resources, but I am not sure about the performance between Flask and fastapi+gunicorn, so no comment on it.
  13. Cold-Egg

    wordpress generated .htaccess doesn't work

    mmmm, then you might want to enable the rewrite log and check it from the error log, to see which rule has been matched.
  14. Cold-Egg

    wordpress generated .htaccess doesn't work

    Please try to copy the .htaccess file as a backup, then remove rules from "# BEGIN WP Rocket " to "# END WP Rocket ", restart lsws, and see if the webp starts loading.
  15. Cold-Egg

    Website is not obeying rewrite .htaccess data

    No problem, glad to help. :)
  16. Cold-Egg

    Cannot issue SSL. Error message: (2006, 'MySQL server has gone away')

    If you manually run the certbot renew for this domain, what's the output in SSH console?
  17. Cold-Egg

    Error message: Virtual Host Directory already exists. [404]

    may I know if there's any control panel on this server? Did you get this error from control panel or OpenLiteSpeed web admin?
  18. Cold-Egg

    Website is not obeying rewrite .htaccess data

    Try to replace RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteCond %{HTTPS} off RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] with RewriteCond %{HTTPS} off [OR] RewriteCond...
  19. Cold-Egg

    Website is not obeying rewrite .htaccess data

    So the site URL you want to use is litti.biz, not www.litti.biz. But the following rules mean, if the URL does not start from www, then redirect to www. ``` RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] ```
  20. Cold-Egg

    openlitespeed is functioning normally message

    @saiful iqmal Maybe you can send the issue to support@litespeedtech.com with this forum post link appended, we may help you directly from there and post the result here.
Top