Skip to main content

LMS deployment

This page collects the failure modes we've observed across LMSes and the fix that made each one work. Most are already handled automatically by the packager; the matrix is here so you can match a console error to a known cause when it comes up again.

Troubleshooting matrix

SymptomLMSes seenRoot causeFix
text/plain MIME refusal on a CSS filePeopleFluentWrong-URL fetch returns the LMS 404 page (served as text/plain)URL rewrite + persist + harmonise + EC inline (already shipped)
401 on robotframework-…whlSCORM Cloudcredentials: 'omit' on the worker fetchDrop the override; same-origin is the fetch default
application/octet-stream on pyodide.mjsPeopleFluentLMS file server lacks .mjs MIME mappingShip .module.js companion via copy-pyodide.mjs
"Preview not supported for structured content"PeopleFluentMulti-SCO preview unsupportedSwitch to singleSco: true
"Please make a selection to continue"SCORM CloudMulti-SCO + cross-SCO <a href> triggers LMSFinishSwitch to singleSco: true
Code-blocks unstyled (some grammars)PeopleFluentec.*.css 404 — ClientRouter cross-depth race bypassed by LMS quirksInline EC CSS at packaging
log.html: "JavaScript disabled"Anyiframe sandbox missing allow-scriptssandbox="allow-scripts allow-same-origin"
Internal navigation triggers full-page reloadAny<ClientRouter /> not wiredAdd CustomHead.astro per Topology
Assets 404 with URL like <host>/_astro/XAnyRoot-absolute path leaked throughVerify rewriteAbsolutePaths covers the attribute (e.g., <astro-island component-url>)

Per-LMS notes

Phase 1 stub

Detailed per-LMS quirks (sign-up flow, upload UI, preview behaviour, known restrictions) for SCORM Cloud, PeopleFluent, Cornerstone, Moodle, TalentLMS, Docebo, etc. are planned for Phase 2.

For now:

  • SCORM Cloud has the strictest spec compliance and is the best target for early validation. Free tier: 100 MB, 10 registrations.
  • PeopleFluent / Cornerstone / Saba are stricter on import-time MIME and CSP than spec-compliant LMSes; the v10 packager handles the known patterns.
  • Moodle / TalentLMS / Docebo were not stress-tested in Phase 1 but follow standard SCORM 1.2 behaviour; expected to work without further changes.

Where to go next