HELP,
I tried to duplicate the quiz in moodle 3.9 but it freezes, All the debug options are on but still, there's no issue in front.
FYI: I can still duplicate the attendance and PDFs in a course but not a quiz
HELP,
I tried to duplicate the quiz in moodle 3.9 but it freezes, All the debug options are on but still, there's no issue in front.
FYI: I can still duplicate the attendance and PDFs in a course but not a quiz
Not the answer but some troubleshooting
Turn on debugging to developer level (which you have already tried)
Clear the cache - this usually fixes 90% of problems
https://docs.moodle.org/400/en/Developer_tools#Purge_all_caches
https://developer.chrome.com/docs/devtools/open/
Try a different browser + make sure you are logged in as admin
Use course backup and restore via moodle and/or command line to see if there are any errors
https://docs.moodle.org/311/en/Course_backup#Backup_via_CLI_for_administrators
https://docs.moodle.org/22/en/Administration_FAQ#How_to_change_the_maximum_execution_time
8a. Manually add debugging to the config.php
file in the dev site
$CFG->debug = E_ALL | E_STRICT;
$CFG->debugdisplay = 1;
8b. Test copy quiz on the dev site there in case its an environment issue
8c. Upgrade the dev site to the latest version of 3.9.x in case its a Moodle bug - if that works then check the git log for the commit that fixed the bug