1

(49 replies, posted in Supported extensions)

Still no fix? sad

2

(49 replies, posted in Supported extensions)

ams wrote:

If you run your forum over HTTPS... [cut]

This problem also affects my forum. Can this be fixed in the plugin?

It should but it doesn't sad

mysql> REPAIR TABLE users USE_FRM;
+-------+--------+----------+-----------------------------------------+
| Table | Op     | Msg_type | Msg_text                                |
+-------+--------+----------+-----------------------------------------+
| users | repair | error    | Failed repairing incompatible .frm file |
+-------+--------+----------+-----------------------------------------+
1 row in set (0.00 sec)

From: http://dev.mysql.com/doc/refman/5.1/en/ … table.html

As of MySQL 5.1.25, if you use USE_FRM for a table that was created by a different version of the MySQL server than the one you are currently running, REPAIR TABLE will not attempt to repair the table. In this case, the result set returned by REPAIR TABLE contains a line with a Msg_type value of error and a Msg_text value of Failed repairing incompatible .FRM file.

Yes it's on my own (VPS) server.

And it happened after upgrading MySQL. Of course I realize that I can downgrade again but that's not the solution imo, since all the other PHP/MySQL scripts still work fine smile (and downgrading can give new problems of course).

Nobody? sad

After upgrading from MySQL 5.0.x to 5.1.50 I have the following problem: Incorrect key file for table 'users'; try to repair it (Errno: 1034).

After Googling a bit I found out to run "REPAIR TABLE users" from the command line. However, this doesn't work:

mysql> repair table users;
+-------------+--------+----------+--------------------------------------------------------+
| Table       | Op     | Msg_type | Msg_text                                               |
+-------------+--------+----------+--------------------------------------------------------+
| punbb.users | repair | Error    | Incorrect key file for table 'users'; try to repair it |
| punbb.users | repair | error    | Corrupt                                                |
+-------------+--------+----------+--------------------------------------------------------+
2 rows in set (0.00 sec)

Any ideas?