We've had one customer migrate from Drupal to Open edX, and the way they did this was the following:
1) Export all of the course content from Drupal (the format could be SQL, CSV, XML, JSON - the idea is that you're normalizing it, so that a computer can read it) 2) Write a script to turn this content into OLX <https://edx.readthedocs.io/projects/edx-open-learning-xml/en/latest/> (the native format supported by Open edX - this script could be Python, Ruby, Java or whatever flavor you prefer) 3) Import the OLX directly into Open edX using the normal course import feature <https://edx.readthedocs.io/projects/open-edx-building-and-running-a-course/en/latest/releasing_course/export_import_course.html> The difficult part is #2, where you basically look at a course exported from Open edX with all the elements you want to support, and then map the content in your source course (Drupal or Moodle) into this destination format. Nate On Monday, July 3, 2017 at 6:42:33 AM UTC-7, [email protected] wrote: > > Hey, right now i'm facing this situation. did you managed to migrate the > courses from moodle to openedx? > > On Sunday, July 31, 2016 at 7:17:43 AM UTC-4, apollinaire samiey wrote: >> >> does another way exists to convert moodle cours to edx?? >> >> 2016-07-29 0:23 GMT+00:00 Peter Pinch <[email protected]>: >> >>> The documentation for moodle2edx is at >>> https://github.com/mitocw/moodle2edx/blob/master/README.txt#L35 >>> >>> The code is unsupported and hasn’t been updated in some time. >>> >>> - Peter Pinch >>> >>> -- >>> You received this message because you are subscribed to a topic in the >>> Google Groups "General Open edX discussion" group. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/edx-code/7264FE26-B1CC-4D39-9729-5D5675EE7EE2%40gmail.com >>> . >>> >> >> -- You received this message because you are subscribed to the Google Groups "General Open edX discussion" group. To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/b808f298-b995-418b-9b59-7b20a77f7dce%40googlegroups.com.
