mod/scorm/player.php Line 140
<script type="text/javascript" src="<?=$CFG->wwwroot?>/mod/scorm/rd.js"></script>
The PHP short form "<?=$CFG->wwwroot?>" doesn't work on all servers. Under certain circumstances the short form is not resolved and the script not loaded. I have gotten this issue now.
Moodle programing guidelines propose not to use the short forms. Please replace with
<script type="text/javascript" src="<?php echo $CFG->wwwroot ?>/mod/scorm/rd.js"></script>