Webserver: Localhost (WAMP)
Error display in Signing Up:
SYSTEM WARNING: 'stream_socket_enable_crypto() [streams.crypto]: this stream does not support SSL/crypto' in 'C:\wamp\www\bugtracker\library\phpmailer\class.smtp.php' line 249
Codes in 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
I also tried changing:
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;
What do I need to add?
You need to do the following:
Work Great. Thanks