Page 1 of 2

Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Tue Nov 18, 2008 6:00 am
by battye
If you want to be a Beta tester, please post your interest here. I only want a couple of people... advantages of being a tester are you will get the first release of this MOD to test out and make suggestions for before the general public :)

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Tue Nov 18, 2008 9:21 am
by darkonia
I want to be a beta tester.

ive also install your quiz mod lite version on my boards, so i hve a little background XD

My Interests are the complete implent of cash/points systems for this mod.
fully featuring of various options for the quiz.
Top Scores, Highscores etc.
a good db architecture and a good flow of the quiz mod.

greetz

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Tue Nov 18, 2008 10:10 am
by battye
Welcome darkonia, you're in :thumleft:

Cash/points compatibility will be in for sure.
Would like to hear more about "fully featuring various options" but there will be a lot of on/off sort of things which I assume is what you meant.

The statistics in this version will be more in depth than the last version.

And for the database architecture, I can reveal it is as follows:

Code: Select all

phpbb_quiz` (
`quiz_id` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`quiz_author` INT( 5 ) NOT NULL ,
`quiz_category` INT( 5 ) NOT NULL ,
`quiz_name` VARCHAR( 150 ) NOT NULL ,
`quiz_views` TEXT NOT NULL

phpbb_quiz_categories` (
`quiz_category_id` INT NOT NULL ,
`quiz_category_name` VARCHAR( 150 ) NOT NULL ,
`quiz_category_description` VARCHAR( 255 ) NOT NULL ,
`quiz_category_password` VARCHAR( 100 ) NOT NULL ,
PRIMARY KEY (  `quiz_category_id` )

phpbb_quiz_data` (
`quiz_data_id` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`quiz_question_id` INT( 5 ) NOT NULL ,
`quiz_answer` VARCHAR( 255 ) NOT NULL

phpbb_quiz_questions` (
`quiz_question_id` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`quiz_related_id` INT( 5 ) NOT NULL ,
`quiz_question` VARCHAR( 255 ) NOT NULL ,
`quiz_answer` VARCHAR( 255 ) NOT NULL

phpbb_quiz_statistics` (
`quiz_stats_id` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`quiz_question_id` INT( 5 ) NOT NULL ,
`quiz_submitted_answer` VARCHAR( 255 ) NOT NULL
_quiz_statistics will probably change a lot, I think it could be done better than having the question id and the submitted answer. For instance I may include a quiz_correct column so there are not dozens and dozens of unnecessary queries which it would have if it had to continually match it to the questions table.

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Tue Nov 18, 2008 7:27 pm
by Ladysarajane
I be interested in Beta testing also. :D
I have a localhost and several forums I can test it out on.

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Wed Nov 19, 2008 12:37 am
by moongirl
I will help out if there is anything I can do here at CMX :)

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Wed Nov 19, 2008 3:39 am
by battye
Welcome to the forum Ladysarajane, you're in :thumleft:
And moon, of course you're in too :thumleft:

Just waiting on quahappy, and if he is interested we should enough people for a quality Beta testing process :)

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Wed Nov 19, 2008 4:37 am
by Ladysarajane
Great 8)
Looking forward to testing.

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Wed Nov 19, 2008 9:55 am
by quahappy
Got your PM battye (and replied). I'm in. :D

Ready when you are. Looking forward to Beta testing. ;)

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Wed Nov 19, 2008 3:46 pm
by Lugsciath
Okay, i´ve tested the UQM lite on my board 3.03 and i´m used the old Version UQM on phpBB2.x many times. Just take a look on the other thread (Progress). I will translate UQM into german language if needed and testing it, too ;)

Greetings

Lugsciath / Uwe (Germany, Europe)

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Thu Nov 20, 2008 5:08 am
by battye
Thanks Lugsciath, it would be great to have your help for translations :) (and also for Beta testing too!)


So here is the list;
  • darkonia
  • moongirl
  • ladysarajane
  • quahappy
  • Lugsciath
Thank you everyone =D>

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Thu Nov 20, 2008 10:33 am
by darkonia
ive been ready for testing, thx to take me in XD

P.S: i also can make Translations for German and Italian languages when you needed when the mod is done

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Thu Nov 20, 2008 3:25 pm
by Lugsciath
We could do the translation together, no problem ;). Btw i have an idea to include a result table like following one:

Code: Select all

x = correct        f = failed        - no choice

         Question No
#   1   2   3   4   5    6   7  8    9   10
1   x                                -    x
2            x         f     x                  x
3                 x    x                  f
4        -                         x

Would that be possible to include (for multiple choice answers) someday ;) ?

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Thu Nov 20, 2008 4:15 pm
by battye
Lugsciath wrote:We could do the translation together, no problem ;). Btw i have an idea to include a result table like following one:

Code: Select all

x = correct        f = failed        - no choice

         Question No
#   1   2   3   4   5    6   7  8    9   10
1   x                                -    x
2            x         f     x                  x
3                 x    x                  f
4        -                         x

Would that be possible to include (for multiple choice answers) someday ;) ?
I really like that idea! Maybe have the "x" red if it was wrong, and green if it was right. Probably will include as an ACP option so you can turn on table form if you don't like the traditional way (which, IIRC, was a list of answers like "You selected xyz, the correct answer was abc... etc")

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Fri Nov 21, 2008 10:14 pm
by Lugsciath
It would be great :) Thank you. What´s about the missing/empty questions, leave the cross position blank or only the (in that case correct) answer red? ;)

Re: Beta testers required for Ultimate Quiz MOD v2.0.0

Posted: Fri Nov 21, 2008 10:48 pm
by Lugsciath
hm, testing submitting a mc quiz, the inputmask looks pretty easy and comfortable!
The 2nd step/pass on multiple choice quiz could eventually be left, if the right answer is marked by a special sign (e.g. @ or #) after the question inline ... it would be a possible solution for a one pass mc mask. An other solution could be a simple field after the textarea for a simple number (e.g. 2) for the correct line. However: I´m only able to test the input mask ;) ... looking forward :D

Uwe