2016-01-28 180 views
1

我是Testlink中的管理員用戶。我正在嘗試重置用戶的密碼。當點擊重置密碼按鈕時出現以下信息。 無法完成密碼重置。原因:SMTP錯誤:無法連接到SMTP主機。請讓我知道如何解決這個問題。Testlink- SMTP錯誤:無法連接到SMTP主機

/* [SMTP] */ 

/** 
* @var string SMTP server name or IP address ("localhost" should work in the most cases) 
* Configure using custom_config.inc.php 
* @uses lib/functions/email_api.php 
*/ 
**$g_smtp_host  = '22'; # SMTP server MUST BE configured** 

# Configure using custom_config.inc.php 
$g_tl_admin_email  = '[email protected]'; # for problem/error notification 
$g_from_email   = '[email protected]'; # email sender 
$g_return_path_email = '[email protected]'; 
+0

SMTP適用於您的Gmail? –

+0

不,它不工作。 – Amirdha

+0

因此,請打開它。 –

回答

0

您無法連接到SMTP主機,因爲

SMTP server MUST BE configured**

只需設置$ g_smtp_host在您的配置文件:

/* [SMTP] */ 

/** 
* @var string SMTP server name or IP address ("localhost" should work in the most cases) 
* Configure using custom_config.inc.php 
* @uses lib/functions/email_api.php 
*/ 
# SMTP server MUST BE configured** 
$g_smtp_host  = 'smtp_host_fqdn'; 

# Configure using custom_config.inc.php 
$g_tl_admin_email  = '[email protected]'; # for problem/error notification 
$g_from_email   = '[email protected]'; # email sender 
$g_return_path_email = '[email protected]'; 
+0

我更新了你在config.ini.php中提到的內容。但**密碼重置無法完成。原因:SMTP主機名似乎無效**消息顯示。 – Amirdha

+0

仔細檢查您的SMTP服務器主機名是否有效:是否dig $ g_smtp_host解析SMTP服務器的IP地址? –

+0

解析錯誤:語法錯誤,意外的'$ g_smtp_host'(T_VARIABLE)在C:\ xampp \ htdocs \ testlink-1.9.14 \ config.inc.php上247行 – Amirdha

相關問題