While trying to create a "Quiz Direction", I get an error that states "Question Text Is Empty" when I try to save it. See the attached screen shot.

drupal 7.8
mysql 5.1.44
php 5.3.2

CommentFileSizeAuthor
quiz_direction_error.png111.89 KBscwoodal

Comments

falcon’s picture

Confirmed. I get this one too. The body field doesn't show up in the node form.

david.newcomb’s picture

Has anyone found a solution to this issue? I am having the same problem.

Thanks

sivaji_ganesh_jojodae’s picture

Status: Active » Fixed

Commit f0cb7a8..c2e6f0d will fix this.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

oystercrackher’s picture

Status: Closed (fixed) » Active

Hi,

Changing this back to active. I am running latest V7 dev version and am getting the same error. Was this fix incorporated into the latest dev version?

Please advise.

Thanks

falcon’s picture

Status: Active » Fixed

Should be ok in alpha10

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

nick-creativshake’s picture

hi i have the same trabble can help me same wear

Lloyd_87’s picture

Issue summary: View changes

The error still occurs, still no fix from creators?

sivaji_ganesh_jojodae’s picture

Below is the patch I committed to fix this issue long away.

If the call to quiz_question_add_body_field('quiz_directions'); is not in place trying adding the same to custom hook_update_N() else attach the body field manually to quiz_directions node type.

$ git diff f0cb7a8..c2e6f0d
diff --git a/question_types/quiz_directions/quiz_directions.install b/question_types/quiz_directions/quiz_directions.install
new file mode 100644
index 0000000..16225e7
--- /dev/null
+++ b/question_types/quiz_directions/quiz_directions.install
@@ -0,0 +1,14 @@
+<?php
+
+/**
+ * @file
+ * The installer file for quiz directions module.
+ */
+
+/**
+ * Implements hook_install().
+ */
+function quiz_directions_install() {
+  // Add body field to quiz directions node
+  quiz_question_add_body_field('quiz_directions');
+}
nick-creativshake’s picture

Component: Code - other » Code - Quiz core

Hi, now I have another problem. Wanted a final exam and create so use the "Categorized random questions", but unfortunately I can not assign questions from each lesson quizzes, as I have called them. it appears the Felermeldung "The termname you Entered does not match any registered question terms". Can someone help as it is with you???

see picture

http://creativshake.screenculture.de/node/2823/results#overlay-context=&...

nick-creativshake’s picture

Title: Creating Quiz Direction fails » Categorized random questions not works
Component: Code - Quiz core » Code - Other
Assigned: Unassigned » nick-creativshake
Category: Bug report » Support request
Priority: Normal » Major
Status: Closed (fixed) » Active

Hi, now I have another problem. Wanted a final exam and create so use the "Categorized random questions", but unfortunately I can not assign questions from each lesson quizzes, as I have called them. it appears the Felermeldung "The termname you Entered does not match any registered question terms". Can someone help as it is with you???

see picture

http://creativshake.screenculture.de/node/2823/results#overlay-context=&...

ezraw’s picture

Title: Categorized random questions not works » Creating Quiz Direction fails
Component: Code - Other » Code - Quiz core
Priority: Major » Normal

@nick-creativshake, do you have any questions tagged with matching taxonomy terms?

FYI, it recommended to open up a separate issue when you have an unrelated question rather than hijacking an existing support issue. Having separate issues with distinct titles will make it easier for other users to find support.

djdevin’s picture

Assigned: nick-creativshake » Unassigned
Category: Support request » Bug report
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.