Search results

  1. Cold-Egg

    What is the optimal arrangement for multiple HTTP + HTTPS websites?

    Correct, only need HTTP and HTTPS two listeners and map to all virtual hosts. Please make sure you enter "www.example.com, example.com " for the www.example.com virtual host domain mapping instead of "*" About cert, you will need to set a cert to HTTPS listener, all vhost will use the cert from...
  2. Cold-Egg

    Using OLS 1.6.16, cannot log into non-HTTP WebAdmin

    Hi, 1. If you set web admin listener to listen to localhost interface only, then you of course not able to access via public network. 2. Feel free to check solutions here to secure phpMyAdmin https://docs.litespeedtech.com/cloud/images/wordpress/#how-do-i-secure-phpmyadmin 3. I test the HTTP...
  3. Cold-Egg

    Trying to install lsphp56 for an old website on Centos 8

    Correct, it's outdated and some old packages are not supported on CentOS8, please consider using lsphp 71~74 instead.
  4. Cold-Egg

    Can't upload pdfs to WordPress, get server error

    If it's not always reproducible, please test it more and check if there's any information in the error log.
  5. Cold-Egg

    ModSecurity Not Working When Using Openlitespeed As Reverse Proxy

    Hi, I remember it should work, but I couldn't find the post. If you can reproduce it, please provide the reproduce method to bug@litespeedtech.com so we can take a deeper look.
  6. Cold-Egg

    Can't upload pdfs to WordPress, get server error

    It works on my test server. Does it only happened on PDF? can you give other files a try?
  7. Cold-Egg

    I'm a newbie asking a newbie question that I couldn't find on google

    Hi @Litbelb, The default path is "/usr/local/lsws/Example/html", you can see it once you upload pages to the folder. Let us know if you want to use Wordpress, we can share some other methods. Best, Eric
  8. Cold-Egg

    WP Admin Bar Disappeared (OLS+DA)

    Hi @komsboy_more When issue happens, what if you disable the ESI from the cache plugin? And will it make any difference if you visit the URL with a query string, e.g. example.com?123 ?
  9. Cold-Egg

    What happened to the Digital Ocean OLS Wordpress stack?

    Nope, it should still work the same way as before.
  10. Cold-Egg

    Cloudflare "520 Error" - OpenLiteSpeed/DirectAdmin

    Hi @slvmr, Can you check if OpenLiteSpeed is still running? If you add IP & Domain to hosts file to bypass CloudFlare, what does site shows? When 520 shows, do you see any error log?
  11. Cold-Egg

    Error with listener 7080

    mhm, no clue. If it is okay to you, when the issue happens again, please send us the issue server info to bug@litespeedtech.com so our developer can take a look directly.
  12. Cold-Egg

    what is OpenLitespeed Django proper workflow?

    If you make code changes and it did not take effect, try kill the lswsgi process. "it seems like I mistakenly didn't make `chown` to proper user after `git pull` " So does it works now?
  13. Cold-Egg

    Centos7 installation OpenLiteSpeed show http&https failed

    Then I am not sure, maybe something related to the VM. You can raise a ticket to bug@litespeedtech.com with server access so our developer can take a look.
  14. Cold-Egg

    Centos7 installation OpenLiteSpeed show http&https failed

    mhm, I just tested it on CentOS and all works fine. Do you see any mariadb package installed? rpm -qa | grep -i mariadb You should see something similar like this MariaDB-server-10.4.15-1.el8.x86_64 MariaDB-client-10.4.15-1.el8.x86_64 MariaDB-common-10.4.15-1.el8.x86_64...
  15. Cold-Egg

    what is OpenLitespeed Django proper workflow?

    Hi, Here's an example, https://docs.litespeedtech.com/cloud/images/django/#how-do-i-import-my-django-project-from-git Please also make sure you access the virtual environment. Best, Eric
  16. Cold-Egg

    Centos7 installation OpenLiteSpeed show http&https failed

    What's the status of mysql service? service mysql status
  17. Cold-Egg

    My site is redirecting to an old IP

    Check this https://stackoverflow.com/questions/64372359/error-this-site-can-t-be-reached-after-change-domain-gcp-openlitespeed Let us know if it helps.
  18. Cold-Egg

    Upgrading PHP from 7.3.22-1+focal to 7.4

    Yes, port 7080 is not allowed by default for security purpose
  19. Cold-Egg

    Removed www from Wordpress URL, not getting CORS error

    Hi, This one looks good to me, RewriteEngine on RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} ^www\. [NC] RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R,L] this part can be removed, ### Forcing HTTPS rule start RewriteEngine On RewriteCond %{HTTPS}...
Top