Index: app/Config/constants.php --- app/Config/constants.php.orig 2017-03-09 06:11:23.000000000 +0100 +++ app/Config/constants.php 2017-08-10 16:01:06.182810000 +0200 @@ -14,10 +14,10 @@ //Make sure to enable "php_openssl" in PHP. In WAMP, you need to enable extension=php_openssl.dll on php.ini file //Gmail SMTP -define("SMTP_HOST", "ssl://smtp.gmail.com"); +define("SMTP_HOST", "ssl://localhost"); define("SMTP_PORT", "465"); -define("SMTP_UNAME", "youremail@gmail.com"); -define("SMTP_PWORD", "******"); +define("SMTP_UNAME", "orangescrum@localhost"); +define("SMTP_PWORD", ""); //https://www.arclab.com/en/amlc/list-of-smtp-and-imap-servers-mailserver-list.html (Get the list of Host names) ### OR ### @@ -176,4 +176,4 @@ //define("NODEJS_HOST",'http://www.your-application.com:3002'); //enable this, if you have Node.js setup in the server // If you are enabling NODEJS_HOST, make sure you have PHP version >5.3.0 // Also, remove comment on "use ElephantIO\Client as ElephantIOClient" from the following files -// app/Controller/EasycasesController.php, app/Controller/Component/PostcaseComponent.php, app/webroot/EmailReply.php \ No newline at end of file +// app/Controller/EasycasesController.php, app/Controller/Component/PostcaseComponent.php, app/webroot/EmailReply.php Index: app/Config/database.php --- app/Config/database.php.orig 2017-03-09 06:11:23.000000000 +0100 +++ app/Config/database.php 2017-08-10 16:01:06.182931000 +0200 @@ -40,8 +40,8 @@ 'datasource' => 'Database/Mysql', 'persistent' => false, 'host' => 'localhost', - 'login' => 'root', - 'password' => '', + 'login' => 'orangescrum', + 'password' => 'orangescrum', 'database' => 'orangescrum', 'prefix' => '', 'encoding' => 'utf8', Index: database.sql --- database.sql.orig 2017-03-09 06:11:23.000000000 +0100 +++ database.sql 2017-08-10 16:01:14.631579000 +0200 @@ -11,6 +11,8 @@ -- Table structure for table `archives` -- +SET SESSION sql_mode = ''; + DROP TABLE IF EXISTS `archives`; CREATE TABLE IF NOT EXISTS `archives` ( `id` int(250) NOT NULL AUTO_INCREMENT,