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 ... 7 8 [9] 10 11 ... 55
121
Updates / Re: PHP not working after upgrade on 0.9.8.1143
« on: August 23, 2022, 02:45:44 AM »
Signal 11  an be our of Memory issues, or dependency issues.  If FPM is working for some sites but not others, make sure all version of FPM are started and running.  The sites showing upstream issues, could be using a different version of FPM.

Check /usr/local/apache/domlogs for site specific errors.

122
Updates / Re: PHP not working after upgrade on 0.9.8.1143
« on: August 22, 2022, 05:27:16 AM »
The upgrade of CWP has nothing to do with the client side PHP.  The fact that your recompiled PHP is why your sites are crashed.

from shell, type
tail -n 100 /var/log/php-rebuild.log

it should point you in the direction of the error that occurred while compiling php.  Most likely there was a module you check that is not compatible.

If you are running the Pro Version, and selected FPM, it could also be that the php81 version of FPM did not start.

systemctl status php-fpm81

123
Postfix / Re: error all email recived is spam and reject.
« on: August 22, 2022, 03:59:25 AM »
"blocked using zen.spamhaus.org'"

Your IP is blacklisted.  Check with spamhaus to see if it's your, or you subnet.  Contact your host to see if you can get a clean ip.

124
use " locate /bin/php" to find all of the php versions installed on your system

125
locate the .bashrc file in the users home account.

Add an alias
alias php='/path/to/bin/php'


logout and log back in to check that php -v now shows the correct php version

alternatively, you can set multipl aliases

ex:
alias php71='/usr/local/cwp/php71/bin/php'
alias php72='/usr/local/cwp/php72/bin/php'

Then just run "php71 file.php"

127
SSL / Re: Using third-party SSL Certificates
« on: August 16, 2022, 04:40:06 AM »
nginx / cwpsrv / apache / varnish need to be restarted after a new certificate is installed

128
Installation / Re: freshinstall Opendkim always off on reboot
« on: August 06, 2022, 05:25:13 AM »
from shell,

systemctl enable opendkim

I do believe.

129
DNS / Re: DNS service is not working
« on: August 04, 2022, 06:24:38 PM »
_default/moealdeek.com/IN: bad zone


Remove that zone, and it should load

130
DNS / Re: all my websites went offline
« on: July 03, 2022, 05:10:13 AM »
your using ns1/ns2.supporthelpdesk.click

are you hosting the DNS for that domain.  If so, make sure your bind (named) server is running on your box.

BTW, .com/.net domain are the best domains to use for nameservers.  All of the others can cause issues

131
DNS / Re: all my websites went offline
« on: July 03, 2022, 02:08:54 AM »
Your DNS server crashed.

132
E-Mail / Re: I can Send BUT can not receive EMAILS
« on: June 29, 2022, 02:01:39 AM »
MX records for your domain tell mail where to route

133
Apache / Re: Nginx configure
« on: June 26, 2022, 04:08:49 AM »
see if the following corrects the issue:

 location / {
      location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot|sh|webp)$ {
         default_type "text/html";
         root /home/example/public_html;               
         expires max;
         try_files $uri $uri/ @backend;
      }

134
Apache / Re: Nginx configure
« on: June 18, 2022, 07:30:10 PM »
If html is displayed as source code, then the mime type for nginx is messed up.  Check for the default mime types and make sure it's not set to text/plain

135
htop is more accurate.  CWP is using PHP, which may have it's own processor/memory limits so it may be a false report on the dashboard.  Load Averages is what I would pay attention to, and not a graph

Pages: 1 ... 7 8 [9] 10 11 ... 55