Search results

  1. Cold-Egg

    Issue with wp litespeed-crawler conf

    Hi, For LSCWP-related issue, please help to post it on the LSCache for WordPress support forum!
  2. Cold-Egg

    lsphp83-intl not loaded

    Please try to restart the php process and see if it helps. https://docs.openlitespeed.org/config/php/detached/#stop-all-immediately
  3. Cold-Egg

    lsphp74 on Ubuntu 24.04

    Check the package list here: https://rpms.litespeedtech.com/debian/pool/main/noble/. As you can see, the oldest PHP package available for Ubuntu 24.04 on LS repo list is version 8.1. You may want to upgrade the site to support PHP 8, or you could try building PHP 7 on Ubuntu 24.04 yourself, but...
  4. Cold-Egg

    How to Prevent Cross-Site Infection on OLS Server?

    You might also want to consider using some free control panels with OpenLiteSpeed, as they automatically create a Linux user:group for each account and enable PHP suEXEC by default, offering enhanced security.
  5. Cold-Egg

    How to remove PHP 7.4

    If you installed the OLS v1.8.3 Debian package on the Ubuntu/Debian server, it should depend on php 8.3, and the 7.4 can be removed. Have you verified which URL or in which case you triggered the "PHP Warning"?
  6. Cold-Egg

    How to Prevent Cross-Site Infection on OLS Server?

    That should be included through. You can also consider implementing suEXEC, but this may not work if all the accounts run as the same Linux user&group. You might also want to check if open_basedir helps or not in your case.
  7. Cold-Egg

    How to Prevent Cross-Site Infection on OLS Server?

    May I know if there's any control panel on the server? And, do you use the same user account for all the virtual hosts? Features like namespace can implement sandboxes to isolate files, users, processes from all others.
  8. Cold-Egg

    How to remove PHP 7.4

    Does the warning happen when you visit OLS web admin? If the current OLS version/package depends on PHP 7.4, you might want to keep it.
  9. Cold-Egg

    phpmyadmin on OLS

    Could you share the phpmyadmin URL or a screenshot of the issue?
  10. Cold-Egg

    vhsetup.sh

    It should work, could you share the command you applied and the server config here or Inbox me the information?
  11. Cold-Egg

    Migrating from apache2 to OpenLiteSpeed (OLS)

    In the future, maybe you can consider to setup an OpenliteSpeed to handle the https and websites without a proxy. The force www and SSL can be done by the following rewriterules. RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.*)$ https://www.example.com/$1...
  12. Cold-Egg

    OpenLiteSpeed 1.7.19 on CentOS – Large Images Failing to Load

    Glad to know you have found the issue. We can keep it, in case other users hit the same issue.
  13. Cold-Egg

    HTTP2 or HTTP3 traffic between reverse proxy and backend required

    Similar to this post. Maybe you can submit a feature request to OpenLiteSpeed GitHub.
  14. Cold-Egg

    Failed to start lsws.service: Unit lsws.service not found.

    This is because the OpenLiteSpeed package relies on certain PHP packages. If you remove something like lsphp83 and its extensions, it could also remove the web server. apt remove lsphp83* ... The following packages will be REMOVED: lsphp83 lsphp83-common lsphp83-imap lsphp83-mysql...
  15. Cold-Egg

    How to Set canonical for all PDF Files in subdirectory?

    @krlabs, that is expected behavior, to set custom headers with OpenLiteSpeed, please follow https://docs.openlitespeed.org/config/headers/, rewrite header won't work.
  16. Cold-Egg

    How to Restrict Direct Access to Server’s Real IP When Using Cloudflare (OpenLiteSpeed)

    FEI, here are the WAF setup, Throttling Setup, and reCAPTCHA Setup guides that could help to mitigate DDoS attacks from the web server side.
  17. Cold-Egg

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

    Hi, if you think the 520 is a backend server issue, please check the web server error log and see what's in there. FYI, you don't need to whitelist CloudFlare IP again since it's whitelisted by the web server automatically.
  18. Cold-Egg

    Opcache issue on Openlitespeed 1.8

    Glad to know you have managed to fix the issue. You can also consider setting an empty value or 0 to not limit the PHP process.
  19. Cold-Egg

    server needs restart after changing the node application content

    I assume you are using app context from the OpenLiteSpeed. Since OpenLiteSpeed comes with Node in detached mode by default, you will need to restart the service to make any new settings take effect. If the app is still under development, maybe you can consider using node to serve the app, and...
  20. Cold-Egg

    node application blocks port 80 and lsws from restarting

    It is normal, that if the HTTP port is occupied, then you might be failed to start the OpenLiteSpeed service. You should check why the node service brings up the Nginx on the same server.
Top