I've succeed to upload imsmanifest.xml in zip file alone to the lms and a new directory is present in file/DoceboLms/scorm/ with the imsmanifest.xml, then I uploaded all the other content files to the new directory.
When I launch my content in the front of the lms, my quizz is not displayed (the quizz in html), but instead I see all the php source code of the quizz in the player...
what I see is the source code of the quizz (easyquizz content is in php) :
[...]
foreach ($_SESSION['QuizzSession']['PageMapping'] as $newId)
echo $newId . ' - ' . (isset($this->Pages[$newId]['ThemeGuid']) ? $this->Pages[$newId]['ThemeGuid'] : 'root') . '
';
echo '
'; } } }; $GLOBALS['QuizzManager'] = new QuizzManager(); if (!empty($_POST['HeartBeat'])) { // Log a heartbeat pulsation $ElapsedTime = $GLOBALS['QuizzManager']->Pulse(); $output = '{"Return": "Acknowledged", "ElapsedTime": '.$ElapsedTime.'}'; header("X-JSON: ($output)"); exit(); } if (isset($_GET['PageNumber'])) { $CurrentPage = $GLOBALS['QuizzManager']->TranslatePageNumber($_GET['PageNumber']); // If PreviousPageNumber is not the expected page number from the session, // the user has probably pressed backspace (booo). We do nothing. if ($CurrentPage == $GLOBALS['QuizzManager']->GetCurrentPageIndex()) { $GLOBALS['QuizzManager']->UninitPage($_GET); $GLOBALS['QuizzManager']->MoveToNextPage($_GET); } } if (empty($GLOBALS['NoDisplay'])) $GLOBALS['QuizzManager']->displayPage(); ?>
What can display the scorm player ??