''* =<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;