【发布时间】:2015-04-17 15:51:32
【问题描述】:
网络服务器:本地主机 (WAMP)
注册时显示错误:
系统警告:'stream_socket_enable_crypto() [streams.crypto]: this 流不支持 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 = 'myemail@gmail.com'; //replace it with your gmail address
$g_smtp_password = 'mypassword'; //replace it with your gmail password
$g_administrator_email = 'adminaccount@example.com'; //this will be your administrator email address
我也尝试过改变:
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;
我需要添加什么?
【问题讨论】: