Hi Simon,
I tested with localhost, do not worked. And using the mail.xxx:
The wp-mail.php answer is: Ooops pop3 no connect.
Therefore, the main problem is that all are 100%, but do not work.
All are ok:
My email server: mail.mba-business-administration-courses.us
User: km93xva4@mba-business-administration-courses.us
Password: ok.
The above are working 100%, I send and retrieve e-mails ok to the same user/server. But the wordpress do not connect and naturally do not retrieve the posts.
And if I send e-mails from international-….. to mba-business-…., using the below user km93xva4, all are ok. Is not a communication problem between servers.
My WP are in
international-businesses.net/wordpress/
The WP are working well, in the above international-businesses.net/wordpress/.
Best regards,
The wp-mail.php answer is: Ooops pop3 no connect.
Is that the exact wording it uses? This is critical, what is the exact error message it creates?
The “Oops POP3” I believe. The “no connect” I don’t believe. The POP3 module has better error messages than that.
Hi Simon,
I tried now and received from the wp-mail.php:
“Ooops POP3 connect: Error [] []”
But sometimes I received “no connect”. This is strange, smetimes he answer as above, sometimes with a no connect.
As you see, apparently he do not send the two variables between the [], perhaps this is the problem, he do not send the two variables to our email server. But I suppose that these two variables are the included in the admin –> Writing fields.
Best regards,
Best regards,
His wp-mail.php return exactly :
Ooops POP3 connect: Error [] []
cbrito80 : “And if I send e-mails from international-….. to mba-business-…., using the below user km93xva4, all are ok. Is not a communication problem between servers.”
Of course… But as I told you, the fact that you can send and retreive email from an account to another with a mail agent is not important. It seems that the web host where you installed wordpress is unable to connect to the mail server you’re trying to use. It’s totally different.
It’s not a worpress issue at all, the problem is on your side, it’s a mail and web server configuration issue.
With no more detail about your server, I fear nobody could help you here…
S.
Ooops POP3 connect: Error [] []
This is caused by a failure in the call to fsockopen. It should return an error number and message in the [] [] bits there though.
fsockopen is used to open the connection to the server. It’s basically doing this:
$fp = fsockopen("server", port, $errno, $errstr);
if (!$fp) {
// some kind of error happened
}
So what’s going on is that your website cannot connect to your email server. Figure out why that code is failing and you’ll solve your problem.
This could be for a lot of reasons, but given the lack of error information, it’s probably your PHP configuration. Maybe fsockopen has been disabled. Some hosts do that “for security reasons”.