Have you ever been faced with this error? Unions make any changes before a full backup of the database.

mossession:: store failed
DB function failed with error number 1034
Incorrect key file for table ‘jos_session’; try to repair it SQL = INSERT INTO jos_session (`session_id`, `time`, `username`, `gid`, `guest`) VALUES (fb0665c11671cb724b8fd4f37439d6f ‘3 ‘, ‘1187102382’, ‘ ‘, ‘0’, ‘1 ‘)

—– End of Error ——

This error is in the table of your database through phpmyadmin jos_session reached.

To correct this error should go to phpmyadmin, select the Joomla database that has this problem, locate the jos_session table and click on it, then look at your screen you will find altoal Import SQL as the following image

Copy this code to notepad first so that you are going to format the text to paste in the SQL tab of your phpmyadmin, in order to launch the operation by clicking GO. Unions make any changes before a full backup of the database.

DROP TABLE IF EXISTS `jos_session`;
CREATE TABLE IF NOT EXISTS `jos_session` (
`Username` varchar (50) default”,
`Time` varchar (14) default”,
`Session_id` varchar (200) NOT NULL default ‘0 ‘,
`Guest` tinyint (4) default ‘1 ‘,
`Userid` int (11) default ‘0 ‘,
`Usertype` varchar (50) default”,
`Gid` tinyint (3) unsigned NOT NULL default ‘0 ‘,
PRIMARY KEY (`session_id`),
KEY `whosonline` (`guest`, `usertype`)

) ENGINE = MyISAM DEFAULT CHARSET = latin1;