I have fallowing code to create a thread and this working fine when I logged in. But as a guest it not working.
PHP Code:
$forumid = 16; // The forum where the thread should be posted
// Get forum & user info
$foruminfo = fetch_foruminfo($forumid);
$bbuserinfo = fetch_userinfo($userid);
// Setup the thread
$post[title] = $title;
$post[message] = "Dein Feedback oder Kommentar ?ber diesen Spot. [b]Link:[/b] [url]http://www.alpenplaner.ch/spot".$sp[id].".html[/url]";
$post[poststarttime] = TIMENOW;
$post[posthash] = md5($post[poststarttime] . $bbuserinfo['userid'] . $bbuserinfo['salt']);
// build the thread
build_new_post('thread', $foruminfo, array(), 0, $post, $errors);
Thank you for help...