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.
616
CentOS 7 Problems / Re: Error with DNS and Clusters.
« on: April 25, 2020, 04:34:28 PM »
Quite simply. You're not updating the serial number for the zone. So bind doesn't know to send the update to the slave servers. Use SED to update the serial +1
617
Apache / Re: 408 HTTP error
« on: April 25, 2020, 04:32:33 PM »
You don't happen to have modsecurity enabled by chance?
618
How to / Re: [AntiDDOS] Install vDDoS on CWP to AntiDDOS, DOS, SYN Flood, HTTP Floods attack
« on: April 25, 2020, 02:36:55 PM »
This isn't a solution if your webserver is constantly DDoS'd. It's an emergency system for that "One Off" situation. If your servers is constantly under load from DDoS, you should ditch the domains that are getting hammered. People who run websites that are constantly under attack should be using high dollar load balanced systems to deal with their issues.
620
CentOS-WebPanel Bugs / Re: No Loader is installed, please try to run this command or contact support: sh /s
« on: April 25, 2020, 12:10:31 PM »
The solution has been posted at least 20 times on this forum. Look at the 500 error topics.
621
Apache / Re: 408 HTTP error
« on: April 25, 2020, 10:40:51 AM »
Then there should be no reason with a descent internet connection that it should fail. Check your PHP log to see if there are write errors for anything.
CWP /usr/local/cwpsrv/log/error_log
Accts /usr/local/apach/domlogs
CWP /usr/local/cwpsrv/log/error_log
Accts /usr/local/apach/domlogs
622
E-Mail / Re: able to receive email but cannot send
« on: April 25, 2020, 10:26:26 AM »
I really wish people would stop changing things when they ask questions. There is absolutely NO NEED to "Mask" domain names, "Public IP's" or "Certificate Info that the browser displays". When you do this, you make it almost impossible to help you.
Please DO mask usernames/passwords however.
END OF RANT
now onto your question (Cause now I'm guessing)
"Somebody@domain.com":
domain.com hosted on your server: Glenn is correct
domain.com is NOT hosted on your server. See below
SMTP Error (550): https://serversmtp.com/smtp-error/
550
It usually defines a non-existent email address on the remote side.
Though it can be returned also by the recipient’s firewall (or when the incoming server is down), the great majority of errors 550 simply tell that the recipient email address doesn’t exist. You should contact the recipient otherwise and get the right address.
Please DO mask usernames/passwords however.
END OF RANT
now onto your question (Cause now I'm guessing)
"Somebody@domain.com":
domain.com hosted on your server: Glenn is correct
domain.com is NOT hosted on your server. See below
SMTP Error (550): https://serversmtp.com/smtp-error/
550
It usually defines a non-existent email address on the remote side.
Though it can be returned also by the recipient’s firewall (or when the incoming server is down), the great majority of errors 550 simply tell that the recipient email address doesn’t exist. You should contact the recipient otherwise and get the right address.
623
E-Mail / Re: Gmail Marks Emails As Spam
« on: April 25, 2020, 10:18:54 AM »
Google maintains an internal "Gray List" of hosts that it has not blocked, but monitors for spam. If your server is on that list, they pretty much mark everything you send as spam. That's what I was getting to.
Google wouldn't know a true graylist if it hit them square in the face. They do what they want, even if it goes against RFC.
Google wouldn't know a true graylist if it hit them square in the face. They do what they want, even if it goes against RFC.
624
CentOS 6 Problems / Re: No Loader is installed, please try to run this command or contact support
« on: April 25, 2020, 09:43:45 AM »
Did you do the manual update of the files?
try /scripts/update_cwp
try /scripts/update_cwp
625
E-Mail / Re: Gmail Marks Emails As Spam
« on: April 25, 2020, 09:41:33 AM »
From google themselves: https://support.google.com/mail/answer/1366858?hl=en
You need to know why they are marked as spam to clear them up. You may need to contact google to get your IP out of the gray list.
You need to know why they are marked as spam to clear them up. You may need to contact google to get your IP out of the gray list.
Code: [Select]
Why emails have spam warning labels
Gmail automatically identifies suspicious emails and marks them as spam. When you open your Spam label, you'll see emails that were marked as spam by you or Gmail. Each email will include a label at the top that explains why Gmail sent it to Spam.
Spoofed email addresses
Phishing scams
Messages from an unconfirmed sender
Administrator-set policies
You tried to unsubscribe from this sender
Messages content is empty
Messages you sent to Spam
626
CentOS 6 Problems / Re: No Loader is installed, please try to run this command or contact support
« on: April 25, 2020, 09:28:19 AM »
From Sandeep to several complaining of the same issue
Quote
Hello,
Test what is the cwp PHP version and if it is updated to 7.2
/usr/local/cwp/php71/bin/php -v
PHP 7.2.30
if PHP was not updated to 7.2 then try manually
yum update cwpphp --enablerepo=cwp
**Manual update CentOS 7 (ignore if you have CentOS 6)**
```
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget static.cdn-cwp.com/files/cwp/el7/cwp-el7-0.9.8.961.zip
unzip -o -q cwp-el7-0.9.8.961.zip
rm -f cwp-el7-0.9.8.961.zip
```
**Manual update CentOS 6 (ignore if you have CentOS 7)**
```
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget dl1.centos-webpanel.com/files/cwp/cwp2-0.9.8.765.zip
unzip -o cwp2-0.9.8.765.zip
rm -f cwp2-0.9.8.765.zip
```
**Manual update for services (This steep must be done for CentOS 6 and 7)**
```
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
```
Test if all is ok, it should run update without errors
```
sh /scripts/update_cwp
```
If you get error like:
> Cannot load the ionCube PHP Loader - it was built with configuration API320151012,NTS, whereas running engine is API320170718,NTS
then run this:
```
sed -i "s/ioncube_loader_lin_7.0/ioncube_loader_lin_7.2/g" /usr/local/cwp/php71/php.ini
sh /scripts/restart_cwpsrv
627
CentOS 6 Problems / Re: No Loader is installed, please try to run this command or contact support
« on: April 25, 2020, 09:03:49 AM »
please post the output of
tail -n 50 /usr/local/cwpsrv/logs/error_log
tail -n 50 /usr/local/cwpsrv/logs/error_log
628
CentOS 7 Problems / Re: Urgent! can't access cwp panel error 500
« on: April 25, 2020, 07:09:57 AM »
Solution...
http://forum.centos-webpanel.com/index.php?topic=8782.msg30572#msg30572
You need to follow the directions to Manually update the files for your servers.
http://forum.centos-webpanel.com/index.php?topic=8782.msg30572#msg30572
You need to follow the directions to Manually update the files for your servers.
629
CWP API / Re: CWP API - Error SSL with IP or FQDN
« on: April 25, 2020, 02:41:47 AM »
Try using he hostname of the machine. Your hostname cert should then match.
630
CentOS Configuration / Re: cwp web panel http error 500
« on: April 25, 2020, 01:17:02 AM »
http://forum.centos-webpanel.com/index.php?topic=8782.msg30572#msg30572
Check this out. Do a manual update of the files and services to see if it corrects your issues.
Check this out. Do a manual update of the files and services to see if it corrects your issues.