Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: SCORM module.

Talk:SCORM module: Difference between revisions

From MoodleDocs
m (Talk:SCORM/AICC module moved to Talk:SCORM module: shorter title)
No edit summary
Line 4: Line 4:


:Hi Scott, thanks for your comments. Please feel free to update the SCORM/AICC module page with additional information and/or use the [http://moodle.org/mod/forum/view.php?id=1951 SCORM module forum] for any outstanding questions you may have. --[[User:Helen Foster|Helen Foster]] 13:29, 27 June 2007 (CDT)
:Hi Scott, thanks for your comments. Please feel free to update the SCORM/AICC module page with additional information and/or use the [http://moodle.org/mod/forum/view.php?id=1951 SCORM module forum] for any outstanding questions you may have. --[[User:Helen Foster|Helen Foster]] 13:29, 27 June 2007 (CDT)
<?php  /// Moodle Configuration File
unset($CFG);
$CFG->dbtype    = 'mysql';
$CFG->dbhost    = 'localhost';
$CFG->dbname    = 'moodle17';
$CFG->dbuser    = 'moodleuser';
$CFG->dbpass    = 'xxxxxx';
$CFG->dbpersist =  false;
$CFG->prefix    = 'mdl_';
$CFG->wwwroot  = 'http://www.mymoodle.com/moodle';
$CFG->dirroot  = '/var/www/moodle';
$CFG->dataroot  = '/var/moodledata';
$CFG->admin    = 'admin';
$CFG->directorypermissions = 00777;  // try 02777 on a server in Safe Mode
$CFG->unicodedb = true;  // Database is utf8
require_once("$CFG->dirroot/lib/setup.php");
// MAKE SURE WHEN YOU EDIT THIS FILE THAT THERE ARE NO SPACES, BLANK LINES,
// RETURNS, OR ANYTHING ELSE AFTER THE TWO CHARACTERS ON THE NEXT LINE.
?>

Revision as of 15:55, 27 June 2010

Hi,

There is really no description here of what this plugin does or allows you to do. What happens to SCORM content after it has been imported? What can you do with it that you can't do with non-SCORM content? Can SCORM metadata be fitted to moodle content retroactively?

Hi Scott, thanks for your comments. Please feel free to update the SCORM/AICC module page with additional information and/or use the SCORM module forum for any outstanding questions you may have. --Helen Foster 13:29, 27 June 2007 (CDT)

<?php /// Moodle Configuration File

unset($CFG);

$CFG->dbtype = 'mysql'; $CFG->dbhost = 'localhost'; $CFG->dbname = 'moodle17'; $CFG->dbuser = 'moodleuser'; $CFG->dbpass = 'xxxxxx'; $CFG->dbpersist = false; $CFG->prefix = 'mdl_';

$CFG->wwwroot = 'http://www.mymoodle.com/moodle'; $CFG->dirroot = '/var/www/moodle'; $CFG->dataroot = '/var/moodledata'; $CFG->admin = 'admin';

$CFG->directorypermissions = 00777; // try 02777 on a server in Safe Mode

$CFG->unicodedb = true; // Database is utf8

require_once("$CFG->dirroot/lib/setup.php"); // MAKE SURE WHEN YOU EDIT THIS FILE THAT THERE ARE NO SPACES, BLANK LINES, // RETURNS, OR ANYTHING ELSE AFTER THE TWO CHARACTERS ON THE NEXT LINE. ?>