Quizzer 1 1.0.01 Beta (for testing only) - Posted (5197 Views)
Average Member
cripto9t
Posts: 881
881
Quizzer1 1.0.01 Beta for testing only.
Download - Right Click and Save
Tested on Snitz 3.4.6 with a mySql db.
Snitz users are needed to download and test my quiz mod for snitz. It's an add-on, meaning there are very few changes to the original forum code. It is also a very easy install, just a few new files to add to your forum folder and a database update to add the quiz tables.
I would like to get the existing features tested and working properly before I try to add anymore. I will try to update the zip once a week until a final release is reached.
Feedback, suggestions and constructive criticism are welcome.
I'll post Updates Here

Updates
  • 2/4/07 - 1.0.0 Beta (Initial Release)
  • 2/5/07 - 1.0.01 Beta (Update for my friends with access)
Notes
  • This version of the quiz Quizzer 1 does not and will not record members score. That will be for Quizzer 2.
  • There is no test forum

Quiz Description
  • Features
    • Admin on/off switch
    • Unlimited questions and choices with admin control
    • Multiple choice and true/false quiz options
    • Admins and/or Moderators write quizzes (admin control)
    • "Members only" or "all vistors" option with Admin control

    • Retake time limits with Admin control (uses cookies)

    • Random questions with Admin control

    • Option to show corrected answers after grading

    • Records number of entries, hi-score, average score and last date taken for each quiz

    • Active Quiz Page

    • Use forum code in questions and answers

    • "Save quiz as draft" option
    • Quiz Archive
    • A very primitive attempt at question templates


  • Wish List

    • Topic Quizzes
    • Member Input Questions

    • Essay Questions
    • Quiz Categories

    • Real Question Templates

    • Question Paging

    • Printer Friendly


<
    _-/Cripto9t\-_
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Forum Moderator
AnonJr
Posts: 5768
5768
Hey Cripto9t, have you had much of a chance to work on this lately? I've been playing with the code some more and I like what you are doing. I'm trying to get your testing engine to interface with all the record keeping and reporting I built into my testing engine since I need those features along with what you've built into the testing bit. I'll let you know if I manage to get it working.
As to the other issue, I kinda cheated and did this:

Code:
                if strQuizCorrections = "1" then
Response.Write "<tr valign=""top"">" & vbNewLine & _
"<td class=""r""><b>Show Corrected Answers</b><br /><span class=""ffs"">Display this quiz with the corrections to members/visitors after quiz is graded. </span></td>" & vbNewLine & _
"<td>" & vbNewLine & _
" <input type=""radio"" name=""Quiz_Corrections"" value=""1"" checked /> Yes<br />" & vbNewLine & _
" <input type=""radio"" name=""Quiz_Corrections"" value=""0"" /> No" & vbNewLine & _
"</td>" & vbNewLine & _
"</tr>" & vbNewLine
Else
Response.Write "<tr valign=""top"">" & vbNewLine & _
"<td class=""r""><b>Show Corrected Answers</b><br /><span class=""ffs"">Display this quiz with the corrections to members/visitors after quiz is graded. </span></td>" & vbNewLine & _
"<td>" & vbNewLine & _
" <input type=""radio"" name=""Quiz_Corrections"" value=""1"" disabled /> Yes<br />" & vbNewLine & _
" <input type=""radio"" name=""Quiz_Corrections"" value=""0"" checked disabled /> No" & vbNewLine & _
"<input type=""hidden"" name=""Quiz_Corrections"" value=""0"" /></td>" & vbNewLine & _
"</tr>" & vbNewLine
end if

Please note, I've converted everything to work with the SB2 CSS that I've been using ever since I discovered that little gem.
Because I'm on a relatively short timetable (i.e. now or sooner) I'm tempted to just take what you've done, get done what I need to get done, and then giving you back what I've put together. But, I also don't want to fork the MOD or get things too far out of sync... you could do something absolutely brilliant and I want to make sure I don't go so far astray that I can't incorporate it. wink </rambling><
Posted
Forum Moderator
AnonJr
Posts: 5768
5768
Found another bug - after deleting a question from an existing quiz, the number of questions isn't updated and creates a "Subscript out of range" error when trying to take the test.
I'll dig into the whys and whatfors and try to post a bug-fix.<
Posted
Average Member
cripto9t
Posts: 881
881
Anon, I havent been able to work on the quiz. Windows is freezing up on my testing machine. I did fix the corrections bug before I got the blue screen blues. I assign it a value after submission if none is found. replace this
Code:
                if chkInput(Request.Form("Quiz_Corrections")) = 1 then
intCorrections = cLng(Request.Form("Quiz_Corrections"))
else
call redirect()
end if
with this
Code:
                if strQuizCorrections = "1" then
if chkInput(Request.Form("Quiz_Corrections")) = 1 then
intCorrections = cLng(Request.Form("Quiz_Corrections"))
else
screwed_up "Form problem.","Quiz Corrections" 'call redirect()
end if
else
intCorrections = 0
end if

I'll give the last error a look and see if I can spot something.<
    _-/Cripto9t\-_
Posted
Forum Moderator
AnonJr
Posts: 5768
5768
Cool. Let me know when you're back up and running. I'll keep hacking away at it. I'm hoping to be able to tie it into the record keeping code I wrote for our current testing engine.... I'll let you know how that goes.<
Posted
Advanced Member
Etymon
Posts: 2396
2396
I installed this MOD the other day and found it enjoyable to use.
I hope that there is continued development on it!
Very nice work! Great idea! Thank you for the code! Awesome potential!
Sincerely,

Etymon<
Posted
Starting Member
Netz
Posts: 25
25
Year... Sounds cool... Waiting here for V2<
A wise man don't know everything. But he knows who to ask :)


Be the best you can be


http://www.Bizworld.dk - Work From Home - The Smart way
Stay Healthy: http://www.herbalcenter.dk
Posted
Forum Moderator
AnonJr
Posts: 5768
5768
Hey cripto9t, since we both seem to have a resurgence of spare time, think this little wonder could get a little attention? wink

I haven't had much time to really dig in between when I last posted and now. Mostly I'd been looking at attaching it to my current record keeping structure. I've since decided to abandon the way I've been keeping records, and I've been looking at a new format. I'll let you know if I come up with anything remotely brilliant. tongue<
Posted
Average Member
cripto9t
Posts: 881
881
What are you, a mind reader question I just setup a new test forum to work on this smile. I did quite a bit of work on it last summer, but I got burnt out and quit. Now I feel like tackling it again. As always any and all ideas are welcome smile.<
    _-/Cripto9t\-_
You Must enter a message