#Needing some help with my Sign In Form because it's not currently signing me in as a user

8 messages · Page 1 of 1 (latest)

wanton fjord
#

What is happening right now when you try and sign in? Any server or browser errors?

versed condor
#

no errors

#

it's just staying on the sign in page

#

so when I press sign in, nothing occurs

versed condor
#

What should I do Thenlie?

versed condor
#

nvm i got errors

jaunty stone
#

It seems that you're having trouble signing in because of two issues. First, the system is trying to find an attribute called accountID, but it's not in the database schema, which causes the request to fail. Second, you're attempting to create a new session while an existing session is already active, which is not allowed. To resolve this, make sure the accountID is correctly referenced in the database and check if a user session is active before trying to create a new one. If a session exists, you can either use the existing session or log out before signing in again.

versed condor