lisss001
08-15-2006, 06:43 PM
Editing the Default Post:
In: /nbs/new_forum_sql.php
Look For:
$sql[] = "INSERT INTO " . $accessname . "_topics (topic_id, topic_title, topic_poster, topic_time, topic_views, topic_replies, forum_id, topic_status, topic_type, topic_vote, topic_first_post_id, topic_last_post_id) VALUES (1, 'Welcome to phpBB 2', 2, '972086460', 0, 0, 1, 0, 0, 0, 1, 1);";
$sql[] = "INSERT INTO " . $accessname . "_posts (post_id, topic_id, forum_id, poster_id, post_time, post_username, poster_ip) VALUES (1, 1, 1, 2, '" . time() . "', NULL, '7F000001');";
$sql[] = "INSERT INTO " . $accessname . "_posts_text (post_id, post_subject, post_text) VALUES (1, NULL, 'This is an example post in your phpBB 2 installation. You may delete this post, this topic and even this forum if you like since everything seems to be working!');";
Edit the part in red to say what you would like ;)
In: /nbs/new_forum_sql.php
Look For:
$sql[] = "INSERT INTO " . $accessname . "_topics (topic_id, topic_title, topic_poster, topic_time, topic_views, topic_replies, forum_id, topic_status, topic_type, topic_vote, topic_first_post_id, topic_last_post_id) VALUES (1, 'Welcome to phpBB 2', 2, '972086460', 0, 0, 1, 0, 0, 0, 1, 1);";
$sql[] = "INSERT INTO " . $accessname . "_posts (post_id, topic_id, forum_id, poster_id, post_time, post_username, poster_ip) VALUES (1, 1, 1, 2, '" . time() . "', NULL, '7F000001');";
$sql[] = "INSERT INTO " . $accessname . "_posts_text (post_id, post_subject, post_text) VALUES (1, NULL, 'This is an example post in your phpBB 2 installation. You may delete this post, this topic and even this forum if you like since everything seems to be working!');";
Edit the part in red to say what you would like ;)