Веб-сервер: Localhost (WAMP)
Ошибка отображения при регистрации:
ПРЕДУПРЕЖДЕНИЕ СИСТЕМЫ: ‘stream_socket_enable_crypto () [streams.crypto]: это
поток не поддерживает SSL / crypto ‘в
Строка ‘C: \ wamp \ www \ bugtracker \ library \ phpmailer \ class.smtp.php’ 249
Коды в CONFIG_INC.php
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = '';
$g_allow_signup = ON; //allows the users to sign up for a new account
$g_enable_email_notification = ON; //enables the email messages
$g_phpMailer_method = PHPMAILER_METHOD_SMTP; // this is most important
$g_smtp_host = 'smtp.gmail.com';
$g_smtp_connection_mode = 'tls';
$g_smtp_port = 587;
$g_smtp_username = '[email protected]'; //replace it with your gmail address
$g_smtp_password = 'mypassword'; //replace it with your gmail password
$g_administrator_email = '[email protected]'; //this will be your administrator email address
Я также попытался изменить:
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;
Что мне нужно добавить?
Вам нужно сделать следующее:
Работа отлично. Спасибо
Других решений пока нет …