errno: 145

errno: 145

by santos ramon -
Number of replies: 1

hi people, i am a noob with moodle and i have a problem
its appears a mistake in the index file

Can't open file: 'mdl_cache_text.MYD'. (errno: 145)

SELECT * FROM mdl_cache_text WHERE md5key = 'e8c523e7f7f0c9d08f539c439304ae23' AND timemodified > '1083436376'

please help me

Average of ratings: -
In reply to santos ramon

Re: errno: 145

by Andy Diament -

Hiya

This is a mysql table problem, possibly corrupted; I've had 2 such problems in the 2 weeks

Try going into the mysql command prompt; choose the moodle database and type

use moodle;

the repair the table with this line

repair table mdl_cache_text;

Maybe this will work from phpmyadmin/moodle database admin as an sql query, to save going into the mysql prompt

Cheers, Andy D