dhodges47 / SCORM-LearningManagementSystem

Open Source SCORM Learning Management System demo
MIT License
145 stars 72 forks source link

After successfully install Package,"/MyCoursesForStudy " --> launch Course is not working.Page displayed as blank #6

Open SanjayAmeta opened 4 years ago

SanjayAmeta commented 4 years ago

code is not working after install packages want to do launch courses but the page displayed as blank.

dhodges47 commented 4 years ago

Make sure your appsettings.json file has the correct values for your installation. Look at these values: "AppSettings": { "UploadFolder": "SCORMPackages/", "CourseFolder": "SCORMCourses/",

Make sure that the Values for UploadFolder and CourseFolder are correct for your installation. Also, don't try to run courses that you see pre-loaded in the database, they will not work. You have to load your own.

Another thing to do is to use the javascript debugger in your browser to see if any errors are being thrown.

Good luck!

On Wed, Dec 18, 2019 at 5:38 AM SanjayAmeta notifications@github.com wrote:

code is not working after install packages want to do launch courses but the page displayed as blank.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dhodges47/SCORM-LearningManagementSystem/issues/6?email_source=notifications&email_token=AAB5OFXWFVKGDOK4T7UR2RTQZH4S5A5CNFSM4J4I4MZKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IBJTK4A, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAB5OFUADT6BRPY5U2YWY63QZH4S5ANCNFSM4J4I4MZA .

nabbo247 commented 4 years ago

Hello dhodges47 ,

can you help out am getting the same issue, after uploading SCORM course package I launch courses but the page displayed as blank. i have also verify the UploadFolder and CourseFolder in applications.json

kindly assist

atechdev commented 4 years ago

I can't really help because I can't see what is happening on your system. I suspect that either your paths to the course are still wrong, or something in your course itself is causing an error. If I were having this problem, I would be examining the network calls, and javascript errors, that happen when loading the blank screen to see why it isn't displaying your course. Please verify that you have used the javascript debugger (in Chrome or Firefox or IE) to solve this problem as follows: After loading the blank page, the network tab will show if there were errors in loading your course. It will show the address it was trying to load, which you can then use to correct your settings. The console tab in the debugger will show any javascript errors that be thrown. If you don't want to use the javascript debugger, you can Fiddler to see the network traffic.

nabbo247 commented 4 years ago

thank you for the heads up, javascript debugger was showing 404 (not found). I was able to resolve the issue; when you upload course package it unzip it on OpenSourceSCORMLMS\SCORMCourses but when you are running the application it points to OpenSourceSCORMLMS\wwwroot\SCORMCourses

is working now but the progress and score of a course is not been updated after you finish watching a course any idea on how to resolve the issue.