Show Posts

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.


Messages - rcschaff

Pages: 1 ... 38 39 [40] 41 42 ... 55
586
E-Mail / Re: Gmail Marks Emails As Spam
« on: April 28, 2020, 02:55:59 AM »
Seeing as your not blacklisted, your best option would be to have people mark your email as "Not Spam", and hope you get some reputation with the almight GMasters.

587
CWP API / Re: CWP API - Error SSL with IP or FQDN
« on: April 28, 2020, 02:18:15 AM »
systemctl status cwp-phpfpm

probably not running

systemctl enable cwp-phpfpm
systemctl start cwp-phpfpm

588
Let's Encrypt goes by the "Authoritative Nameservers" for any Domain/Subdomain.  So it's actually checking domain.com's NS's for the key.

The workaround, is to redirect the NS Authoritative domains.  In your example, in domain.com's NameServers, add the following

staging 600 in NS (Your Servers Nameserver1 here)
staging 600 in NS (Your Servers Nameserver2 here)

now when LE looks up staging.domain.com, domain.com's NS say:  whoops staging's NS is ..., look there.

This will also include ALL subdomains for staging.domain.com, so client.staging client2.staging etc will all use your servers Nameservers

 

589
Installation / Re: Is my server worthy?
« on: April 28, 2020, 02:08:21 AM »
Proper configuration is everything.  I've made VPS's with 2GB or ram do 500 customers at a time.  Best way would be to set it up, and stress test it before going live.

590
CentOS 7 Problems / Re: Problem send email pro CWP
« on: April 28, 2020, 02:03:23 AM »
1)  Can you send email to other services (Not Gmail)

2)  Check out firewall, and make sure TCP_OUT includes 25 as well as TCP_IN

3)  Check your ip using MXToolbox for Blacklists

591
Updates / Re: Broken ioncube and https
« on: April 28, 2020, 01:57:11 AM »
not recommended, but check out /etc/cron.daily

593
New Modules / [Module] CWP_IceCast
« on: April 27, 2020, 01:12:52 AM »
And IceCast Module for CWP.  Much like Shoutcast.   Please note this is in Alpha Stage.
https://github.com/rcschaff82/cwp_icecast


594
CentOS 7 Problems / Re: configure server vps centos7 for RTMP protocol
« on: April 26, 2020, 08:48:43 PM »
The issue you're going to have, is the nginx. You can recompile it, but there's no guarantee it won't be overwritten.

595
i'd suggest removing backups from /backup (Or wherever you store them)

 du -d 1 -h /

should tell you where all of your space is being taken up

596
PHP / Re: CWP7.Pro Error | Unable to Login Admin Panel
« on: April 26, 2020, 02:51:59 PM »
Should be ok.  Just means those files didn't have +i set on them

597
Backup / Re: My server doesn't make backups anymore
« on: April 26, 2020, 01:29:12 PM »
I guess I spoke too soon. Friday didn't run.   Apparently the new backup can't get a list of accounts to backup, as that's where it's stuck...

598
Backup / Re: My server doesn't make backups anymore
« on: April 26, 2020, 01:10:53 PM »
Try starting the backup, and run tail -f /var/log/cwp/cron_backup.log

599
Backup / Re: My server doesn't make backups anymore
« on: April 26, 2020, 01:05:29 PM »
The problem is not in cron.
I have the same mistake.

Understood.  Was making sure you didn't have an old version of the script encoded in ioncube5 still residing on the server, and couldn't be run by 7.2.  There's been quite a few people who's updates failed and old php files reside on their server after the update to 926.

As I said, I"m on .926 running 7.2, and everything is working perfectly fine for me that I notice.  So need to "Troubleshoot" what's going on so they can issue a patch.

600
PHP / Re: CWP7.Pro Error | Unable to Login Admin Panel
« on: April 26, 2020, 12:31:30 PM »
This is the standard response to your issue.   Your Update failed at some point, and some files were not updated.  YOu need to do the manual file update for your CentOS and the services...
Code: [Select]
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

Pages: 1 ... 38 39 [40] 41 42 ... 55