Forum Discussion
Storyline Suspend Data Compression
Hi Sharon, this is an error I usually see when you zip the root folder of the storyline output (es. project - storyline ouput) and not the actual files inside the folder (index_lms.html, imsmanifest.xml etc.). This creates an "extra" outer folder that some LMSes such as Moodle do not accept.
Yep, Dario is spot on. For this very reason, I like to use a command line zip tool. Then I can be sure that I'm in the right directory (where the imsmanifest.xml file is located) and getting all the files. For the tool I use, the command looks like this: zip -r ../course.zip *
In the this example, the '-r' signals to recurse into subdirectories, the '../course.zip' is the zip archive name (located in the directory above the current directory), and the '*' specifies to package all files/directories from the current working directory.