Steve Machol
Tue 26th Mar '02, 5:00pm
If you get an error like this:
mysql error: Can't open file: 'userfield.MYD'. (errno: 145)
Be aware that repair.php does not work on the user or userfiled tables. Instead, run this query to fix the table (courtesy of Ed Sullivan):
From this thread (http://www.vbulletin.com/forum/showthread.php?s=&threadid=18856&highlight=userfield.myd):
MySQL marked the userfield table as crashed, so you need to repair it.
You can run this query via phpMyAdmin or telnet:
REPAIR TABLE userfield;
mysql error: Can't open file: 'userfield.MYD'. (errno: 145)
Be aware that repair.php does not work on the user or userfiled tables. Instead, run this query to fix the table (courtesy of Ed Sullivan):
From this thread (http://www.vbulletin.com/forum/showthread.php?s=&threadid=18856&highlight=userfield.myd):
MySQL marked the userfield table as crashed, so you need to repair it.
You can run this query via phpMyAdmin or telnet:
REPAIR TABLE userfield;