| How to fix jos_session error in Joomla |
|
|
|
|
If you Joomla root site show this error : mossession::store failed The message show error in "jos_session" table and this table located at your joomla database at phpMyAdmin. You can fix your "jos_session" table by running some Mysql code. Here is the step :
Open your Cpanel, at the databases sub menu, click on phpMyAdmin. On the phpMyAdmin interface, select the Joomla database that the problem occurs. Example, if the error of your main site comes from Joom1 database, select joom1. On default display when you choose your database, it will display the "structure" tab content, then open the SQL tab like figure below: On the Run SQL query/queries blank form, copy paste this code: DROP TABLE IF EXISTS `jos_session`;
Then, click GO button to execute it Click OK if you really want to execute this command. If the code work successfully, this figure below will show the message "Your SQL query has been executed succesfully. |








Comments
Via phpmyadmin, look into the table jos_session a row with "client_id".
If it does not exist, create a new field with the following values:
* Field: client_id
* Type: tinyint
* Length; 3
* attributes: unsigned
* null: not null
* default: 0
* The remaining 2 fields must be empty
Via phpmyadmin, look into the table jos_session a row with "client_id".
If it does not exist, create a new field with the following values:
* Field: client_id
* Type: tinyint
* Length; 3
* attributes: unsigned
* null: not null
* default: 0
* The remaining 2 fields must be empty
RSS feed for comments to this post.