Auto Evaluation Sometimes Working, sometimes not

Home Forums Legacy Support Support queries Other issues Auto Evaluation Sometimes Working, sometimes not

Viewing 15 posts - 31 through 45 (of 108 total)
  • Author
    Posts
  • #318837
    MrVibe
    Keymaster
    Oh no, there is so less time, I would have recommended to switch to v4. Can you ask your users to save the quiz, saving the quiz means that you have a manual method to capture and evaluate in case things do not work out. Write in the quiz description about this.
    1. Is this happenning when multiple users submit the quiz ?
    Installing sql executioner plugin and checking what went wrong with u ser above.
    #318838
    paitchadze
    Participant
    This reply has been marked as private.
    #318840
    paitchadze
    Participant
    manual won't work as there is too much time. Changing to V4 is going to take lots of time in my opinion. and its not happening when multiple users submit. it can be even 1 user.
    #318841
    MrVibe
    Keymaster
    Can you get any data on whcih browser they're using ? Must not use in in Cognito mode , the quiz saves the result in the localstorage as well. If react quiz is disabled it might be a good idea to enable them. React quiz posts 1 request at the end of the quiz to the database Single quiz posts 1 request for each question to save the question first into comments and then a cumultative score.
    #318844
    paitchadze
    Participant
    This reply has been marked as private.
    #318846
    MrVibe
    Keymaster
    So in WP admin - Tools -SQL Exectuioner, I see : select * from $bp_activity WHERE user_id = 275 AND secondary_item_id =842 https://prnt.sc/v0ivnj and the result is blank. https://prnt.sc/v0iw4y -- Recommending React Quiz to resolve this issue.
    #318847
    MrVibe
    Keymaster
    If data is saved in comments there is another way to force generate the quiz result. Sharing that in 2 minutes.
    #318848
    MrVibe
    Keymaster
    ok yes, then the user views the quiz result. Add a ?force=1 parameter in the browser for the quiz result permalink.
    #318849
    paitchadze
    Participant
    This reply has been marked as private.
    #318850
    MrVibe
    Keymaster
    for react quiz add this line in .htacces , see link : https://wplms.io/support/knowledge-base/quizzes-on-react/
    #318851
    paitchadze
    Participant
    Add a ?force=1 parameter in the browser for the quiz result permalink. where can I add quiz result permalink?
    #318852
    MrVibe
    Keymaster
    The quiz data is a huge overhead we are caching the data in the activity. So once the data is cached in the activity, it would show form the activity. There is another option to add a code fix to stop this caching of data altogether, since you have smaller quizzes this can work. so in bp-course-tempalte.php we locate this line of code: if(!empty($results) && !isset($_GET['force']) && $from_activity_meta){ $quiz_status = bp_course_get_user_quiz_status($user_id,$quiz_id); and change it to , basically forcing quiz to re-create entire data for the result if(!empty($results) && 0 && $from_activity_meta){ $quiz_status = bp_course_get_user_quiz_status($user_id,$quiz_id);
    #318853
    MrVibe
    Keymaster
    This is the results screen for students : https://prnt.sc/v0j2fu Click on quiz is the permalink , so you see something like this in url : https://elearning.isfed.ge/members/vibeadmin/course/course-results/?action=1681 -- to force regenerate result : https://elearning.isfed.ge/members/vibeadmin/course/course-results/?action=1681&force=1
    #318856
    paitchadze
    Participant
    This reply has been marked as private.
    #318857
    paitchadze
    Participant
    I shall send that link to users? because I cannot enter there.
Viewing 15 posts - 31 through 45 (of 108 total)
  • The topic ‘Auto Evaluation Sometimes Working, sometimes not’ is closed to new replies.