Search results

  1. Cold-Egg

    What happened to Digital Ocean Wordpress OLS stack?

    Hi, Nothing change, I just launched a new one and did see the setup script. Can you please SSH to the console again? or try to launch a new one. Best, Eric
  2. Cold-Egg

    404 error when friendly URLs are activated in a multi-store prestashop

    Can you share the content of the .htaccess before and after the friendly URL function? By the way, if you plan to use LSCache for PrestaShop, then it doesn't work with OpenLiteSpeed.
  3. Cold-Egg

    Roundcube installation

    Hi, I didn't try it before, you can check WordPress setup https://openlitespeed.org/kb/wordpress/ and replace it with Roundcube.
  4. Cold-Egg

    Please help with 301 redirects in .htaccess file

    Glad to help. By the way, if you are happy with our services, please rate us on Google! https://t.co/YhmP3MFl4f?amp=1 We would appreciate the positive feedback. Thank you in advance :)
  5. Cold-Egg

    Please help with 301 redirects in .htaccess file

    How about this RewriteRule ^the-best-free-zombie-games-for-ipad https://getiosstuff.com/best-zombie-games-for-iphone-ipad [R=301, L] <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d...
  6. Cold-Egg

    Multiple Redirects with domain name

    Try this, RewriteCond %{HTTPS} off [OR] RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
  7. Cold-Egg

    Improving OLS WordPress Loading

    Does LSCache is working? Any screenshot of the waterfull could help, https://gtmetrix.com/blog/how-to-read-a-waterfall-chart-for-beginners/
  8. Cold-Egg

    Please help with 301 redirects in .htaccess file

    Hi, OpenLiteSpeed support the RewriteRule, so you can try RewriteRule OLD_URL NEW_URL [R=301]
  9. Cold-Egg

    Ideal Tuning Settings For Ubuntu Server

    The default settings are good for most scenarios. Probably no need to change things unless you hit any limit. It might bring you some ideas after doing some benchmarks.
  10. Cold-Egg

    Error with listener 7080

    Hi, Let's encrypt probably not the issue. Better get the result next time with the following command so you can see which process occupied the admin port, netstat -antupl | grep 7080 Best
  11. Cold-Egg

    How to create virtual host without using webadmin ?

    Hi, Maybe this script can give you some idea, /bin/bash <( curl -sk https://raw.githubusercontent.com/litespeedtech/ls-cloud-image/master/Setup/vhsetup.sh ) -d www.example.com Feel free to download/use it.
  12. Cold-Egg

    OLS setup and config

    Hi, There's no existing CLI yet, so to set a new password for admin user from console, you can try this echo "admin:$(/usr/local/lsws/admin/fcgi-bin/admin_php -q /usr/local/lsws/admin/misc/htpasswd.php mypassword)" > /usr/local/lsws/admin/conf/htpasswd; and create a bash script for new...
  13. Cold-Egg

    Install mysql on existing openlitespeed server running on Ubuntu 18.04

    Hi, Install Mysql Service, you can check https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04 Install lsphp, check this doc for both yum and apt methods, https://docs.litespeedtech.com/extapp/php/getting_started/ Best
  14. Cold-Egg

    Having trouble installing Symantec Encryption Everywhere SLL certificate from name.com on OpenLiteSpeed WordPress on DigitalOcean

    @wekesa Just FYI if you want to use Let's Encrypt some day, just follow https://docs.litespeedtech.com/cloud/images/wordpress/#step-3 to apply the cert from the prompt script.
  15. Cold-Egg

    Redirect to HTTPS WWW - How Do I Achieve it?

    If the connection start with www, then it won't mach "RewriteCond %{HTTP_HOST} !^www." and will skip "RewriteRule ^(.*)$ https://www.%{SERVER_NAME}/$1 [L,R=301]"
  16. Cold-Egg

    How to update php version from 7.3 to 7.4 with OLWS on Ubuntu 20.04?

    Hi, It should works on WordPress site, did you restart php yet? killall -9 lsphp PHP --version shows 7.3.17 is normal, because it has a softlink to lsphp73. Feel free to use follow command to link php74 ln -sfn /usr/local/lsws/lsphp74/bin/php /usr/bin/php Please keep php73 exist Best, Eric
  17. Cold-Egg

    OLS not starting

    Any more error shows if you run follow commands? /usr/local/lsws/bin/lswsctrl stop /usr/local/lsws/bin/lswsctrl start Any output from ps? ps axu | grep -i http
  18. Cold-Egg

    Accessing OLS using Docker image & DockStation on Windows

    Hi, I installed the docker desktop version on my windows NB and ran the openlitespeed-docker-env solution, all went well. Did not change anything yet. Please see below image that I can visit phpmyadmin (https://localhost:8443), also I can visit openlitespeed web admin (https://localhost:7080)...
  19. Cold-Egg

    CORS policy issues regarding fonts on AWS Cloudfront

    https://stackoverflow.com/questions/63873274/cors-policy-issues-regarding-fonts-on-aws-cloudfront OLS doesn't read .htaccess for Header directive, you need to use Context way openlitespeed.org/kb/how-to-set-up-custom-headers
  20. Cold-Egg

    Accessing OLS using Docker image & DockStation on Windows

    Hi, Are you using https://github.com/litespeedtech/ols-docker-env? I am not so sure about dockerstation, can you find any docker-machine ip from that docker tool? then you can try to visit https://docker-machine:7080 instead of localhost IP
Top