Site Error
I get the following error when I try to load the S2KI home page:
mossession::store failed
DB function failed with error number 1114
The table 'mos_session' is full SQL=INSERT INTO mos_session ( `session_id`,`time`,`guest` ) VALUES ( '3f24543df7a6cc30b66d4f89bcc357ec','1101570674','1 ' )
What ius this all about?
Thanks!
Jamie
mossession::store failed
DB function failed with error number 1114
The table 'mos_session' is full SQL=INSERT INTO mos_session ( `session_id`,`time`,`guest` ) VALUES ( '3f24543df7a6cc30b66d4f89bcc357ec','1101570674','1 ' )
What ius this all about?
Thanks!
Jamie
I got it to 
mossession::store failed
DB function failed with error number 1114
The table 'mos_session' is full SQL=INSERT INTO mos_session ( `session_id`,`time`,`guest` ) VALUES ( 'bdbff4648d5a9fbad143c40177b1a33b','1102460796','1 ' )

mossession::store failed
DB function failed with error number 1114
The table 'mos_session' is full SQL=INSERT INTO mos_session ( `session_id`,`time`,`guest` ) VALUES ( 'bdbff4648d5a9fbad143c40177b1a33b','1102460796','1 ' )
Trending Topics
"The table 'mos_session' is full". This means that there is no more room in the mos_session database table. The fact that the name of the table has 'session' in it implies that a new record is added when a user logs on. Notice the type of values been added : `session_id`,`time`,`guest`. Id of the session being created, time its created and whether the user is a guest or not.
Typically in these sort of applications at some point in time the session should timeout (user logs off or shuts down browser etc) then the session record should be removed from the table. So either there are too many users logged on for the size of table defined or the session cleanup is not working too well. I doubt it has anything to do with the signatures
Typically in these sort of applications at some point in time the session should timeout (user logs off or shuts down browser etc) then the session record should be removed from the table. So either there are too many users logged on for the size of table defined or the session cleanup is not working too well. I doubt it has anything to do with the signatures
Thread
Thread Starter
Forum
Replies
Last Post












