jtablesession::Store Failed
DB function failed with error number 145
Table ‘./joomla_database/jos_session’ is marked as crashed and should be repaired SQL=INSERT INTO `jos_session` (`session_id`,`time`,`username`,`gid`,`guest`,`client_id`) VALUES (’1ecb458814b53d190db10cafee822dc0′,’1237429551′,”’0′,’1′,’0′);
Error message above usually happens to CMS Joomla. One of Joomla tables jos_session (the table name depends on prefix) is crash. Don’t worry if you experience this problem. It’s easy to overcome this problem. Just truncate the table jos_session. SQL command:
mysql> truncate jos_session;
It’s done!
Related posts:








March 22nd, 2009 at 7:56 pm
Thanks for the tips. I have bookmarked this page just in case the same thing happen to by joomla based site. Thanks a lot!
April 9th, 2009 at 1:19 pm
hmmm..good blog
February 8th, 2010 at 12:05 pm
thats is very simply solution
thx a lot !!!
February 28th, 2010 at 3:47 pm
Is there any ways to debug this crash.??
May 21st, 2010 at 9:59 am
THANK YOU VERY MUCH
IT HELPED ME !!!
August 12th, 2010 at 12:56 pm
Thanks for this it really helps
February 3rd, 2011 at 6:41 pm
yeah,I just believed you could need to realize that your blog is messed up when you view it on my iphone. I?m not certain if it’s some thing to do with my phone?s browser or your internet site? just declaring…
March 21st, 2011 at 11:56 am
thank you sooo much..it WORKS!! ^.^
March 31st, 2011 at 3:26 pm
superb
thanks
June 1st, 2011 at 6:20 pm
Search engines ignore or penalize cloaking, obscured textual content, key terms meta labels, key phrase denseness stuffing, irrelevant hyperlinks, unnatural hyperlinks, link exchanges, hyperlink farms, web happens to be, and many others.
July 18th, 2011 at 2:09 pm
You ‘re my hero sir..
it is work.
November 2nd, 2011 at 6:05 pm
thnx sir nice info :)
November 2nd, 2011 at 6:05 pm
thnx sir nice info
November 10th, 2011 at 12:57 am
Really thanks
It helped me
November 10th, 2011 at 12:59 am
Yahooo !!!
It was very nice
November 22nd, 2011 at 2:49 pm
You don’t have to truncate the table. There is a simple solution build in in MySQL server. Just run the command:
repair table jos_session
You can always check the table ‘health’ by running the command:
check table jos_session
The truncate option will also works ofcource, but when you don’t want to loose your information in the table, the repair table may be a better solution.
(sorry for the bad English)