Thank you for your reply but, it still doesn't work.
I updated jforum_topics table and restarted
tomcat but I can not see in my forum board.
I did following steps.
insert into jforum_posts(post_id, topic_id, forum_id, user_id) values ('14','12','16','2');
insert into jforum_posts_text(post_id, post_subject, post_text) values('14','Websphere5','Websphere5');
insert into jforum_topics(topic_id, forum_id, topic_title, user_id ) values('12','16','Websphere5','2');
mysql> select post_id, topic_id, forum_id, user_id from jforum_posts;
+---------+----------+----------+---------+
| post_id | topic_id | forum_id | user_id |
+---------+----------+----------+---------+
| 1 | 1 | 1 | 2 |
| 2 | 2 | 2 | 2 |
| 3 | 3 | 2 | 2 |
| 4 | 4 | 14 | 2 |
| 5 | 5 | 15 | 2 |
| 6 | 4 | 14 | 2 |
| 7 | 6 | 14 | 2 |
| 9 | 7 | 16 | 1 |
| 10 | 8 | 16 | 1 |
| 11 | 9 | 16 | 0 |
| 12 | 10 | 16 | 2 |
| 13 | 11 | 16 | 2 |
| 14 | 12 | 16 | 2 |
+---------+----------+----------+---------+
13 rows in set (0.00 sec)
mysql> select post_id, post_subject from jforum_posts_text;
+---------+-------------------+
| post_id | post_subject |
+---------+-------------------+
| 1 | Welcome to JForum |
| 2 | noticing |
| 3 | test |
| 4 | test |
| 5 | test1 |
| 6 | Re:test |
| 7 | test test |
| 9 | WebSphere test |
| 10 | web topic2 |
| 11 | subject3 |
| 12 | WebSphere3 |
| 13 | Websphere4 |
| 14 | Websphere5 |
+---------+-------------------+
13 rows in set (0.00 sec)
mysql> select topic_id, forum_id, topic_title, user_id from jforum_topics;
+----------+----------+-------------------+---------+
| topic_id | forum_id | topic_title | user_id |
+----------+----------+-------------------+---------+
| 1 | 1 | Welcome to JForum | 2 |
| 2 | 2 | noticing | 2 |
| 3 | 2 | test | 2 |
| 4 | 14 | test | 2 |
| 5 | 15 | test1 | 2 |
| 6 | 14 | test test | 2 |
| 7 | 16 | WebSphere test | 1 |
| 8 | 16 | web topic2 | 1 |
| 9 | 16 | subject3 | 2 |
| 10 | 16 | WebSphere3 | 2 |
| 11 | 16 | Websphere4 | 2 |
| 12 | 16 | Websphere5 | 2 |
+----------+----------+-------------------+---------+
12 rows in set (0.00 sec)
What I must do more???
[originally posted on jforum.net by honghoekim]