''* =<583 正常贴上,可以删除
''* 584 正常贴上,可以编纂,但不克不及删除
''* 585 提醒 Could not enter post text! 但贴子也没有
''* 586 正常贴上,可以删除
''* 587 提醒 Could not enter post text! 但贴子也没有
''* 588 正常贴上,可以删除
''* 589 提醒 Could not enter post text! 但贴子也没有
''* >=590 提醒 Could not enter post text! 呈现删不失落的帖子
关于没法正常删除的帖子,需求手工毗连数据库删除。假定有如许一个帖子:
http://host/forums/viewtopic.php?topic=1162&forum=1&0
可以如许:
$ mysql -uuser -ppasswd
mysql> use databasename;
mysql> select * from topics where topic_id = 1162; //失掉post_id
mysql> delete from posts where post_id = 6280;
mysql> delete from posts_text where post_id = 6280;
mysql> delete from topics where topic_id = 1162;