Skip to content

Commit 3c86247

Browse files
author
ElanMan
committed
Amended README. Updated file structure diagram and changed instructions concerning SampleConfig.php
1 parent 57cf1a8 commit 3c86247

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed

README.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Within the download you'll find the following directories and files:
2626
├── SimpleQuiz/
2727
│ ├── Utils/
2828
│ │ ├── Base/
29-
│ │ │ ├── Config.php
29+
│ │ │ ├── SampleConfig.php
3030
│ │ │ ├── Installer.php
3131
│ │ │ ├── IQuestion.php
3232
│ │ │ ├── IQuiz.php
@@ -79,7 +79,10 @@ Within the download you'll find the following directories and files:
7979
│ │ ├── header.php
8080
│ │ ├── index.php
8181
│ │ ├── login.php
82-
│ │ └── quiz.php
82+
│ │ └── quiz.php
83+
│ ├── email/
84+
│ │ ├── registerconfirm.html
85+
│ │ └── registerconfirm.txt
8386
│ ├── quiz/
8487
│ │ ├── error.php
8588
│ │ ├── footer.php
@@ -88,11 +91,21 @@ Within the download you'll find the following directories and files:
8891
│ │ ├── results.php
8992
│ │ ├── test.php
9093
│ ├── category.php
94+
│ ├── emailconfirmed.php
95+
│ ├── emailsent.php
9196
│ ├── index.php
9297
│ ├── login.php
9398
│ └── requirements.php
94-
└── vendor/
95-
99+
├── vendor/
100+
├── .gitignore
101+
├── .travis.yml
102+
├── composer.json
103+
├── composer.lock
104+
├── LICENSE
105+
├── phpunit.xml
106+
├── .gitignore
107+
├── README.md
108+
└── simple-quiz.sql
96109

97110

98111
## Installation
@@ -106,8 +119,10 @@ Within the download you'll find the following directories and files:
106119
* The mod_rewrite module (if using apache server) will need to be enabled in your server configuration.
107120
* Create a MySQL database called 'simple-quiz'
108121
* Import simple-quiz.sql into MySQL using a tool like phpmyadmin.
109-
* Change credentials in /SimpleQuiz/Utils/Base/Config.php.
110-
* If users aren't required to login to take a quiz, change $requireauth to false in /SimpleQuiz/Utils/Base/Config.php.
122+
* Change credentials in /SimpleQuiz/Utils/Base/SampleConfig.php.
123+
* If users aren't required to login to take a quiz, change $requireauth to false in /SimpleQuiz/Utils/Base/SampleConfig
124+
.php.
125+
* Rename SampleConfig.php to Config.php
111126
* Default web admin user is example@gmail.com with password of 123456
112127
* Navigate to the web accessible folder in your browser.
113128

0 commit comments

Comments
 (0)