Launching a SCORM course in a new window/tab
Posted: Mon Nov 10, 2014 11:44 am
Hi,
My company wants to move our LMS from Ubuntu 12.04 to Windows Server 2008 R2 64bit. I come from a Microsoft background and have only been working on open source software for the last 2 months or so. Our current setup opens a courses in a new window/tab using this code modification in the orglib.php (line 1279) file. I didn't modify the code. It was noted in the handover document.
I have since installed Wampserver 2.2e on our Windows server and can launch course in the same window/tab as the LMS with success. When using the above mentioned code to open the course new window/tab the window opens but then nothing happens.
Any pointers would be highly appreciated.
Tanks in advance.
My company wants to move our LMS from Ubuntu 12.04 to Windows Server 2008 R2 64bit. I come from a Microsoft background and have only been working on open source software for the last 2 months or so. Our current setup opens a courses in a new window/tab using this code modification in the orglib.php (line 1279) file. I didn't modify the code. It was noted in the handover document.
Code: Select all
$out .= ' <a target="_blank" '.( $arrData[1] == 'scormorg' ? ' rel=""' : '' ).' class="'.$classStyle.'" ' .
'id="'.$this->id.'_'.$this->_getOpPlayItemId().'_'.$stack[$level]['folder']->id.'" ' .
'name="'.$this->id.'['.$this->_getOpPlayItemId().']['.$stack[$level]['folder']->id.']" ' .
'href="/forums.html?modname=organization&op=custom_playitem&edit=1&id_item='.$stack[$level]['folder']->id.'" ' .
'title="'.$this->getFolderPrintName( $stack[$level]['folder']).'">'
.$this->getFolderPrintName( $stack[$level]['folder']).
'</a>';
Any pointers would be highly appreciated.
Tanks in advance.