If you get an error similar to;
Can't open file: 'phpbb_groups.MYI'. (errno: 145)
Where 'phpbb_' could be different due to your choice of table prefix.
The solution is to repair the table via phpMyAdmin by running this SQL query, obviously the table prefix 'phpbb_' should be altered to match the table prefix your using;
- Code: Select all
REPAIR TABLE `phpbb_groups`;

