Centos 8 testing is now started, seems all are working soon will be available.

Best posts made by sandeep
-
CWP and centos 8
-
Generate secure password with this tool
Hi i'm introducing a new password generator tool, via this tool you can generate secure passwords combination listed below cases and numerical. https://www.mysterydata.com/passgen/
Numbers (0123456789) Lowercase (abcdefghijklmnopqrstuvwxyz) Uppercase (ABCDEFGHIJKLMNOPQRSTUVWXYZ) ASCII symbols (!"#$%&'()*+,-./:;<=>?@[]^_`{|}~) Space ( )
it uses:
Math.random() (low security)
crypto.getRandomValues() (high security)this tool doesn't store any password generated, its 100% safe to use.
-
RE: How to update phpMyAdmin v4.7.9 outdated version to the latest phpMyAdmin v4.9.2 for CWP and CWP PRO for Centos 7 !
actually issue is cwp update it reverting back the phpmyadmin version. I need to check it but didn't getting free time for it hopefully i'll check it in 1-2 days
-
RE: CWP and centos 8
@JosePP its in dev beta when it is ready i'll let you know, the installer is not yet public
-
RE: OpenLiteSpeed + CWP
hi, openlitespeed test is in our list. I'll try to check in few days and post some tutorial on it.
-
RE: OpenLiteSpeed + CWP
testing further, will post a detailed tutorial probably with video.
-
How to Get A+ Score Rating with SSLLabs Qualys in CWP – Control web panel
I've created a dedicated post for CWP upon how to get A+ score
https://www.mysterydata.com/get-a-score-rating-with-ssllabs-qualys-in-cwp-control-web-panel/If you need help or make a correction let me know
-
We've now New support portal
We've now support portal you can hire me from here, payment is basis on first work then pay or if you want to pay first you're welcome.
https://support.mysterydata.com/payment method : -
Global:
PAYPALIndia :
UPI, IMPS -
RE: Service httpd start error
@Locvps said in Service httpd start error:
mod_ruid2.conf
edit the
mod_ruid2.conf
config under conf.d and comment out the load module lineand for servername add
ServerName hostname or ServerName localhost
in
httpd.conf
and restart httpd. -
RE: Update roundcube in Vesta CP on Ubuntu 16.04?
@mitialademurcia said in Update roundcube in Vesta CP on Ubuntu 16.04?:
And I would also like to know how to put access to webmail from the subdomain https://webmail.mydomain.com instead of https://mydomain.com/webmail (with https redirection included please)
you need to proxy pass ip/webmail this needs manual apache/nginx configs.
-
RE: CWP - Brotli not work and NGINX not start after upgrade of CWP Pro from v0.9.8.906 to CWP Pro v0.9.8.907 even with the last update to CWP Pro v0.9.8.913.
Hello
this is very strange in order to debug please send the output for this commands :yum list nginx yum info nginx nginx -V
-
RE: Service httpd start error
Kindly send the output for this commands
ls -la /etc/httpd/conf.d
ls -la /etc/httpd/conf
-
RE: Update roundcube in Vesta CP on Ubuntu 16.04?
@mitialademurcia hi here is the tutorial for upgrading roundcube
Update Roundcube on Ubuntu 18.04/16.04/VestaCP
https://www.mysterydata.com/install-and-update-roundcube-latest-version-on-ubuntu-vestacp/ -
RE: CWP - Brotli not work and NGINX not start after upgrade of CWP Pro from v0.9.8.906 to CWP Pro v0.9.8.907 even with the last update to CWP Pro v0.9.8.913.
seems I've found the issue, nginx is installed from epel repo it should be installed via official nginx repository.
you need to follow this :
Install nginx from offiical nginx repo first remove the current nginx :
yum remove nginx
Second - check you've official nginx repo :
/etc/yum.repos.d/nginx.repo
if there is no nginx.repo you need to create it :
nano /etc/yum.repos.d/nginx.repo
add the following line and save it (it is recommended to change from enabled=0 to enabled=1 if you've nginx.repo already and the value is set to : enabled=0):
[nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1
third - install nginx from the official repo
yum --enablerepo=nginx install nginx
Now rebuild webserver from cwp :
CWP.admin >> Webserver settings >> Select webserver >> choose nginx + apache/whatever you need to choose, and hit >> Save & rebuild Configuration button
Now follow nginx brotli installation :
https://www.mysterydata.com/how-to-enable-brotli-compression-in-nginx-cwp-vestacp-and-on-linux-os/ -
RE: Service httpd start error
do you've mod ruid2 config file anywhere and whats in it ?
-
RE: Update roundcube in Vesta CP on Ubuntu 16.04?
Hi whats the current version of roundube installed?
-
RE: CWP - Brotli not work and NGINX not start after upgrade of CWP Pro from v0.9.8.906 to CWP Pro v0.9.8.907 even with the last update to CWP Pro v0.9.8.913.
glad to know the nginx brotli installation is now fixed
regarding the nginx template you sent here is for nginx proxy template vhost, I'm assuming Apache is the main server and you need to have .htaccess entry :
https://wordpress.org/support/article/htaccess/If you want to use nginx + php-fpm use this nginx rewrite rule :
location / { try_files $uri $uri/ /index.php?$args; location ~* ^.+\.(jpeg|jpg|png|gif|bmp|ico|svg|css|js)$ { expires max; }
-
RE: Service httpd start error
@Locvps this are not any issue mod ruid2 is enabled two times may be in mod_ruid2.conf and in httpd.conf too. Updates can cause this.
-
RE: Update roundcube in Vesta CP on Ubuntu 16.04?
you need to follow step 4
https://www.mysterydata.com/install-and-update-roundcube-latest-version-on-ubuntu-vestacp/Step 4
(you can skip this step if you’re updating from 1.3.x):This step will install fresh roundcube Database.
Now you need to use command line mysql its easy just follow the commands one by one :mysql DROP DATABASE roundcube; CREATE DATABASE roundcube; quit
Now we’ll import Roundcube DB
mysql roundcube < /var/lib/roundcube/SQL/mysql.initial.sql
if it is still db issue reset the rouncube DB user password and update it in
/var/lib/roundcube/config/config.inc.php
-
RE: CWP - Brotli not work and NGINX not start after upgrade of CWP Pro from v0.9.8.906 to CWP Pro v0.9.8.907 even with the last update to CWP Pro v0.9.8.913.
@Automata said in CWP - Brotli not work and NGINX not start after upgrade of CWP Pro from v0.9.8.906 to CWP Pro v0.9.8.907 even with the last update to CWP Pro v0.9.8.913.:
Hi, you are very very kind, thank you.
For CWP Pro i use Nginx & Varnish & Apache and not have the .htacces.
You can tell me precisely where I need to insert this command because I'm trying but it doesn't work:
location / {
try_files $uri $uri/ /index.php?$args;
location ~* ^.+.(jpeg|jpg|png|gif|bmp|ico|svg|css|js)$ {
expires max;
}Thanks in advance for the support.
you need to add this line only in "location / { " section
try_files $uri $uri/ /index.php?$args;
***please note use this only if you're using nginx + php-fpm i.e. nginx as a main server.