Search results

  1. Cold-Egg

    How to setup an asp.net core website

    Thanks for the update
  2. Cold-Egg

    Making hidden files 403 unaccessable

    Do you mind sharing with others?
  3. Cold-Egg

    Listener and virtual host cannot running (notice from admin dashboard)

    I'm not sure why it doesn't work on your server. Maybe you can simply use the script to install OLS + MariaDB + WordPress on a fresh server. https://openlitespeed.org/kb/1-click-install/ bash <( curl -k https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh ) -w Let me...
  4. Cold-Egg

    Build Openlitespeed on Alpine Linux

    You cannot control modules like that, need to change CMakeList.txt. And debug symbol can be removed with strip openlitespeed .
  5. Cold-Egg

    Does the one click openlitespeed wordpress install package includes memcached and redis?

    Hi, https://open.litespeedtech.com/kb/1-click-install/ does not contain those packages. To get the same service on DigitalOcean', please use https://github.com/litespeedtech/ls-cloud-image/wiki/Build-WordPress-Image#what-if-i-want-to-use-it-directly method. bash <( curl -sk...
  6. Cold-Egg

    Build Openlitespeed on Alpine Linux

    Those are likely due to debug symbols, and modules compiled.
  7. Cold-Egg

    PHP Backdoor - My WordPress websites was hacked

    Hi, the pastebin shows "Error, this is a private paste or is pending moderation. If this paste belongs to you, please login to Pastebin to view it. "
  8. Cold-Egg

    Google Cloud Compute VM - Ubuntu 20.04 - Openlitespeed

    Hi, May I ask what https://ip-server/login.php suppose to load? because OLS has no default port on 443. Also, the default web admin port is on 7080. If you want to use WordPress, please try to load the image...
  9. Cold-Egg

    MSSQL PDO for LSPHP

    Are you looking for this pdo_sqlsrv? Details are here, https://stackoverflow.com/questions/69200089/mssql-pdo-on-openlitespeed/69201582#69201582
  10. Cold-Egg

    Making hidden files 403 unaccessable

    With ".*", if you have .htaccess file there, it will break the site. So you might want to exclude the file with rewritecond
  11. Cold-Egg

    Where can I find the logs?

    Just want to clarify that "now it started again" means everything is working now, is that correct?
  12. Cold-Egg

    Google Cloud Platform server restart now error 500

    Do you see any other error log under the document root folder? Maybe you can raise a ticket to support@litespeedtech.com with this link appended for further check.
  13. Cold-Egg

    PHP error Undefined array key "usage.page_optm"

    No error on my server, maybe you can submit a ticket to bug@litespeedtech.com for further assistant.
  14. Cold-Egg

    Making hidden files 403 unaccessable

    You can use rewrite to block files as well, e.g. RewriteRule .123.php - [F,L]
  15. Cold-Egg

    Where can I find the logs?

    oh, that's why, please do not set secure On to the HTTP listener
  16. Cold-Egg

    Request Id?

    I guess no if the ID is randomly generated and pass to the server.
  17. Cold-Egg

    Where can I find the logs?

    So the issue should also happen on Chrome right? I did not see 404. Do you have any screenshots about 404? Which listener did you edit? HTTP or HTTPS?
  18. Cold-Egg

    How to block access to xmlrpc.php for ALL USERS using OpenLitespeed ?

    Oh, I guess you are using DirectAdmin. You can create a .htaccess file under the virtual host document root, and put the rule there. This way should work too.
  19. Cold-Egg

    How to block access to xmlrpc.php for ALL USERS using OpenLitespeed ?

    Check https://openlitespeed.org/kb/how-to-autoload-htaccess-with-openlitespeed/ in virtual host level, do you see Rewrite and Rewrite Rules section? Add the following rule there, and them graceful restart the web server RewriteRule ^/(xmlrpc|wp-trackback)\.php - [F,L,NC]
Top