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.
91
Installation / Re: Continue the problem that, can't migration account from cwp8 to cwp9?
« on: February 09, 2025, 09:31:12 PM »
The encrypted mail passwords are stored in the table 'mailbox' of the database 'postfix'. I think the passwords can be retrieved from the db and restored on the new server. It should work if postfix for Almalinux 9 / RockyLinux 9 uses the same method of encryption.
92
CentOS-WebPanel Bugs / Re: Cron issue
« on: February 09, 2025, 09:10:15 PM »
try to change the command of cron to:
Code: [Select]
wget 'https://mysite.com/index.php?route=extension/common/script/cron_reset&reset=manual'
93
Installation / Re: Continue the problem that, can't migration account from cwp8 to cwp9?
« on: February 09, 2025, 09:08:56 PM »
You can make backups, transfer them to the new server (or make remote backups to the new server) and restore accounts from backups or try to add the ssh access key from the new server to the old server.
I can help if you can't do it yourself.
I can help if you can't do it yourself.
94
Installation / Re: Continue the problem that, can't migration account from cwp8 to cwp9?
« on: February 09, 2025, 08:48:02 PM »
I think I can )
95
CentOS 8 Problems / Re: Can not install CWP 8 on Rockylinux 8 or Almalinux 8
« on: February 09, 2025, 07:06:06 PM »
Quick Fix for CWP Installer (CentOS 8/stream, Alma Linux 8, and Rocky Linux 8 ) 
It will install CWP with MariaDB 10.6 then you can update MariaDB to more recent release.

Code: [Select]
cd /usr/local/src
wget http://centos-webpanel.com/cwp-el8-latest
sed -i "s/10.4/10.6/" cwp-el8-latest
sh cwp-el8-latest
It will install CWP with MariaDB 10.6 then you can update MariaDB to more recent release.
96
Installation / Re: DNS records for pop, cpanel....
« on: February 09, 2025, 11:49:36 AM »
Not necessary but strongly recommended.
97
E-Mail / Re: Process email queue individualy
« on: February 09, 2025, 10:35:51 AM »
I am afraid postfix can't be replaced by exim in CWP if you don't want to manage email accounts, forwarders and other mail related items by hands.
98
CentOS 9 Problems / Re: Urgent: FTP Access Issue – Error 530 Unaccepted Server Reply
« on: February 09, 2025, 10:29:34 AM »
Hi,
Overseer is right. The problem is caused by the firewall or you use "active ftp" mode.
So make sure your FTP client uses "Passive FTP" and the ports listed as "PassivePortRange" in the file:
/etc/pure-ftpd/pure-ftpd.conf
are opened in your firewall.
If you use CSF then check the settings of "TCP_IN", "TCP_OUT":
/etc/csf/csf.conf
In other words if "PassivePortRange" is:
then "35000:40000" me be in "TCP_IN" and "TCP_OUT" of the file /etc/csf/csf.conf
Overseer is right. The problem is caused by the firewall or you use "active ftp" mode.
So make sure your FTP client uses "Passive FTP" and the ports listed as "PassivePortRange" in the file:
/etc/pure-ftpd/pure-ftpd.conf
are opened in your firewall.
If you use CSF then check the settings of "TCP_IN", "TCP_OUT":
/etc/csf/csf.conf
In other words if "PassivePortRange" is:
Code: [Select]
PassivePortRange 35000 40000
then "35000:40000" me be in "TCP_IN" and "TCP_OUT" of the file /etc/csf/csf.conf
99
CentOS 8 Problems / Re: Can not install CWP 8 on Rockylinux 8 or Almalinux 8
« on: February 08, 2025, 10:52:01 PM »Quote
It is save to use 11.6.2 version ?
I am not sure if 11.6.2 is safe to use because I haven't used it.
Starburst says MariaDB 11.4.x works well with CWP. However if you (your sites/projects) don't have some special requirements to use MariaDB 11.4 or 11.6 then I don't recommend to leap from 10.4 to 11.4 (11.6). It is better to use some older MariaDB version and use LTS version following the overseer's recommendation.
100
CentOS 8 Problems / Re: Can not install CWP 8 on Rockylinux 8 or Almalinux 8
« on: February 08, 2025, 11:46:36 AM »
There is the same problem.
It seems MariaDB 10.4 is installed on your server. So when you run "yum update" it searches for MariaDB updates in disabled repository. To solve the problem you need to upgrade MariaDB to some actual MariaDB version (10.6, 10.11, etc).
To upgrade to 10.6 do following:
1. In the file /etc/yum.repos.d/mariadb.repo
change "10.4" to "10.6"
2. To update MariaDB run (make backups of the databases before you run update):
3. Make sure all mariaDB binaries are updated:
You should get something like:
MariaDB-server-10.6-el8.centos.x86_64
MariaDB-devel-10.6-el8.centos.x86_64
MariaDB-common-10.6-el8.centos.x86_64
MariaDB-compat-10.6-el8.centos.x86_64
MariaDB-client-10.6-el8.centos.x86_64
MariaDB-shared-10.6-el8.centos.x86_64
Makre sure all rpms have "10.6" in their names.
Please note you do it on your own risk. So make backups.
It seems MariaDB 10.4 is installed on your server. So when you run "yum update" it searches for MariaDB updates in disabled repository. To solve the problem you need to upgrade MariaDB to some actual MariaDB version (10.6, 10.11, etc).
To upgrade to 10.6 do following:
1. In the file /etc/yum.repos.d/mariadb.repo
change "10.4" to "10.6"
2. To update MariaDB run (make backups of the databases before you run update):
Code: [Select]
service mysql stop
service mariadb stop
systemctl disable mariadb
rpm --nodeps -ev MariaDB-server
yum clean all
yum -y update "MariaDB-*"
yum -y install MariaDB-server
systemctl enable mariadb
service mariadb start
mysql_upgrade
3. Make sure all mariaDB binaries are updated:
Code: [Select]
rpm -qa|grep -i maria
You should get something like:
MariaDB-server-10.6-el8.centos.x86_64
MariaDB-devel-10.6-el8.centos.x86_64
MariaDB-common-10.6-el8.centos.x86_64
MariaDB-compat-10.6-el8.centos.x86_64
MariaDB-client-10.6-el8.centos.x86_64
MariaDB-shared-10.6-el8.centos.x86_64
Makre sure all rpms have "10.6" in their names.
Please note you do it on your own risk. So make backups.
101
CentOS 8 Problems / Re: Can not install CWP 8 on Rockylinux 8 or Almalinux 8
« on: February 06, 2025, 05:08:37 PM »
MariaDB 10.4 is EOL and not supported anymore. Try to add MariaDB 10.6 repository to /etc/yum.d/ and then make new attempt to install MariaDB.
Create the file:
/etc/yum.repos.d/mariadb.repo
with the following content:
Create the file:
/etc/yum.repos.d/mariadb.repo
with the following content:
Code: [Select]
[mariadb]
name = MariaDB
baseurl = https://mirror.mariadb.org/yum/10.6/almalinux8-amd64/
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
and then try to install CWP again.
102
E-Mail / Re: 550 No such recipient here
« on: February 06, 2025, 04:57:53 PM »
It could be caused by a wrong MX record. Make sure your domain name uses correct nameservers and they point incoming emails to your server (MX record look at your server).
If the MX record is ok then check other things mentioned by Starburst. However, start from investigating the MX record.
If the MX record is ok then check other things mentioned by Starburst. However, start from investigating the MX record.
103
E-Mail / Re: Process email queue individualy
« on: February 06, 2025, 04:45:32 PM »
Check mail logs:
/var/log/maillog
using mailID. Mail ID can be obtained from the mail headers of the undelivered email or check the logs for recipient's/sender's email addresses.
/var/log/maillog
using mailID. Mail ID can be obtained from the mail headers of the undelivered email or check the logs for recipient's/sender's email addresses.
104
CentOS-WebPanel Bugs / Re: Can't login as root in admin panel after OS update
« on: February 04, 2025, 04:18:41 PM »
Boot your VPS/Server in "single user"/"rescue" mode and check logs:
/var/log/message
/var/log/secure
to investigate the problem.
Make sure you finished the OS upgrade process successfully and all RPMs are compatible with the current OS installed on your VPS/server.
/var/log/message
/var/log/secure
to investigate the problem.
Make sure you finished the OS upgrade process successfully and all RPMs are compatible with the current OS installed on your VPS/server.