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.
31
CWP API / Re: pic not showing in app after migrating server.
« on: January 09, 2025, 06:27:04 PM »
Permissions? Are you seeing 404 errors on the frontend?
32
Installation / Re: PHP-FPM on AlmaLinux 9
« on: January 09, 2025, 06:26:10 PM »
Yes, 8.0 is not compatible with EL9 releases. You must use 8.1, 8.2, 8.3.
(As Stan Lee used to say, "'Nuff said.")
(As Stan Lee used to say, "'Nuff said.")
33
Nginx / Re: How to update NGINX version to version 1.26.2
« on: January 08, 2025, 04:01:28 PM »
Thanks, that's great! You should contribute more!
34
PHP / Re: URGENT Database insert not working
« on: January 08, 2025, 01:47:35 PM »
We are replying in your thread -- please avoid double-posting! Thank you.
35
PHP / Re: URGENT Database insert not working
« on: January 07, 2025, 10:17:23 PM »
Try the Comodo ruleset -- less false positives.
And is your PHP script attempting to connect to localhost via a socket? You shouldn't be connecting via an IP connection on port 3306; the CSF firewall would block that by default.
https://wiki.centos-webpanel.com/csflfd-firewall-configuration
And is your PHP script attempting to connect to localhost via a socket? You shouldn't be connecting via an IP connection on port 3306; the CSF firewall would block that by default.
https://wiki.centos-webpanel.com/csflfd-firewall-configuration
36
Information / Re: CentOS Configuration File Locations (CWP)
« on: January 07, 2025, 05:34:32 PM »
I'm fairly certain the congratulatory messages by first time posters was just a test to see if they had permissions to post a reply, and therefore spam. "Useful information" and "Thanks for sharing" are pretty worthless contributions to the thread.
37
PHP / Re: URGENT Database insert not working
« on: January 07, 2025, 03:13:44 PM »
Do you have Mod Security enabled? If so are you using OWASP or the Comodo ruleset?
38
PHP / Re: URGENT Database insert not working
« on: January 07, 2025, 05:20:36 AM »
You have proper grant privileges in place? Proper DB user credentials authentication in your PHP script? Does your PHP script work as intended on an AlmaLinux 8 test VM?
39
Updates / Re: How to revert an update?
« on: January 07, 2025, 12:39:30 AM »
Are they all using the same package definitions (same limits)?
All using the same php-fpm version?
Can you switch to nginx for better performance, or is there something tying you to Apache?
All using the same php-fpm version?
Can you switch to nginx for better performance, or is there something tying you to Apache?
40
CentOS 7 Problems / Re: My CWP websites are not loading after i changed my webservers to Ningx + Apache
« on: January 03, 2025, 04:28:21 PM »
Where did mod_rpaf.so go? It's part of the default CWP kit...
Code: [Select]
[root@srv]# ls -al /usr/local/apache/conf.d/rpaf.conf
-rw-r----- 1 root root 279 Dec 11 2022 /usr/local/apache/conf.d/rpaf.conf
[root@srv]# ls -al /usr/local/apache/modules/mod_rpaf.so
-rwxr-xr-x 1 root root 18584 Nov 11 2022 /usr/local/apache/modules/mod_rpaf.so
41
CentOS 9 Problems / Re: CWP to CWP Account Migration
« on: January 02, 2025, 07:05:21 PM »
EL9 has bugs, particularly with CWP to CWP Migration. CWP is still officially in beta for EL9, particularly for this reason. Also, CentOS Stream is a beta-quality OS, not really what you want for a production server. Please start with AlmaLinux 9 as your new server foundation. Starburst has guides for how to bring up a new AlmaLinux 9 server with CWP.
42
CentOS 7 Problems / Re: My CWP websites are not loading after i changed my webservers to Ningx + Apache
« on: January 02, 2025, 03:38:03 AM »
Not to rub salt on an open wound, but always take a full image and back up all configs before attempting a major change like this (changing web servers and reverse proxy settings qualifies) so you can quickly revert if things don't pan out. Test on a local mirror first before attempting it on a production server. Also consider scheduling it in off-hours (which I suppose New Year's Day qualifies...) but also best when CWP support is active and the forums are active in case you need help.
43
Information / Re: CWP Support Site Not Working
« on: December 31, 2024, 08:43:01 AM »
Post your question here and the community can try to offer you support. No charge.
44
Information / Re: Changelogs
« on: December 31, 2024, 08:42:07 AM »
Not true. That is pure F.U.D.
45
Backup / Re: Backup without compressing
« on: December 30, 2024, 05:44:02 PM »
This wiki page gives a concrete example for rsync'ing your e-mails:
https://wiki.centos-webpanel.com/how-to-manually-import-emails
Example of rsync command from remote cPanel to local CWP:
So in your case, you would reverse it to go from the CWP server to the backup/disaster recovery server.
Or use the New Backup, as cyberspace recommended.
https://wiki.centos-webpanel.com/how-to-manually-import-emails
Example of rsync command from remote cPanel to local CWP:
Code: [Select]
rsync -avz -e "ssh -p 22" root@185.185.185.185:/home/USERNAME/mail/DOMAIN/USERNAME/ /var/vmail/DOMAIN/USERNAME/
* This command needs to be executed on the CWP server, number 22 is ssh port.So in your case, you would reverse it to go from the CWP server to the backup/disaster recovery server.
Or use the New Backup, as cyberspace recommended.