File tree Expand file tree Collapse file tree 1 file changed +21
-6
lines changed Expand file tree Collapse file tree 1 file changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Within the download you'll find the following directories and files:
26
26
├── SimpleQuiz/
27
27
│ ├── Utils/
28
28
│ │ ├── Base/
29
- │ │ │ ├── Config .php
29
+ │ │ │ ├── SampleConfig .php
30
30
│ │ │ ├── Installer.php
31
31
│ │ │ ├── IQuestion.php
32
32
│ │ │ ├── IQuiz.php
@@ -79,7 +79,10 @@ Within the download you'll find the following directories and files:
79
79
│ │ ├── header.php
80
80
│ │ ├── index.php
81
81
│ │ ├── login.php
82
- │ │ └── quiz.php
82
+ │ │ └── quiz.php
83
+ │ ├── email/
84
+ │ │ ├── registerconfirm.html
85
+ │ │ └── registerconfirm.txt
83
86
│ ├── quiz/
84
87
│ │ ├── error.php
85
88
│ │ ├── footer.php
@@ -88,11 +91,21 @@ Within the download you'll find the following directories and files:
88
91
│ │ ├── results.php
89
92
│ │ ├── test.php
90
93
│ ├── category.php
94
+ │ ├── emailconfirmed.php
95
+ │ ├── emailsent.php
91
96
│ ├── index.php
92
97
│ ├── login.php
93
98
│ └── 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
96
109
97
110
98
111
## Installation
@@ -106,8 +119,10 @@ Within the download you'll find the following directories and files:
106
119
* The mod_rewrite module (if using apache server) will need to be enabled in your server configuration.
107
120
* Create a MySQL database called 'simple-quiz'
108
121
* 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
111
126
* Default web admin user is example@gmail.com with password of 123456
112
127
* Navigate to the web accessible folder in your browser.
113
128
You can’t perform that action at this time.
0 commit comments