|
Thanks again Mister, objective complete.
For those that might be like me, which means you're a complete dolt on Mysql here's what I did to fix the problem:
On a Windows system:
Run>command>cd mysql\bin
mysql
use webpost2;
repair table ts2_*; where "*" is the actual table name, but actually this command alone may work... I'm not that good. If it does work it should repair all the tables in one sweep.
I used individual commands for each table, ie:
repair table ts2_user; then
repair table ts2_channel; you get the idea.
There is also a "quick" repair function, which I also threw in, but ultimately I used the command without it on each table. I think each table for Webpost is so short, there is no sense using the "quick" parameter, I suggest a full repair for each table... leaving the "quick" off the command line. But should you want to try the "quick" parameter the command is:
repair table ts2_* quick;
Once again I replaced the "*" with the actual table name, your mileage may vary.
Anyway, up and running again.
Thanks again Mister.
|