Ultimate Quiz Mod

All updates to the site will be posted here.

Moderator: CricketMX Forum Moderators

User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

I haven't added a feature to delete yet :oops:
To edit, simply click it (the name of the category or subcategory)

:D
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
hassack
Greenhorn
Greenhorn
Posts: 1
Joined: Mon Mar 14, 2005 3:23 pm

I have this error ... any idea ???

Cannot update view counter

DEBUG MODE

SQL Error : 1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3

UPDATE phpbb_quiz SET quiz_views = quiz_views + 1 WHERE quiz_id =

Line : 112
File : quizzer.php

Great .. Great Mod ... realy , are there any way to don't make always the first question always the right question ???

thx .. great job ..

EDIT :

I can solved , changing ..

Code: Select all


$vchundred = "UPDATE " . QUIZ_TABLE . "
	SET quiz_views = quiz_views + 1
	WHERE quiz_name = ' . $page . ;

to

Code: Select all


$vchundred = "UPDATE " . QUIZ_TABLE . "
	SET quiz_views = quiz_views + 1
	WHERE quiz_name = '" . $qnm . "'";

Is this OK ??? , work now , but i know if it's ok :)

Plus , I find a mising var in lang_admin.php ----> $lang['guest_cant']

Thx again

EDIT 2 : I solved the problems with always the right anwser is the first choice

i need to add ...

srand((double)microtime()*1000000);

at the begining of viewquestion.php to initializate random uses with suffle() funtion , i guest my php version in my hosting company is older than v4.2

Thx
User avatar
battye
Site Admin
Site Admin
Posts: 14391
Joined: Sun Jan 11, 2004 8:26 am
Location: Australia
Contact:

It's been a while since I've updated this post, basically I am not adding more features until the second major release.

So far I have added the following:
  • Current Features
    Index Page
  • Link to quizzes
  • Categories
  • Statistics
  • Page Views For Completed Quizzes (Not on a per question basis)
  • Author
  • Link to Random Quizzes
    Playing The Quiz
  • 4 Multiple Choice Answers
  • Shuffled
  • Layout (by Xusqui)
  • Incorrect / Correct answers after playing
  • Indepth statistics about how you went
  • DHTML Statistics Drop Down Box
  • Pagination
  • Cash Rewards
  • New Redirection Engine
  • Image Support
  • Time Limit Feature
  • Admin's can delete or edit quizzes
  • Optional feature so the Quiz doubles as a survey
  • Ability to play a quiz picked at random from the database
    Adding Quizzes
  • Questions
  • Fakes / Answer
  • Quiz Name
  • Image Support
    Admin Panel
  • Quiz Configuration
  • Category Admin
  • Configure cash / points settings
  • Verify Quizzes
    Statistics
  • Modules
  • TPL Files
  • Drop down statistics box when viewing quiz
  • Optional surveys
Am I missing anything?
Please tell me so I can add it to the list :)
CricketMX.com in 2022: Still the home of bat's, rat's and other farmyard animals!

"OK, life [as you chose to define it] repeats until there are no more lessons to be learned." - nrnoble (June 12, 2005)
"the new forum looks awesome, it's getting bigger & better" - p2p-sharing-rules (11 Jan, 2008)
"Looks like CMX is not only getting bigger...but, also getting better!!" - moongirl (14 Dec, 2007)
Locked