jebrunquist
Forum Replies Created
-
There was never an issue restoring any site from a backup, or migrating to a new site, 32mb or more(always more in my case). Now there is after I updated the plugin. Enough said.
Yes, that did the trick. I thought it was already on WP HMTL, so that led to the confusion. Thanks again.
Ahhh, of course. Thank you. Much appreciated.
Just for an update, I added this to functions.php in the theme to ensure SMTP secure was set to none:
add_action( ‘phpmailer_init’, ‘my_phpmailer_init’ );
function my_phpmailer_init( PHPMailer $phpmailer ) {
$phpmailer->SMTPSecure = ‘none’;
}I get the same results with “none” selected for SMTPSecure:
Versions:
WordPress: 4.9.2
WordPress MS: No
PHP: 7.0.24
WP Mail SMTP: 1.2.3Params:
Mailer: smtp
Constants: No
ErrorInfo: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Host: 142.165.212.58
Port: 25
SMTPSecure: none
SMTPAutoTLS: bool(false)
SMTPAuth: bool(true)Server:
OpenSSL: Yes
SMTP Debug:
2018-01-28 23:23:58 Connection: opening to 142.165.212.58:25, timeout=300, options=array (
)
2018-01-28 23:23:59 Connection: Failed to connect to server. Error number 2. “Error notice: stream_socket_client(): unable to connect to 142.165.212.58:25 (Connection refused)
2018-01-28 23:23:59 SMTP ERROR: Failed to connect to server: Connection refused (111)
2018-01-28 23:23:59 SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/TroubleshootingStill stumped as to why its not working.
I’m sorry, I’m not following. I installed the plugin, inserted my SMTP settings and ran the test email. I even disabled/unactivated all of my plugins and received the same results.
I’ve installed a template on my site. I imagine the code snippets you’re referring to would be template related? More saying that I haven’t put any code snippets in relating to the plugin filters, but my installed template would definitely have other snippets in it. Would the template be the issue?