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.
541
FTP / Re: File Manager
« on: May 08, 2020, 11:25:59 AM »
Upload a zip and uncompress it, of it works
542
PHP / Re: PHP Memcache Error
« on: May 08, 2020, 11:24:42 AM »
First check of that file exists in that location .
You can also try ". locate memcache.so. " to see if it even exists on the server
You can also try ". locate memcache.so. " to see if it even exists on the server
543
CentOS-WebPanel Bugs / Re: Resellers cant jump to their sub-account
« on: May 08, 2020, 11:23:17 AM »
Not sure why it's using the server up, unless you haven't set a hostname. Try resetting hostname and restarting cwpsrv and cwp-phpfpm
544
Dovecot / Re: Can't open PID file /var/run/dovecot/master.pid (yet?) after start: No such file
« on: May 08, 2020, 11:20:34 AM »
No s flag in chmod, so dovecot user can't read it.
Systemctl stop dovecot
Delete master.pid
Systemctl start dovecot
Should give the correct permissions.
Chances are dovecot was started as root one time accidentally and created the file without system access
Systemctl stop dovecot
Delete master.pid
Systemctl start dovecot
Should give the correct permissions.
Chances are dovecot was started as root one time accidentally and created the file without system access
545
PHP / Re: PHP Rebuild/Update Problem
« on: May 08, 2020, 09:24:04 AM »
Start by clearing some space by deleting those .zip and .tar gz files
546
PHP / Re: PHP Rebuild/Update Problem
« on: May 08, 2020, 07:47:14 AM »
because it failed once, it may be causing more harm than good.
You should try
cd /usr/local/src/php-build/php-7.3.17
\rm -rf *
And see if rebuilding works.
I noticed a major issue with tar and tar.gz files labeled tar.gz.(1,2,3...)
You should try
cd /usr/local/src/php-build/php-7.3.17
\rm -rf *
And see if rebuilding works.
I noticed a major issue with tar and tar.gz files labeled tar.gz.(1,2,3...)
547
E-Mail / Re: How do I REJECT one recipient in a catchAll domain?
« on: May 08, 2020, 07:45:07 AM »548
PHP / Re: PHP Rebuild/Update Problem
« on: May 08, 2020, 06:21:38 AM »
Try replace "make" with "cmake" and see what happens.
549
Updates / Re: nginx/httpd problem (98)Address already in use, bind to :80/443 failed
« on: May 08, 2020, 05:10:56 AM »
if the service is already running, and you try to start it again, of course you are going to get bind errors. try "nginx -s reload" if you want to reload config files, other than that, leave it alone.
Your only issue is apache failing to start due to trying to bind to port 80 as well. That should have been resolved. If your saying the systemctl doesn't list an httpd service:
nano /usr/lib/systemd/system/httpd.service
systemctl start httpd
Your only issue is apache failing to start due to trying to bind to port 80 as well. That should have been resolved. If your saying the systemctl doesn't list an httpd service:
nano /usr/lib/systemd/system/httpd.service
Code: [Select]
[Unit]
Description=Web server Apache
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/apache/bin/apachectl start
ExecReload=/usr/local/apache/bin/apachectl graceful
ExecStop=/usr/local/apache/bin/apachectl graceful-stop
[Install]
WantedBy=multi-user.target
systemctl enable httpdsystemctl start httpd
550
DNS / Re: Multiple CWPPro using same NS1 and NS2
« on: May 08, 2020, 02:46:31 AM »
Ns1 and ns2 would need the slave DNS setup on them. Then each server would replicate to them. You would use ns1 and ns2 as the nameservers on ns10. Also every server has to have pro to send to ns1
551
Updates / Re: nginx/httpd problem (98)Address already in use, bind to :80/443 failed
« on: May 07, 2020, 09:01:00 PM »
systemctl stop nginx
Systemctl stop httpd
Killall httpd
Killall nginx
Systemctl start nginx
Systemctl start httpd
Post any errors
Systemctl stop httpd
Killall httpd
Killall nginx
Systemctl start nginx
Systemctl start httpd
Post any errors
552
Updates / Re: nginx/httpd problem (98)Address already in use, bind to :80/443 failed
« on: May 07, 2020, 08:57:32 PM »
Make sure your vhosts aren't trying to bind to 80
553
CentOS 7 Problems / Re: PHP Version Switcher v2 not chaning PHP version
« on: May 07, 2020, 08:38:25 PM »
Try yum install openssl-dev or devel, not sure which. Then try again
554
Updates / Re: nginx/httpd problem (98)Address already in use, bind to :80/443 failed
« on: May 07, 2020, 08:35:01 PM »
Apa he needs to listen on 8181, not 80
555
CentOS 7 Problems / Re: PHP Version Switcher v2 not chaning PHP version
« on: May 07, 2020, 05:26:05 PM »
If your using nginx as a reverse proxy, it should be a non factor. If your using it standalone, it requires php-fpm. If you did not install the fpm module for 7.2, then it will not work.