Note: This documentation is for Moodle 2.7. For up-to-date documentation see Bulk course upload.

Bulk course upload: Difference between revisions

From MoodleDocs
m (Added link to spanish translation of page)
(blanking and redirecting)
 
Line 1: Line 1:
{{Update}}
#Redirect [[Upload courses]]
 
==News June 2013==
Placeholder update only.
*There is movement on this to get it included in Moodle core: https://tracker.moodle.org/browse/MDL-13114
*A recent blog post: http://diversthings.blogspot.co.uk/2013/05/moodle-pull-courses-and-categories.html
*Some recent discussion: https://moodle.org/mod/forum/discuss.php?d=229237
 
----
 
See:
*https://moodle.org/mod/forum/discuss.php?d=173705&parent=854771
*http://tracker.moodle.org/browse/MDL-13114
*Another inititive: https://moodle.org/mod/forum/discuss.php?d=213454
 
----
 
Bulk course upload is a contributed code that creates a course with a teacher and basic course settings from a CSV file. There is also a bulk course deletion tool. These work in 1.8 and 1.9.
 
==Tips & Tricks==
To use this code successfully,  the site administrator must create the teacher accounts before creating the courses. The role for the teacher in the csv is the role short name. So for teacher use 'editingteacher' and Non-editing teachers use 'teacher' and so on.  The course category must also exist before uploading the file.
 
The bulk course delete tool uses a txt file with the course short names. One course per line.
 
Moodle has a unique constraint combining a course's category and its sortorder, in other words two courses in the same category shouldn't have the same sortorder. When inserting courses manually Moodle does the trick of calculating sortorder, but using uploadcourses.php you need to provide a valid value for sortorder, each row should have a different sortorder value in the same category.
 
==Sample data==
===First line in csv file===
fullname,shortname,category,sortorder,idnumber,summary,format,showgrades,newsitems,teacher,teachers,student,students,startdate,numsections,maxbytes,visible,groupmode,timecreated,timemodified,password,enrolperiod,groupmodeforce,metacourse,lang,theme,cost,showreports,guest,enrollable,enrolstartdate,enrolenddate,notifystudents,expirynotify,expirythreshold,teacher1_role,teacher1_account
 
===Example 1st record in csv file===
Greatest Course,GC101,Education Portfolios,1,,University Portfolio,topics,0,0,Owner,Owners,Visitor,Visitors,1/14/2008,10,15728640,0,0,1/12/2008,1/12/2008,portfolio,0,0,0,,,,0,2,1,1/14/2008,5/10/2008,0,0,10,editingteacher,lastname1.firstname@email.edu
 
===Example 2st record in csv file===
Worst Course,WC101,Education Portfolios,1,,University Sample Courses,topics,0,0,Owner,Owners,Visitor,Visitors,1/14/2008,10,15728640,0,0,1/12/2008,1/12/2008,portfolio,0,0,0,,,,0,2,1,1/14/2008,5/10/2008,0,0,10,editingteacher,lastname2.firstname@email.edu
 
==See also==
*[http://moodle.org/mod/data/view.php?d=13&rid=1536 Modules & Plugins download screen] for Bulk course upload
*[http://awyatt.edublogs.org/2008/01/22/moodle-portfolio-using-upload-users-and-upload-course-to-set-up/ A description by A.T. Wyatt] that was used in part to start this page
*[http://moodle.org/mod/forum/discuss.php?d=91850 A forum discussion] about Bulk course upload
 
 
== Alternatives ==
*[https://github.com/piersharding/moodle-tool_uploadcourse course uploader] is an admin tool plugin for 2.2 and above for bulk course create/update/delete and can use templating from Moodle backups, or a nominated course.
 
[[Category:Contributed code]]
 
[[en:Subida masiva de cursos]]

Latest revision as of 09:23, 15 August 2015

Redirect to: