[SOLVED] Odd error

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
sk8erh4x0r
Forum Commoner
Posts: 43
Joined: Wed May 26, 2004 8:27 pm

[SOLVED] Odd error

Post by sk8erh4x0r »

What causes this error to occur?

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

I don't even have a MYD file, and none of my code tries to open hits.MYD anyways. :cry:
Last edited by sk8erh4x0r on Thu Sep 29, 2005 2:59 pm, edited 1 time in total.
ryanlwh
Forum Commoner
Posts: 84
Joined: Wed Sep 14, 2005 1:29 pm

Post by ryanlwh »

corrupted database file.
do you have a table called 'hits'?

try this query:

Code: Select all

REPAIR TABLE hits
sk8erh4x0r
Forum Commoner
Posts: 43
Joined: Wed May 26, 2004 8:27 pm

Post by sk8erh4x0r »

Thank you! :D
Post Reply