From 86ada962694a7dc9553b1bf0a2599ea6d6131cb7 Mon Sep 17 00:00:00 2001 From: mhussaini_bese17seecs Date: Wed, 27 Feb 2019 21:40:47 +0500 Subject: [PATCH] updated readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index fc16441..2fa8532 100644 --- a/README.md +++ b/README.md @@ -64,14 +64,19 @@ if (!$conn) * `$SMTPuser` : email address on `gmail` * `$SMTPpwd` : email address password * `SMTPtitle` : hypothetical company's name + * `Domain` : Domain of the website, like localhost on local server or if on live domain, something like www.hypotheticalwebsite.com ```php $SMTPuser = 'klik.official.website@gmail.com'; $SMTPpwd = 'some-example-password'; $SMTPtitle = "KLiK inc."; +$Domain = 'localhost'; ``` > This step is mainly for setting up an email account to enable the `contact` and `password reset system`, all of which require mailing. +> In the current stage of the application, only `Gmail` accounts are supported. + + #### Getting started The database file already contains a lot of sample data and users. Most users in the database have the same password as their usernames except for a few. It is not possible to signup as an administrator through the application, since we decided that was an exploitable weakness. Therefore, you will have to create an account and manually go to the `users` table in the database to change the userLevel of that account to `1` from `0`. > 0 Level means a normal user and Level 1 means admin