View Full Version : Inferno Quiz v2.1
amykhar
05-30-2005, 06:35 PM
I hacked up a quick CMPS module for y'all. The screenshot I've provided does NOT look like the code I've given you. My quiz code stores the quiz's author's name and userid. The default Inferno Quiz does not. So, the version I have uploaded shows only the title of and link to the latest quiz.
amykhar
05-30-2005, 07:22 PM
And, one more quiz for y'all. This one is on the U.S. Memorial Day holiday.
Hoang Tu Ao Den
05-30-2005, 08:31 PM
Thanks for this hack. Installed !
I have one small question, the last step on your instructions said:
CHMOD the following files/folders to '0777':
includes/
images/
Is is neccesary ?
Thanks
Paul M
05-30-2005, 10:48 PM
Thanks for this hack. Installed !
I have one small question, the last step on your instructions said:
CHMOD the following files/folders to '0777':
includes/
images/
Is is neccesary ?
Thanks
No, neither is necessary - but the others mentioned are (the quiz folder, and the settings file).
amykhar
05-31-2005, 12:03 AM
Another Mod. This one improves the Who's Online Page to show which quiz the viewer is taking or which stats the user is viewing. This borrows heavily from the ibproarcade hack.
Amy
Great hack,
I saw this question on page 16 but didn't see any response. Is there an option for retaking a quiz? It would be nice for some sort of time option aswell. ( Time between taking a quiz a second time).
Jaks
Neutral Singh
05-31-2005, 08:19 AM
Thanks amykhar for these useful hacks... :)
brianstevz
05-31-2005, 08:20 AM
I modified this to work with vBa. Borrowed heavily from tcs random arcade hack.
https://vborg.vbsupport.ru/showthread.php?p=660184#post660184
Snake
05-31-2005, 10:32 AM
Nice addons Amy. :)
amykhar
05-31-2005, 12:57 PM
Great hack,
I saw this question on page 16 but didn't see any response. Is there an option for retaking a quiz? It would be nice for some sort of time option aswell. ( Time between taking a quiz a second time).
Jaks
No. There's not. Right now, once you take a quiz you can't take it again.
-=Sniper=-
05-31-2005, 01:59 PM
any chance so guests can view only?
amykhar
05-31-2005, 02:21 PM
Yes. In the Quiz Template, remove the if clause that prohibits Guests from viewing. Then, set each quiz so that Guests may not take the quiz.
amykhar
05-31-2005, 07:24 PM
$Results[] = "<tr><td><a href='quiz.php?$session[sessionurl]do=UserStat&userid={$Result['r_userid']}&id={$Quiz['qid']}'>{$Result['username']} </a></td> <td>{$Result['r_score']}%</td></tr>";
I had a slight problem with this mod in that it put a bunch of commas above the result table. To solve that, I changed:
$Submissions = implode(",",$Results);
to
$Submissions = implode(" ",$Results);
dsboyce8624
05-31-2005, 07:30 PM
When I click submit at the end of a quiz I always get the "You have already taken this quiz" error.
It also takes about 5 minutes to come back with results.
I just installed it and I know I haven't taken them yet, any ideas?
amykhar
05-31-2005, 07:31 PM
When I click submit at the end of a quiz I always get the "You have already taken this quiz" error.
It also takes about 5 minutes to come back with results.
I just installed it and I know I haven't taken them yet, any ideas?
Have you installed any of the mods in this thread or are you using the base code?
dsboyce8624
05-31-2005, 07:34 PM
Just what I downloaded from the first post.
Hoang Tu Ao Den
06-01-2005, 06:38 AM
Great Hack.
I have one suggestion,
There's a big way to cheat this Quiz system, user can Take The Quiz. And when it show up, they can remember / copy/ print all the questions out and close the browser. At that time, they have all the questions, and the system won't show that they took the quiz.
I used this hack for award prize, so ... it's a big problem for me... if it is so easy to cheat like this.
Anyway to make it, if they see it, then they can't take it again ?
Or, make it where the user close the browser then it will pop up an error like : You haven't finish the quiz, are you sure you want to quit ? ... or we will only grade what you have done
so far if you close the browser ......... ?
amykhar
06-01-2005, 10:06 AM
Just what I downloaded from the first post.
Queck your quiz_results database table and see what's in there.
banshee
06-01-2005, 11:10 AM
Well I use it for contests to but I make it so they can not see the answers to the quiz when completed. I don't want them giving all the answers away to other members.
amykhar
06-01-2005, 05:25 PM
This is what I consider a bug-fix. Y'all may consider it a mod. Either way, it changes how quizzes are scored.
Right now, if you take a quiz that has questions with multiple correct answers, it is possible for you to score higher than 100% on the entire quiz. This change fixes that.
(This is because the old version checked all the actual right answers, but didn't keep a count of the possible number of right answers)
Ok, this looks awesome! I am gonna try it out tonight. A Ucash addon would be even 'mobetter'
Turbosport
06-01-2005, 07:49 PM
When I click submit at the end of a quiz I always get the "You have already taken this quiz" error.
It also takes about 5 minutes to come back with results.
I just installed it and I know I haven't taken them yet, any ideas?
I get this exact same problem any ideas people.
amykhar
06-01-2005, 11:41 PM
I get this exact same problem any ideas people.
As I asked the other guy, please look at the quiz_results table and see if there are any results in there under your userid. Can anybody else on your forum take quizzes? If so, what makes you different from them? To help you fix a bug that most of us don't see, we need more info.
amykhar
06-02-2005, 10:38 AM
Another mod for lazy admins like me. I love the ability to set usergroup permissions on a per-quiz basis. I HATE having to put them in using the javascript interface every time I add a quiz. Most times, I want the same usergroups to be able to use most quizzes.
So, I hacked this up to save me time. It's not pretty like Scot's javascript, but it gets the job done AND it maintains the ability for me to edit a quiz and change the permissions for a specific quiz.
Change the default usergroups to suit your needs. Obviously, mine won't work for you.
Amy
dsboyce8624
06-02-2005, 03:19 PM
As I asked the other guy, please look at the quiz_results table and see if there are any results in there under your userid. Can anybody else on your forum take quizzes? If so, what makes you different from them? To help you fix a bug that most of us don't see, we need more info.
I only see resluts for the ones I have actually taken. And I now understand that it's doing the same thing for all users, not just me. The person who said it worked fine was a bonehead.
Sorry for the delay.
amykhar
06-02-2005, 05:16 PM
I only see resluts for the ones I have actually taken. And I now understand that it's doing the same thing for all users, not just me. The person who said it worked fine was a bonehead.
Sorry for the delay.
I am having absolutely no problem taking quizzes on your site using firefox. And, as it seems that you can take some quizzes (I see your scores), your first bug report isn't quite accurate. This doesn't always happen to you. Which specific quiz is giving you grief?
By the way, you didn't change the Eddie Albert question. He died last month :D
dsboyce8624
06-02-2005, 06:14 PM
I am having absolutely no problem taking quizzes on your site using firefox. And, as it seems that you can take some quizzes (I see your scores), your first bug report isn't quite accurate. This doesn't always happen to you. Which specific quiz is giving you grief?
By the way, you didn't change the Eddie Albert question. He died last month :D
They all post my results, but when I click submit, it takes about 5 minutes, then says "you already too it" then if I go to look at the results they are there.
Must be an IE thing, I had a problem with IE and vBChat as well. After a bout a month it was figured out. I don't know how this could relate though.
Maybe have to look at what function happens when you click the submit button.
I'm going to try one of yours with IE and see what happens. I know yours is way modded, but just to check.
Thanks for looking, it figures it's an IE thing.
PS - I know he died, but I've been lazy.
Dennis
EDIT: Okay, it works fine on yours. Which means I screwed something up. Damnit!!!
dsboyce8624
06-02-2005, 06:22 PM
Okay, I took one of mine. After about 4 miutes of waiting I just hit stop and went to view the scores. The score I submitted was there, but the page had never come back.
Any ideas on what could cause this?
amykhar
06-02-2005, 06:30 PM
Try optimizing your database. Also, try pinging your server from your isp and see if you are lagging somehow. It sounds like it's timing out on you for some reason, and it shouldn't. It's a really simple function that does the submit. How does it behave on your site with firefox? I'm pretty much stumped because I don't see the problem happening.
Amy
rinkrat
06-03-2005, 03:40 AM
Here's a King of the Hill quiz. How about sharing some of yours if you have an original one?
OrangeFlea
06-06-2005, 09:53 AM
How does one add a "Top 200, 300, etc." link at the bottom. It maxes out at "top 100" and there's more than that.
MorrisMcD
06-10-2005, 02:12 AM
Sweet Hack.. Thanks for your talent :)
MorrisMcD
06-10-2005, 02:14 AM
Oh and thx for the extra quizzes to you all that posted them..
MorrisMcD
06-10-2005, 02:22 AM
Another Mod. This one improves the Who's Online Page to show which quiz the viewer is taking or which stats the user is viewing. This borrows heavily from the ibproarcade hack.
Amy
Love this addition.. Should be implemented into the next version and every hack that it applies to for that matter :)
midnightz
06-12-2005, 03:58 PM
I would like to strip away the postbit being included in the PM as mine is very custom. I searched the thread and might have missed it, but I would like the scores to be displayed or emailed if not then a PM is fine but can you please advise how I can strip the postbit and just send the basic quiz info to the pm system.
I looked and had no luck
Thanks
sdsvtdriver
06-16-2005, 11:52 PM
I just installed this mod and have a question.
When I submit a quiz, it has to be approved by moderators. Can this be changed?
When I submit a quiz, and 'allow' it, it is closed. I have to go in and open it, then set permissions. Can it be incorporated that when a user submits a quiz, its active for a default usergroup set?
owner
06-20-2005, 05:49 AM
Ok iam getting this error....
Warning: in_array(): Wrong datatype for second argument in /quiz.php on line 353
Although ive approved the quiz from the admin and i can view the stats of the quiz. But when i try taking the quiz... i End up getting this error on the top of my screen and this in the quiz box.
An Error Has Occured!
An error has occured, the following message has been left below:
Your usergroup does not have access to participate in this particular quiz.
[ Back ]
Snake
06-20-2005, 09:44 AM
Make sure that you've made the file edits. Seems like you haven't.
DS MrSinister
06-21-2005, 05:57 PM
JUst install.. No problems. I love it great job :banana:
lanc3lot
06-23-2005, 12:45 AM
Hello, just installed, no problems..
3 questions though...
- Can i permit somehow, my users to take the same quiz more than one time?
- U say u can upload an image with every quiz. What size must be the image? (it seems after testing, that this must be 198x30) although in the pics you have in the first post, it shows it has different size Can this be changed somehow?
- Can i add a picture inside a single question? For example, we can show an image that the question reffers to and the user can reply a question based on the picture :D
Thnx in advance :)
lanc3lot
06-23-2005, 04:34 PM
Hello, just installed, no problems..
3 questions though...
- Can i permit somehow, my users to take the same quiz more than one time?
- U say u can upload an image with every quiz. What size must be the image? (it seems after testing, that this must be 198x30) although in the pics you have in the first post, it shows it has different size Can this be changed somehow?
- Can i add a picture inside a single question? For example, we can show an image that the question reffers to and the user can reply a question based on the picture :D
Thnx in advance :)
ok it has been replied :)
For your information, (for new users for example) the answers were:
1st) No it cant be done
2) it doesnt have any sizes...it was my fault
3) Yes it can be done, by inserting BB Code
:)
lanc3lot
06-23-2005, 09:45 PM
Hm feature for the next version: In the postbit template, to appear the champions in each Quiz :) (if the user it is i mean )
And ofcourse, the ability the user to play again the quiz
:)
DS MrSinister
06-24-2005, 04:13 AM
I hacked up a quick CMPS module for y'all. The screenshot I've provided does NOT look like the code I've given you. My quiz code stores the quiz's author's name and userid. The default Inferno Quiz does not. So, the version I have uploaded shows only the title of and link to the latest quiz.
I cant get your module to work.. I Am getting function getrowcolor() error.
I see u have vba 2 rc 1 installed also. can u plz update your addon. thanks!
amykhar
06-24-2005, 12:56 PM
I cant get your module to work.. I Am getting function getrowcolor() error.
I see u have vba 2 rc 1 installed also. can u plz update your addon. thanks!
Just comment out the line with the getrowcolor. I wrote this for an older version of the portal. It works fine without that line in it.
Amy
DS MrSinister
06-24-2005, 01:31 PM
thxs
owner
06-26-2005, 07:39 AM
Ok iam getting this error....
Warning: in_array(): Wrong datatype for second argument in /quiz.php on line 353
Although ive approved the quiz from the admin and i can view the stats of the quiz. But when i try taking the quiz... i End up getting this error on the top of my screen and this in the quiz box.
An Error Has Occured!
An error has occured, the following message has been left below:
Your usergroup does not have access to participate in this particular quiz.
[ Back ]
hELP ... did all my file edits properly .... something is wrong :(
Hoang Tu Ao Den
06-26-2005, 08:20 PM
Hey Guys,
I was trying to add an image into a quiz using the bbcode img. However, all it show up is the link to the image. Anyway to fix it ?
Thanks !
Jamie-UK
06-28-2005, 10:29 PM
Hello,
I'm having a slight problem. The Overall leaderboard isn't showing the average result for all the quizzes the user has taken.
e.g.
http://allboards.lionhead.com/quiz.php?do=Leaderboard&type=all
Could this be because I'm using version 3.0.1 ?
Regards,
Jamie
T3MEDIA
06-28-2005, 10:40 PM
Why not from the quiz results link them with members that had the same results?
That would be hot
amykhar
06-28-2005, 10:57 PM
Hello,
I'm having a slight problem. The Overall leaderboard isn't showing the average result for all the quizzes the user has taken.
e.g.
http://allboards.lionhead.com/quiz.php?do=Leaderboard&type=all
Could this be because I'm using version 3.0.1 ?
Regards,
Jamie
No. That isn't a feature of the quiz system. I have it added in mine - it's not that hard to do.
syrus.xl
06-28-2005, 11:35 PM
Well I'm nearly ready to change over my site to vBulletin, which I'm still modding.
However, I installed the Inferno Quiz which is excellent - but is there anywhere where I can get more quiz lists from? I've looked but cannot seem to find any. :disappointed:
Seems a tedious job of inputting loads of questions and answers with images. Personally, I think the Quizzes look more interesting if theres an image. :D
Jamie-UK
07-01-2005, 03:38 PM
No. That isn't a feature of the quiz system. I have it added in mine - it's not that hard to do.
I don't suppose you could share that code ?
I'm not much of a programmer. :disappointed:
chariotdriver
07-09-2005, 10:07 PM
I keep getting this message when I try to take part in a quiz:
Any ideas why? Yes i have set the allow user groups in the quiz cp
I'm getting this and am on IE.
It is a new forum and Im trying to get in on the Admin account and maybe I have not set the permissions up properly.
Phil
chariotdriver
07-10-2005, 12:23 AM
I did find out that I missed the Quiz setup in the ADmin Panel,.. but now I'm getting tis,..
Warning: fopen(./includes/settings.quiz.php): failed to open stream: Permission denied in \includes\engine.quiz.php on line 662
Warning: fwrite(): supplied argument is not a valid stream resource in \includes\engine.quiz.php on line 663
Warning: fclose(): supplied argument is not a valid stream resource in \includes\engine.quiz.php on line 664
Inferno Quiz Message
System Response
Quiz Settings Updated Successfully
Available Actions
Change Quiz Settings
vBulletin v3.0.7, Copyright ©2000-2005, Jelsoft Enterprises Ltd.
Scooterpig
07-10-2005, 02:15 AM
Just wondering if anyone can confirm if there is in fact a size limit for a pic to be uploaded please and does it need to be in the images folder?
I tried adding one and all it showed for it was the title of the quiz again and no pic..:(
chariotdriver
07-11-2005, 02:55 AM
Is there a way to get a pic upload for a question?
I had envisioned that we could use these as part of the question for "Describe this _____. and then multiple choice.
Phil
amykhar
07-11-2005, 02:58 AM
You can use vb code in questions. It works for images too.
chariotdriver
07-11-2005, 03:20 AM
I did find out that I missed the Quiz setup in the ADmin Panel,.. but now I'm getting tis,..
Warning: fopen(./includes/settings.quiz.php): failed to open stream: Permission denied in \includes\engine.quiz.php on line 662
Warning: fwrite(): supplied argument is not a valid stream resource in \includes\engine.quiz.php on line 663
Warning: fclose(): supplied argument is not a valid stream resource in \includes\engine.quiz.php on line 664
Inferno Quiz Message
System Response
Quiz Settings Updated Successfully
Available Actions
Change Quiz Settings
vBulletin v3.0.7, Copyright ?2000-2005, Jelsoft Enterprises Ltd.
Has anyone seen this error?
I'm new here and your supposed to treat me special!!
Seriously, is this something that we are doing wrong in the setup?
Thanks,
Phil
amykhar
07-11-2005, 03:21 AM
You did not properly change the permissions on the settings file. When you install a mod, you need to make sure to do each and every step exactly as the hack author wrote them.
chariotdriver
07-11-2005, 03:56 AM
Ok,.. I had this done by a coder that is not familiar with these hacks, so I will pass this along to him, thanks for the quick response.
Phil
Neal-UK
07-11-2005, 06:06 PM
Well i've installed this as shown and set permission via the AdminCP. However, now when I try to take a quiz i've made, I get this message at the top of my forums:
Warning: in_array(): Wrong datatype for second argument in /quiz.php on line 353
And this message in the quiz itself:
An error has occured, the following message has been left below:
Your usergroup does not have access to participate in this particular quiz.
Neal-UK
07-11-2005, 06:16 PM
Well i've installed this as shown and set permission via the AdminCP. However, now when I try to take a quiz i've made, I get this message at the top of my forums:
Warning: in_array(): Wrong datatype for second argument in /quiz.php on line 353
And this message in the quiz itself:
An error has occured, the following message has been left below:
Your usergroup does not have access to participate in this particular quiz.
sorry, didn't notice the usergroup further options once quiz created. Now I feel silly, goodbye and great hack!!
themarinersfan
07-21-2005, 03:10 PM
Looks good, but I get an error:
Updating style information for each style
Default Style ... (Templates) (StyleVars) (CSS) (Replacement Variables) Done.
And then nothing happens... There isn't a button that says Next or anything... Is it done or what? It says it's done...
amykhar
07-21-2005, 03:33 PM
Looks good, but I get an error:
Updating style information for each style
Default Style ... (Templates) (StyleVars) (CSS) (Replacement Variables) Done.
And then nothing happens... There isn't a button that says Next or anything... Is it done or what? It says it's done...
If I recall correctly, it's done at that point. Did you try the mod to see if it works?
themarinersfan
07-21-2005, 03:36 PM
Oh you're right. Stupid me :P
msgotit
07-21-2005, 08:11 PM
This may have been asked, but I couldn't find it, does the permissions check for secondary usergroups. I looked quickly and it didn't appear to. In quiz.php there are these line:
// Assume Your Usergroup Has Access To Participate In A Quiz
$Your_ID = $bbuserinfo['usergroupid'];
$Perms = unserialize($Quiz['q_perms']);
if(!in_array($Your_ID,$Perms['Participate'])){
RunError("Your usergroup does not have access to participate in this particular quiz.");
}
That is were it checks for the permissions? Which means if you use secondary usergroups it wouldn't work? Is that right or no.
DS MrSinister
08-09-2005, 05:43 PM
can anyone help me out on this. I am working on tweaking my mod that amykhar made for this. I like to add the person name that who submit the quiz and the image as well..
This is what it looks like soo far..
lmongello
08-09-2005, 06:11 PM
Man, I GOTTA get this installed, but I'm currently using VbQuiz on my vb3.0.6 forums. I need to be able to import the quizzes, results, etc. into this hack.
Can anyone offer me any help?
tormodg
08-16-2005, 07:04 AM
This hack looks brilliant. I use vbQuiz and the only thing that stops me from installing Inferno Quiz is that I want the option to display one question per page.
Is there any hope that this will be implemented in the future?
lmongello
08-16-2005, 01:12 PM
OK... I'm getting desperate to get this installed and import my old questions from vBquiz.
And yes, I'm willing to pay (reasonably) for help. Please contact me via PM or email if you can offer assistance. Thanks!
commTRU
08-21-2005, 06:06 PM
Just a suggestion, but a great add-on for this would be to include a 'Featured Quiz' on the main quiz home, just above the categories :)
FrozenCreations
08-25-2005, 02:45 PM
never mind ^^;
commTRU
08-28-2005, 07:14 PM
Actually, another nice add-on would be to send a PM/email a admin (Whatever ID is specified) to let them know that new quizzes have been submitted for moderation.
I'm afraid I'm only good at making up suggestions and ideas, rather than coding mods myself >_>
amykhar
08-28-2005, 07:24 PM
That's already been done in the new version for 3.5.
Snake
08-29-2005, 09:15 AM
amy I like the modifications you have applied for the quiz on your forums so I'm wondering if you could share your version of this hack, please.
commTRU
08-29-2005, 11:36 AM
That's already been done in the new version for 3.5.
Be nice if someone could turn that into an add-on for those of us not wanting to upgrade to 3.5.0 :)
amykhar
08-29-2005, 12:23 PM
I did it on my old 3.0.7 board and suggested it as a feature addition to Zero. I'm not sure if I posted it in this thread as an addon or not. I did share some of my earlier mods in here.
Snake
08-29-2005, 01:25 PM
Um I really don't have the time to look up with a 20+ thread pages. Can you get me the link plz?
amykhar
08-29-2005, 01:42 PM
Why do I have to look through 20 pages for something you want? I don't need the changes. ;)
paul41598
09-19-2005, 12:30 PM
Can people retack the quiz? Or do you have to delete their entry first? Dam
amykhar
09-19-2005, 01:23 PM
why would you want people to retake a quiz :confused: Once they've taken it, they've seen the answers.
why would you want people to retake a quiz :confused: Once they've taken it, they've seen the answers.
Not if ya don't let 'em :)
amykhar
09-19-2005, 03:12 PM
My members would murder me if I didn't let them see :D
stan111
09-23-2005, 06:54 AM
i luv this hack
edit: i got it installed perfectly
thanks
Cueball
10-09-2005, 06:09 AM
Excellent hack, Thanks so much for your hard work !!
Snake
10-09-2005, 12:04 PM
I'm looking to see an updated version of this hack. :)
lmongello
10-09-2005, 03:23 PM
The offer still stands for anyone who can help me export the information from the vbQuiz hack into this and get this stup. I have a ton of quizzes in that other hack and would love to import theme here and use Inferno. Looking for a generous volunteer, but would (gulp) pay if I really had to.
Thanks!
Brimstone
10-11-2005, 11:58 AM
Any chance that we can get this for vb 3.5.0?? :)
I love this hack.
Snake
10-11-2005, 12:23 PM
It works already on 3.5 although we are looking forward for an update.
-=Sniper=-
10-11-2005, 12:39 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=83130" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=83130</a>
michaelsilvia
10-31-2005, 06:10 AM
Excellent hack, thanks! Anyone have any zips of some good quizzes?
Mike
amykhar
10-31-2005, 10:56 AM
Did you read the thread, Mike? There are several in the thread. :)
michaelsilvia
10-31-2005, 01:08 PM
I read the first few pages and didn't see any. This thread is 23 pages long! Thanks for letting me know there are some, I will go back through and look.
Mike
edwinp
11-01-2005, 11:12 AM
Fantastic hack, thanks for the great work.
amykhar
11-13-2005, 08:18 PM
I am not sure you should be seeing that error in the 3.0.x version of this mod. The databmanager is a 3.5 feature - not 3.0
ang2el
11-14-2005, 03:07 PM
how to make to display each question in single page instead it shows all the quesiton in a single page.
I love this quiz
http://www.medschoolguide.co.uk/forum/quiz.php
rex_b
11-14-2005, 06:06 PM
great hack!!!
a chev quiz for the car dudes
Snake
11-24-2005, 04:38 PM
Great addition! Thanks.
Do you have a VB 3.5 version for this?
Snake
11-26-2005, 10:49 AM
Are you talking to me?
-=Sniper=-
11-26-2005, 10:57 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=83130" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=83130</a>
lmongello
07-07-2006, 08:25 PM
The offer still stands for anyone who can help me export the information from the vbQuiz hack into this and get this stup. I have a ton of quizzes in that other hack and would love to import theme here and use Inferno. Looking for a generous volunteer, but would (gulp) pay if I really had to.
Thanks!
my friend's sorry for ask, i need a quiz for my forun and i need to now if this inferno quiz allow edit questions and etc etc, because i need to put my question and translate to portuguese.
i so the previews and i did not see what quiz is this :( this is a quis that i see on portuguese site:
http://www.maisfutebol.iol.pt/quizz2005/index.php#
click on ex ? 5. Benfica ? quiz will start, and now whe may try 1 of 4 aswer, after do "seguinte" = next
This is a quiz correct? and inferno may whe edit ? may i try an example?
Catziggy
12-02-2007, 04:00 PM
I have tried to install but in the proceed on a new installation I get this error message
Error - //quiz.xml not found - Please upload it to continue.
And yes quiz.xml is in the admincp directory
okay i uploaded quiz.xml to forum root and now it seems to be working
nope it isnt it is stuck on this
Inferno Quiz is currently executing the required actions. This may take a few moments.
For about an hour now.
Any ideas?
bolly.beats
01-10-2008, 12:12 AM
really nice thank you workin Greatt
Will this work in 3.6.7?
Thank you!
Welshy2008
08-10-2008, 05:36 PM
Hi Guys - Would this work (or there one around) that works on the vB 3.6.8 Please?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.