Quote from: [Unknown] on November 02, 2004, 12:39:18 AMStrange... it should be theoretically impossible to use the board management interface to cause this error.I tried the above and got an error:
Create a new file in Notepad (or similar, not Word or anything though) with the following contents:Code Select<?php
include('SSI.php');
db_query("
UPDATE {$db_prefix}boards
SET ID_PARENT = 0", __FILE__, __LINE__);
echo 'Fixed, hopefully.';
?>
Save it as "quickfix.php" (note the quotation marks) and upload it to your server, in the same directory as SMF. Then go to:
hxxp:www.example.com/forum/quickfix.php [nonactive]
After you've used it, please delete the file (because it could theoretically be used again by someone other than yourself.)
Did that help?
-[Unknown]
Quote<?phpI have a similar problem as the OP, so I tried this fix. But I got an error when I tried running it:
include('SSI.php');
db_query("
UPDATE {$db_prefix}boards
SET ID_PARENT = 0", __FILE__, __LINE__);
echo 'Fixed, hopefully.';
?>