''* =<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! 出现删不掉的帖子
如果发送镶套的标记则占用资源更多,我们在实验机器上发送这样的帖子:
以下内容为程序代码: [code]/0
/0[/code]
虽然只有49byte的数据,但资源占用非常可观: pid user pri ni size rss share stat %cpu %mem time command 25741 nobody 14 0 11828 9996 416 r 99.9 7.8 2:38 httpd
几秒钟后产生了大量的数据,内存大量消耗: pid user pri ni size rss share stat %cpu %mem time command 3 root 10 0 0 0 0 sw 2.5 0.0 4:13 kswapd 25742 nobody 17 0 265m 90m 52104 r 25.1 73.0 1:45 httpd
对于无法正常删除的帖子,需要手工连接数据库删除。假设有这样一个帖子: 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;