Hi Kirt,
Thanks for your kind comments!
This looks like a database corruption error.
MySQL error code 144: Table is crashed and last repair failed
Currently you must manually run a MySQL query to repair the database. This can be done with a script called
PhpMyAdmin, commonly available from your hosting control panel.
The command to run is as follows:
REPAIR TABLE lm_sendp;
From PhpMyAdmin you might also simply click the table and choose "Repair".
If repairing the table fails it would need to be recreated such as with the following two custom SQL queries:
DROP TABLE lm_sendp
(Note: This does not affect your data because lm_sendp is a "queue protect" table that simply stores temporary/non-sensitive data)
..and the create code
CREATE TABLE lm_sendp (
id mediumint unsigned NOT NULL auto_increment,
batid varchar(6) NOT NULL,
qtype char(1) NOT NULL,
formid varchar(14) NOT NULL,
started datetime NOT NULL,
lastact datetime NOT NULL,
report TEXT NOT NULL,
completed char(1) NOT NULL,
PRIMARY KEY (id),
KEY batid (batid)
);
If you absolutely require hands-on assistance for this fix please
submit your info.
Regards