"SQL Error: Got error 127 from table handler" is in that post

Towards the bottom of the error section.
[]
SQL ERROR: Unable to do query: Blah blah blah Got error 127 from table handler
Error 127 = Unknown Error / Record File Crashed
You can generally look at what table or tables it was trying to Query and run the Repair Table command for that table.
For example, if the query throwing the error is the w3t_Posts table, you can try entering this SQL Query:
REPAIR TABLE w3t_Posts
If this does not work, you may need to ask your webhost to run myisamchk on your database. You can also try dumping and restoring the database with the mysqldump command.
[/]