Show Posts

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.


Messages - cyberspace

Pages: 1 [2] 3 4 ... 29
16
CentOS 7 Problems / Re: Move /var/vmail to /home/vmail
« on: March 13, 2025, 06:03:47 PM »
remove /var/vmail and create a symlink from /var/vmail to /home/vmail:
Code: [Select]
rm -rf /var/vmail
ln -s /home/vmail /var/vmail

17
CentOS 9 Problems / Re: wp_remote_post() failed
« on: March 13, 2025, 05:09:28 PM »
Ok, install traceroute and telnet using dnf:

Code: [Select]
dnf -y install telnet traceroute
the run the commands from the previous post again.

18
CentOS 9 Problems / Re: wp_remote_post() failed
« on: March 13, 2025, 12:48:44 PM »
Disable firewall and then in shell run:

Code: [Select]
telnet www.paypal.com 443

traceroute  www.paypal.com

iptables -L -n

show us results and run firewall on your vps/server again.

19
CentOS 7 Problems / Re: Move /var/vmail to /home/vmail
« on: March 13, 2025, 12:39:42 PM »
The access permissions 777 or 770 not always are correct. Some applications/system services check access permissions and if they aren't strict enough the service fails for security reasons.

Check the files/folders inside /home/vmail/DOMAIN.COM. The should belong to "USER:vmail".

No, you don't need to restart cwp,nginx,apache.

Check mail and roundube log files. The log files are the best friend for INVESTIGATION. Currently we are guessing where the problem is.

20
CentOS 7 Problems / Re: Move /var/vmail to /home/vmail
« on: March 13, 2025, 09:10:03 AM »
1. Make sure dovecot is up and works.

2. Make sure access permissions and owner of the folder:
 /home/vmail
are  correct.

3. Check mail logs to investigate the problem:

/var/log/maillog

4. If you decided to move some system folder to another location then I recommend to follow the steps like:

Code: [Select]
mv /var/vmail /home/
ln -s /home/vmail /var/vmail

21
CentOS 9 Problems / Re: wp_remote_post() failed
« on: March 12, 2025, 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.

23
E-Mail / Re: sendmail
« on: March 11, 2025, 10:49:22 PM »
Most likely the emails sent through the form don't pass the DKIM/SPF tests. Try to switch to "smtp" instead of "sendmail".

Anyway, the better way to investigate the problem is to check the mail logs:
/var/log/maillog

24
Information / Re: SSL too long
« on: March 11, 2025, 01:57:56 PM »
If you use Centos 7 then it can be caused by the outdated openssl version used by Centos 7.

Anyway, check if the SSL is installed properly:
https://www.sslshopper.com/ssl-checker.html

25
If you want to know why phpinfo() looks different in different php versions then contact the dev team of PHP.

26
I repeat. There is no problems. I see the changes in "php info" of CWP admin panel once I modify the settings or add/remove libs of the main php version.

27
Doube/tripple check your actions. You just missed some step and it causes the problem for you.

I just removed/added/updated php settings (libs) for the main php installed on the server and everything works fine (the changes are reflected). So check what you do.

You just missed something or you just try to increase your post counter here.

28
E-Mail / Re: Email Autodiscover failed & Certificate error exception
« on: March 10, 2025, 07:47:20 AM »
Make sure the SSL is installed for the domain name and subdomains cpanel, webmail, mail, ftp.

Use "mail.domain.com" as incoming/outgoing mail server.

29
I think you missed something.

Access the server over SSH as root and run:

Code: [Select]
echo "zend_extension=/usr/local/ioncube/ioncube_loader_lin_8.3.so" > /usr/local/php/php.d/ioncube.ini

30
Do you get some errors ?

Pages: 1 [2] 3 4 ... 29