View Submissions #948
-
I'm getting the following error page when I try to look at submissions: This is after solving the empty container issue resolved here: #650 Not sure if there is something else missing here? Does the view submissions in the webapp require the webdav to be working? Per issue #944 I am working on getting a sub-subdomain instead of routing to a different path, it still loads and prompts me for a password, just not authenticating still. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Beta Was this translation helpful? Give feedback.
-
Never seen such a verbose message and have no idea what part of the stack generates it (probably flask ?). There should be something more interesting in the webapp logs can help to know what's the actual issue. Probably a stack trace or at least something more specific. |
Beta Was this translation helpful? Give feedback.
According to the piece of code that fails, you may have
superadmin
user registered to the course but not present in theusers
DB collection. This should theoretically not happen. Did you delete thesuperadmin
user or re-configured your instance on an existing DB ?To solve this you can probably just modify the or delete (at this setup stage, probably harmless) the entry in DB using mongosh:
db.courses.delete_one({"_id": "tutorial"})
. With chances you can also do it from the GUI user management page because it may still be (historically) failsafe regarding the user database information.However that would be useful if you recall what was done using the superadmin account up until now to be…