This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
451
CentOS 7 Problems / Re: query (cache) '[domainname].com/MX/IN' denied
« on: May 15, 2020, 12:06:48 PM »
You have a nameservers hell going on
Pick one nameserver set, set all your domains to it, and add glue records. Too many lookups are cause DNS to fail
Code: [Select]
NS1.SITEURLHOSTING.COM. IN NS
;ANSWER
;AUTHORITY
SITEURLHOSTING.COM. 1799 IN SOA ns3.siteurl.in. support.siteurl.in. 2020051320 3600 7200 1209600 86400
;ADDITIONAL
Pick one nameserver set, set all your domains to it, and add glue records. Too many lookups are cause DNS to fail
452
CentOS 7 Problems / Re: query (cache) '[domainname].com/MX/IN' denied
« on: May 15, 2020, 11:54:52 AM »
Make sure your nameservers have glue records at the registrar. Also make sure the domains don't have ns1.centos-webpanel as their ns
453
E-Mail / Re: Roundcube login redirects to blank page
« on: May 15, 2020, 11:41:43 AM »
tail -n 50 /usr/local/cwpsrv/logs/error_log
454
CentOS 7 Problems / Re: query (cache) '[domainname].com/MX/IN' denied
« on: May 15, 2020, 11:23:27 AM »
If your hosting tristarsudan.com then there may be an issue.
If you are not hosting the domain, it could be that you got an IP that someones old namservers point to. It shouldn't be too much of an issue if it's the latter, unless you start taking thousands of queries per minute.
If you are not hosting the domain, it could be that you got an IP that someones old namservers point to. It shouldn't be too much of an issue if it's the latter, unless you start taking thousands of queries per minute.
455
E-Mail / Re: SMTP TLS or SSL not working
« on: May 15, 2020, 11:04:17 AM »
Now that you have a valid cert, Gmail should work.
456
E-Mail / Re: SMTP TLS or SSL not working
« on: May 15, 2020, 10:42:48 AM »
/scripts/install_acme
Then try saving hostname again
Then try saving hostname again
457
E-Mail / Re: SMTP TLS or SSL not working
« on: May 15, 2020, 10:24:35 AM »
grep "Error" /root/.acme.sh/cwp_certs/acme.sh.log
grep "panel.uxiology.com" /root/.acme.sh/cwp_certs/acme.sh.log
acme.sh --config-home /root/.acme.sh/cwp_certs/ --list
grep "panel.uxiology.com" /root/.acme.sh/cwp_certs/acme.sh.log
acme.sh --config-home /root/.acme.sh/cwp_certs/ --list
458
CentOS 7 Problems / Re: Default Web page showing instead of html pages
« on: May 15, 2020, 09:51:56 AM »
Rebuild vhosts
459
E-Mail / Re: SMTP TLS or SSL not working
« on: May 15, 2020, 08:44:01 AM »
Verify return code: 18 (self signed certificate)
Can't be self signed with Crapgle.
Goto "Change Hostname" and make sure autossl is selected to get a cert from LetsEncrypt
Can't be self signed with Crapgle.
Goto "Change Hostname" and make sure autossl is selected to get a cert from LetsEncrypt
460
E-Mail / Re: SMTP TLS or SSL not working
« on: May 15, 2020, 08:19:46 AM »
openssl s_client -showcerts -connect panel.uxiology.com:995
openssl s_client -showcerts -connect panel.uxiology.com:465
check the output of the above 2 commands. Specifically look at the Cert Name info
openssl s_client -showcerts -connect panel.uxiology.com:465
check the output of the above 2 commands. Specifically look at the Cert Name info
461
New Modules / [SCRIPT] fix_500
« on: May 15, 2020, 02:11:14 AM »
The following script should work to fix the dreaded error 500 CWP issue on both CentOS 6 and 7 automatically
1) login as root
2) nano /scripts/fix_500
3) paste contents below
4) chmod 700 /scripts/fix_500
5) run /scripts/fix_500
1) login as root
2) nano /scripts/fix_500
3) paste contents below
4) chmod 700 /scripts/fix_500
5) run /scripts/fix_500
Code: [Select]
#!/bin/bash
yum -y update cwpphp --enablerepo=cwp
cos=`uname -r | grep -oP "el\K(.)"`
ver=`grep "version" /usr/local/cwpsrv/htdocs/resources/admin/include/version.php | cut -d "\"" -f 2`
case $cos in
[6]*)
echo "CentOs $cos running CWP $ver"
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget dl1.centos-webpanel.com/files/cwp/cwp2-$ver.zip
unzip -o cwp2-$ver.zip
rm -f cwp2-$ver.zip
;;
[7]*)
echo "CentOs $cos running CWP $ver"
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget static.cdn-cwp.com/files/cwp/el7/cwp-el7-$ver.zip
unzip -o -q cwp-el7-$ver.zip
rm -f cwp-el7-$ver.zip
;;
*)
echo "Not CentOs"
;;
esac
chattr -R -i /usr/local/cwpsrv/var/services/
cd /usr/local/cwpsrv/var/services/
wget static.cdn-cwp.com/files/cwp/el7/cwp-services.zip
unzip -o -q cwp-services.zip
rm -f cwp-services.zip
sed -i "s/ioncube_loader_lin_7.0/ioncube_loader_lin_7.2/g" /usr/local/cwp/php71/php.ini
sh /scripts/restart_cwpsrv
sh /scripts/update_cwp
462
E-Mail / Re: SMTP TLS or SSL not working
« on: May 14, 2020, 11:32:53 PM »
So you "Hostname" is panel.domain.com?
In my example:
Hostname: server3.schaffner.org
domain: schaffner.org
in gmail, I can't use mail.schaffner.org, as GM doesn't forward a "ServerName" request. I have to use server3.schaffner.org as both incoming and outgoing, as postfix's default ssl certificate (NON SANS) is the hostname cert
In my example:
Hostname: server3.schaffner.org
domain: schaffner.org
in gmail, I can't use mail.schaffner.org, as GM doesn't forward a "ServerName" request. I have to use server3.schaffner.org as both incoming and outgoing, as postfix's default ssl certificate (NON SANS) is the hostname cert
463
CentOS-WebPanel Bugs / Re: Suspended Account with DNS record pointing to another server not being suspended
« on: May 14, 2020, 11:30:26 PM »
DNS is DNS. If you point it away from your server, then there's nothing you can do about the other server. One Option might be to point the DNS at your server, and use a 301 ridirect to shopify. So when you suspend, the redirect goes away and they see the suspended page.
You will have to manually NULL route their DNS to your suspended page when you suspend if you keep the DNS pointed away from your server.
You will have to manually NULL route their DNS to your suspended page when you suspend if you keep the DNS pointed away from your server.
464
CentOS-WebPanel GUI / Re: CWP File Manager in Account has disappeared
« on: May 14, 2020, 08:02:47 PM »
In cwp admin, search for feature manager
465
E-Mail / Re: SMTP TLS or SSL not working
« on: May 14, 2020, 08:01:24 PM »
What "mail servers" are you using? Hostname, or mail.domain.com