|
Re: Forum suddenly coming up blank [message #18687 is a reply to message #18683] |
Thu, 03 June 2004 13:00 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
The error messages are base64 encoded, so you can simply use PHP's base64_decode() function to decode them. Since your error message appears to be in a foreign language I cannot tell you what the problem is :/
FUDforum Core Developer
|
|
|
Re: Forum suddenly coming up blank [message #18693 is a reply to message #18683] |
Thu, 03 June 2004 14:51 |
kolerij
Messages: 58 Registered: July 2002
Karma: 0
|
Member |
|
|
I was able to decode the error message:
1016: Can't open file: 'fud23_ses.MYI'. (errno: 145)
Query: SELECT s.id AS sid, s.ses_id, s.data, s.returnto,
s.sys_id, t.id AS theme_id, t.lang, t.name AS theme_name,
t.locale, t.theme, t.pspell_lang, t.theme_opt, u.alias,
u.posts_ppg, u.time_zone, u.sig, u.last_visit, u.last_read,
u.cat_collapse_status, u.users_opt, u.ignore_list, u.ignore_list,
u.buddy_list, u.id, u.group_leader_list, u.email, u.login, u.sq
FROM fud23_ses s INNER JOIN fud23_users u ON u.id=(CASE WHEN
s.user_id>2000000000 THEN 1 ELSE s.user_id END) INNER JOIN
fud23_themes t ON t.id=u.theme WHERE
s.ses_id='52b2b326321a9a0639ddcf090b9ce4b8'
Server Version: 4.0.14-Max
So I fixed it with the following:
repair table fud23_ses;
That seemed to sort it out. BTW the forum's lanquage is english
Thanks.
Kolerij
|
|
|