Forum not responding [message #33604] |
Sat, 09 September 2006 11:04 ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
remek
![Poland Poland](/forum/images/flags/pl.png) Messages: 34 Registered: August 2005 Location: Poland
Karma: 0
|
Member |
|
|
Hi,
I have problem because my forum not responding. After one year working without any problem it suddenly stopped. What way can I rebuild forum without using control panel (I can't go in it).
Best regards
Remek
[Updated on: Sat, 09 September 2006 16:48] Report message to a moderator
|
|
|
Re: Forum not responding [message #33620 is a reply to message #33604] |
Mon, 11 September 2006 13:35 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
Ilia
![Canada Canada](/forum/images/flags/ca.png) Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
You make a small script such as this and run it:
<?php include "GLOBALS.php";
fud_use('db.inc');
fud_use('compiler.inc', true);
$c = q('SELECT theme, lang, name FROM mm_themes');
while ($data = db_rowarr($c)) {
echo $data[1] . "\n";
compile_all($data[0], $data[1], $data[2]);
} ?>
FUDforum Core Developer
|
|
|
|