1
E-Mail / Re: sendmail
« Last post by Namaste on Today at 07:33:05 PM »Yes, it's not a responsive design. So my little 13" travel laptop you have to re-zoom to see all the interface elements. No problem on my 27" desktop screen, but definitely time to modernize to a fully responsive layout.
it used to work fine. (on my 32 inch mon) youre right...im using my lenovo laptop on the road
2
Information / Re: goaccess geo ip location
« Last post by Namaste on Today at 07:31:08 PM »Cool. And as always should you chose to accept this mission be sure to backup your server first.
3
PHP Selector / Re: Redis Memcache with PHP-FPM Varnish
« Last post by seascoot on Today at 05:28:52 PM »I'm late to the game on this one, but in case you have this same issue here is one solution.
As stated by @ted81das redis server does not get installed when using PHP-FPM Selector. However, if you go to PHP Version Switcher under the PHP Settings menu it is possible to do it from there. You will see this warning:

That warning suggests that you should not use PHP Version Switcher. However, if you don't care that redis get activated on your "default" PHP version, you can get the server installed from there. Just go to the "Manage Options" button and add redis from there. On saving, that PHP version will be rebuilt along with redis server installation for the rest of the system.
As stated by @ted81das redis server does not get installed when using PHP-FPM Selector. However, if you go to PHP Version Switcher under the PHP Settings menu it is possible to do it from there. You will see this warning:

That warning suggests that you should not use PHP Version Switcher. However, if you don't care that redis get activated on your "default" PHP version, you can get the server installed from there. Just go to the "Manage Options" button and add redis from there. On saving, that PHP version will be rebuilt along with redis server installation for the rest of the system.
4
CentOS 9 Problems / Re: wp_remote_post() failed
« Last post by overseer on Today at 05:19:12 PM »Before you get too far, CentOS Stream is a beta-quality OS, only good for local testing or to get a sense of where RHEL is going but not a good foundation for a server. If you can before you get too far with setup, switch now to AlmaLinux 9 -- it will be supported till the end of the decade!
https://endoflife.date/almalinux
https://endoflife.date/almalinux
5
CentOS 9 Problems / Re: wp_remote_post() failed
« Last post by cyberspace on Today at 04:53:25 PM »Hi,
The function name wp_remote_post() allows me think the function sends some post request to some host. To investigate the problem you need to know where the function wp_remote_post() sends the request to (host) and then emulate the request using "curl" or similar utility, make attempt to connect to the host using "telnet", etc.
Anyway, the problem could be caused by bad DNS resolvers, firewall, error in your script, etc.
The function name wp_remote_post() allows me think the function sends some post request to some host. To investigate the problem you need to know where the function wp_remote_post() sends the request to (host) and then emulate the request using "curl" or similar utility, make attempt to connect to the host using "telnet", etc.
Anyway, the problem could be caused by bad DNS resolvers, firewall, error in your script, etc.
6
CentOS 9 Problems / wp_remote_post() failed
« Last post by phpprogrammer93 on Today at 04:05:13 PM »Hello everyone,
on my new server I installed the Centos 9 Stream operating system (my provider Hetzner only allows Centos 9 or Alma Linux 9). After installing CWP for Centos 9 I proceed to do some usage tests by installing a test website with woocommerce. From here I notice that I cannot use payment systems because in woocommerce status I have the error wp_remote_post() failed .
On my previous server with Centos 7 I do not have this problem.
CWP support tells me that everything is fine and there is no incompatibility between installed PHP and to contact woocommerce support. Woocommerce tells me that it could be a server problem, giving me some commands to disable selinux, modsecurity (already disabled), and test curl.
Unfortunately the problem persists... I also contacted the owner of the server, Hetzner, and he assured me that there are no active firewalls on their part.
Can anyone help me? I don't know who to trust anymore.
A thousand thanks
on my new server I installed the Centos 9 Stream operating system (my provider Hetzner only allows Centos 9 or Alma Linux 9). After installing CWP for Centos 9 I proceed to do some usage tests by installing a test website with woocommerce. From here I notice that I cannot use payment systems because in woocommerce status I have the error wp_remote_post() failed .
On my previous server with Centos 7 I do not have this problem.
CWP support tells me that everything is fine and there is no incompatibility between installed PHP and to contact woocommerce support. Woocommerce tells me that it could be a server problem, giving me some commands to disable selinux, modsecurity (already disabled), and test curl.
Unfortunately the problem persists... I also contacted the owner of the server, Hetzner, and he assured me that there are no active firewalls on their part.
Can anyone help me? I don't know who to trust anymore.
A thousand thanks
7
E-Mail / Re: sendmail
« Last post by overseer on Today at 02:39:10 PM »Yes, it's not a responsive design. So my little 13" travel laptop you have to re-zoom to see all the interface elements. No problem on my 27" desktop screen, but definitely time to modernize to a fully responsive layout.
8
MySQL / Re: mariadb error during update
« Last post by overseer on Today at 02:37:25 PM »If you can curl or wget the fixed installer script to your local workstation, then you can transfer it to the server. (Either via SFTP or a copy/paste the text stream into a new text document with nano on the server.)
10
E-Mail / Re: sendmail
« Last post by Namaste on Today at 11:48:50 AM »Is your e-commerce site using WordPress? If so there are plenty of SMTP plugins available online for you (eg: SMTP Mailer is simple & works well). Forminator is a good Wordpress plugin for contact forms and has inbuilt reCaptcha options, you may wish to couple this with your SMTP mail plugin.WINNER WINNER CHICKEN DINNER. CHANGED FROM GMAIL TO INTERNAL MAIL AND IT WORKED. ON A SIDE NOTE EMAIL MANAGER IN PANEL DOES NOT SHOW AUTOLOGIN ICONS. AND THERE IS NO HORIZONTAL SCROLL. I HAD TO ZOOM FF OUT TO 80% TO SEE THE ICONS ON THE RIGHT
Is your destination email address internal or external (ie: email@yourdomain.com or email@gmail.com). The domain email is much more forgiving as the mail is internal but the latter will require you to tick all of the SSL, DKIM, SPF and RDNS boxes.
mxtoolbox.com is your friend for checking mail settings.
If you want to send mail using PHP, PHPMailer extends the mail function and allows for SMPT Auth but you'll need to know how to code for it (eg: construct a plugin if it's Wordpress).