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.
661
MySQL / Re: Help restore rouncube mysql.
« on: March 03, 2025, 04:52:50 PM »
https://www.alphagnu.com/topic/33-update-cwp-roundcube-mail-version-158-%E2%80%93-control-web-panel/
(change to 1.5.9, current CWP compatible LTS version)
(change to 1.5.9, current CWP compatible LTS version)
662
MySQL / Re: Help restore rouncube mysql.
« on: March 03, 2025, 02:34:11 PM »
Roundcube initialization DB is available here:
https://github.com/roundcube/roundcubemail/blob/master/SQL/mysql.initial.sql
You can load it in via the CLI mariadb client, or with phpMyAdmin.
But it seems more to be a permissions problem based on your error. Have you updated your config to reflect the correct username, password -- DB credentials?
https://github.com/roundcube/roundcubemail/blob/master/SQL/mysql.initial.sql
You can load it in via the CLI mariadb client, or with phpMyAdmin.
But it seems more to be a permissions problem based on your error. Have you updated your config to reflect the correct username, password -- DB credentials?
663
Installation / Re: Failed to restart cbpolicyd.service: Unit cbpolicyd.service not found.
« on: March 03, 2025, 01:26:10 PM »
Have you made attempts to install and configure cbpolicyd?
664
Other / Re: Completely stuck not able to login to Admin after rest password
« on: March 03, 2025, 02:25:54 AM »
I am done; root can now login to CWP Admin. Sending you a PM with details of what I did. Perhaps the most important thing was following these EL9 directions to compensate for a bug:
Please if your computer is running on any distro 9, please do the following to resolve the issue
Find and edit the following file
/etc/login.defs
And Change the following lineCode: [Select]SHA_CRYPT_MAX_ROUNDS 10000
toCode: [Select]SHA_CRYPT_MAX_ROUNDS 5000
Then change the password and you will be able to log in without any problem.
665
Other / Re: Completely stuck not able to login to Admin after rest password
« on: March 03, 2025, 01:38:34 AM »
I am not able to connect; I sent you my IP address via PM here so you could whitelist it on the firewall.
666
Other / Re: Completely stuck not able to login to Admin after rest password
« on: March 02, 2025, 09:00:57 PM »
I will be able to help later this evening -- 5-6 hours from now (I am in -0500). What is your timezone?
667
Other / Re: Completely stuck not able to login to Admin after rest password
« on: March 02, 2025, 01:53:01 PM »
Would you like hands on assistance? PM me your server details if you need help getting un-stuck. (You can always change r00t login details afterward.)
668
Scripts / Re: Script or api to create user
« on: February 28, 2025, 10:51:44 PM »
can you implement a CGI to the existing control scripts?
https://wiki.centos-webpanel.com/cwp-admin-api
https://wiki.centos-webpanel.com/cwp-admin-api
669
Suggestions / Re: Default notifications
« on: February 28, 2025, 02:32:44 AM »
Not e-mails, pop-up Security notifications (once per server per month).
670
Installation / Re: Alma linux 8 fresh install script error
« on: February 27, 2025, 02:12:27 PM »
That's comforting. I have nothing against Russians, just spammers!
671
Suggestions / Re: Default notifications
« on: February 27, 2025, 02:09:54 PM »
...And the ability to OPT OUT of monthly Secure Kernel notifications. My use case does not and will never need the secure kernel functionality.
672
Problems on other RedHat linux servers / Re: I can send and receive messages via the web, but it doesn't work through the...
« on: February 25, 2025, 10:29:09 PM »
Here's a good explainer for you, walks you through the evaluation process, stages:
https://blog.matrixpost.net/configure-postfix-to-block-and-reject-unsolicited-messages-or-spam/
https://blog.matrixpost.net/configure-postfix-to-block-and-reject-unsolicited-messages-or-spam/
673
Installation / Re: ...server under AL9?
« on: February 25, 2025, 10:23:53 PM »
Your pasted version is:
[mariadb]
име = MariaDB
note the Cyrillic mistake for the "name" line. It shouid be:
[mariadb]
name = MariaDB
[mariadb]
име = MariaDB
note the Cyrillic mistake for the "name" line. It shouid be:
[mariadb]
name = MariaDB
674
Backup / Re: external backup of mysql database to linux server using bash
« on: February 24, 2025, 09:06:49 PM »
Sorry, I'm going to chime in and say DON'T DO THIS:
1) Open the 3306 port remotely to your user.Best practice is to bind to a local socket and only allow local connections. Do not allow remote TCP connections to your MySQL/MariaDB server as is standard security recommendation.
If your user have a fixed IP address, open just for that IP in CSF firewall.
If your user haven't a fixed IP address, you can use a portknocking scheme, in CSF firewall.
2) Allow the MariaDB user to remotely access directly the database:
in file /etc/my.cnf.d/server.cnf, change the line (just uncomment it):Code: [Select]#bind-address=0.0.0.0toCode: [Select]bind-address=0.0.0.0
675
Apache / Re: 500 Errorr
« on: February 23, 2025, 07:11:21 PM »
Can you give a full long directory listing:
Code: [Select]
ls -al /home/username
ls -al /home/username/public_htmlSo as to see directory permissions...
