Skip to content

Instantly share code, notes, and snippets.

@Ereza
Last active July 12, 2022 01:14
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ereza/3954fc3ae4f3ea1843e3aa79ac57c590 to your computer and use it in GitHub Desktop.
Save Ereza/3954fc3ae4f3ea1843e3aa79ac57c590 to your computer and use it in GitHub Desktop.
Sample script to add a new post to a phpBB forum as a specific user
<?php
define('IN_PHPBB', true);
$phpbb_root_path = '../forum/';
$phpEx = substr(strrchr(__FILE__, '.') , 1);
include ($phpbb_root_path . 'common.' . $phpEx);
include ($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
$user_id = 755;
$forum_id = 32;
$subject = 'Missatge de prova';
$text = 'Aquest és un missatge de prova enviat per l\'[b]script[/b].';
//Initialize user variables
$user->session_create($user_id);
$auth->acl($user->data);
$user->setup();
//User initialized, we can now do our things :D
//Get the forum name (needed by submit_post for e-mail notifications)
$sql = 'SELECT forum_name FROM ' . FORUMS_TABLE . ' WHERE forum_id=' . (int)$forum_id;
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
$forum_name = $row['forum_name'];
//Submit the new post
$poll = $uid = $bitfield = $flags = '';
generate_text_for_storage($text, $uid, $bitfield, $flags, true, true, true);
$data = array(
'forum_id' => $forum_id,
'topic_id' => 0,
'icon_id' => false,
'enable_bbcode' => true,
'enable_smilies' => true,
'enable_urls' => true,
'enable_sig' => true,
'message' => $text,
'message_md5' => md5($text),
'bbcode_bitfield' => $bitfield,
'bbcode_uid' => $uid,
'post_edit_locked' => 0,
'topic_title' => $subject,
'notify_set' => false,
'notify' => false,
'post_time' => 0,
'forum_name' => $forum_name,
'enable_indexing' => true,
'force_approved_state' => true,
'force_visibility' => true,
);
$result = submit_post('post', $subject, '', POST_NORMAL, $poll, $data);
if ($result===FALSE){
echo "Error sending post";
}
else{
echo "Post sent successfully, URL is: $result";
}
//After doing things, just clean up the session
$user->session_kill(false);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment