Bulk Export issue

Home Forums Legacy Support Support queries Other issues Bulk Export issue

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #7014
    bryanassata
    Spectator
    I'm having issues with the bulk export from LMS->Settings->Import/Export Please refer to the attached screenshots.  The page just shows a blank screen basically after I've chosen what I want to export.
    #7205
    Anshuman Sahu
    Keymaster
    Please try adding the quiz id in the export settings  . Also try to exporting the quiz without user data .
    #7207
    bryanassata
    Spectator
    I completes if I only select a few options, but I'm trying to export all the answers from all the students who took a specific quiz.  Is there another way to go about it?
    #7243
    bryanassata
    Spectator
    Or do you have a SQL statement I could use to just query the db?
    #7321
    Anshuman Sahu
    Keymaster
    There may be possibility that your php memory is exhausting for fetching to much of data with a single query  . Can you please share how many of the students took the quiz that you want to export and how many questions are there in the quiz ?.
    #7396
    bryanassata
    Spectator
    There were approximately 287 people that took the quiz.  I have full control of the server, as it is self hosted behind a firewall.
    #7561
    MrVibe
    Keymaster
    The export is not a small query, it would fetch the Quiz, Questions included in the quiz, Question answers marked by all the 287 users who marked the quiz, result of each marked answer correct or wrong. You can simply get this data from Quiz - Stats area : If you still need a query for Quiz results try this out : SELECT p.post_title,u.display_name,m.meta_value FROM wp_posts as p LEFT JOIN wp_postmeta as m ON p.ID = m.post_id LEFT JOIN wp_users as u ON m.meta_key = u.ID WHERE p.post_type = 'quiz' AND p.ID = 1131 AND m.meta_key REGEXP '^[0-9]+$'   1131 is the quiz id for which you need the student and scores.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Bulk Export issue’ is closed to new replies.