Warning: Table './interoperating/mark_sessions' is marked as crashed and should be repaired
query: SELECT u.*, s.* FROM mark_users u INNER JOIN mark_sessions s ON u.uid = s.uid WHERE s.sid = 'iv89vhqsumfkv7qr85ti3iftn2' in /home/.sites/99/site76/web/interoperating.info/mark/includes/database.mysql.inc on line 174
Mark's web presence | nothing very exciting, just some guy's web presence
Here you go
Note to everyone who has installed this first beta version: You only need to do this fix if you have configured additional helpers. The bug that caused this problem has been fixed and the updated version of the module will be available tomorrow (Feb. 24) some time. Don't perform this fix if you don't need it by then.
First, of course, back up your database before proceeding.
Do select * from search_attachments_helpers; to see your helpers table. I would imagine yours looks like this:
You need to assign unique ids to each helper. So, issue the following commands (the id values below may not be correct for you but the important point is that they are sequential and unique):
Now do another select * from search_attachments_helpers; to make sure that you have unique id values for all of your helpers. If you do, the last step is to update your sequences table so that it records the highest id value in your helpers table (in this example, 5):
Do select * from sequences; to verify that the search_attachments_helpers_id id is the same as the highest value id value in your helpers table, and you're done.