Search results

  1. Cold-Egg

    How to install ionCube 13 in PHP 8.1??

    Once it's released, you can use package update to update it to the latest version.
  2. Cold-Egg

    Rewrite based on HTTP_REFERER

    You can use RewriteCond %{REQUEST_URI} to match mypage, and redirect all to the main domain URL in the .htaccess file without using the context. RewriteCond %{REQUEST_URI} mypage RewriteRule .* https:/yourmaindomain or just redirect mypage to / RewriteRule ^mypage/(.*)$ /$1
  3. Cold-Egg

    No OLS 1.8 in repo

    no ETA yet, check https://forum.openlitespeed.org/threads/latest-version-number-mismatch-cannot-find-v1-8-0.5947/#post-16275 if you want to use the latest version manually.
  4. Cold-Egg

    open.litespeedtech.com site cert invalid

    Thanks for the report, we haven't used that domain for a very long time. Please ignore it.
  5. Cold-Egg

    No OLS 1.8 in repo

    Hi, It will be pushed to the repo once it's marked as Stable released. https://openlitespeed.org/release-log/
  6. Cold-Egg

    Chown warning on installation

    The issue should have been addressed with the latest package. To update to the latest, you can use apt update and upgrade the package.
  7. Cold-Egg

    I really messed up my file permissions and owners

    I remember package update would fix the permission, not sure if lsup is able to fix it or not. Sure, you can raise an issue on git.
  8. Cold-Egg

    Ubuntu 24.04 Support

    Hi, The package should support 24.04 already, but there are still some minor issues that need to be fixed. I'd recommend you to try it after a few days.
  9. Cold-Egg

    How configure ASGI instead of default WSGI

    Do you want to use the production site and Django with the same domain? To set up a reverse proxy, you don't need to stop anything, please check https://docs.openlitespeed.org/docs/advanced/proxy setup guide. A `service lsws stop` could stop it, but you don't have to do it. Simply change the...
  10. Cold-Egg

    https redirect issue

    Sure thing.
  11. Cold-Egg

    https redirect issue

    It's not needed, you can remove it or change Apache's port number from e.g. 80/443 to 1080/1443.
  12. Cold-Egg

    https redirect issue

    The listener with Port 80 is not up, maybe you have a config issue or another service is using the same port, you might need to fix this part first.
  13. Cold-Egg

    Assistance Required with ModSecurity Rule Compatibility for OpenLiteSpeed

    I tried to use https://github.com/owasp-modsecurity/ModSecurity/wiki/Reference-Manual-(v2.x)-Variables#session as an example, and it works on my OLS site. SecRule REQUEST_COOKIES:PHPSESSID !^$ "phase:2,id:1070,nolog,pass,setsid:%{REQUEST_COOKIES.PHPSESSID}" SecRule REQUEST_HEADERS:User-Agent...
  14. Cold-Egg

    How to install ionCube 13 in PHP 8.1??

    CyberPanel uses the package from https://rpms.litespeedtech.com/debian/pool/main/jammy/ Which version is lsphp81-ioncube_12.0.5. I will forward the update request(ioncube 13) to our build master but no ETA. To get the version now, you might want to build it on your own, or wait for the new...
  15. Cold-Egg

    Latest version number mismatch (Cannot find v1.8.0)

    Possibly our dev has some issues that need to be checked. You can still use 1.7.19 and lsup to v.1.8.0 or even 1.8.1 as a temporary solution.
  16. Cold-Egg

    https redirect issue

    Try putting the following rules on the top of your .htaccess file, graceful restart OLS, and see if it works. RewriteCond %{HTTPS} !on RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI}/$1 [R,L]
  17. Cold-Egg

    Assistance Required with ModSecurity Rule Compatibility for OpenLiteSpeed

    I didn't test it, the first two rules look ok to me but 3&4. If you check the log, is the rule being hit?
  18. Cold-Egg

    How do I add 400 domain Alias + SSL to them?

    You might need to edit the listener as well. For wildcard, you might want to check this post from CyberPanel forum https://community.cyberpanel.net/t/how-to-set-up-wildcard-ssl-on-cyberpanel-openlitespeed/30652
  19. Cold-Egg

    OneClick Install: Unable To Locate Package OpenLiteSpeed

    okok, not sure what's the old command you ran, but this one is correct.
Top