I am trying to use the vb_DataManager_Thread_FirstPost to insert a new thread on behalf of a user who has filled out a form on a page which calls this script vis AJAX.
The script SHOULD create a new thread in a specified forum and attribute the thread/post to the user who filled in the form. Unfortunately what I am getting in return is the following error:
Quote:
That username is already in use or does not meet the administrator's standards. If you are admintw42 and you have forgotten your password, click here.
|
In this case I am logged in as admintw42 and filled out the form which then made an AJAX call to my form processor script which
should be creating the thread.
Does anyone know what needs to be done to enable the script permissions as the user to create a new thread?
Source below - one thing I am not sure of is the line:
Quote:
$threaddm->set_info('thread', $threadinfo);
|
This is my first attempt at this sort of thing so be easy on me please
PHP Code:
<?php
// Returning Update Status via AJAX to user
//////////////////////////////////////////////
// Get Required Includes
require_once('global.php');
require_once('includes/class_dm.php');
require_once('includes/class_dm_threadpost.php');
require_once('includes/functions_databuild.php'); /* included to build new thread and update counters */
// Retrieve data from form page (passed via querystring)
$name = $_GET['name'];
$lat = $_GET['lat'];
$lon = $_GET['lon'];
$uid = $_GET['uid'];
$uname = $_GET['uname'];
$gid = $_GET['gid'];
$desc = $_GET['desc'];
$phone = $_GET['phone'];
$addr = $_GET['addr'];
$addr2 = $_GET['addr2'];
$city = $_GET['city'];
$state = $_GET['state'];
$zip = $_GET['zip'];
$cat = $_GET['cat'];
// Using Thread_FirstPost DataManager to add Guide thread
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$threadinfo = array();
$forumtouse = 57;
// fetch forum info
$foruminfo = fetch_foruminfo($forumtouse);
$threaddm->set_info('forum', $foruminfo);
// fetch thread info - not sure about this
$threaddm->set_info('thread', $threadinfo);
// set to correct forum
$threaddm->setr('forumid', $forumtouse);
$userinfo = fetch_userinfo($uid);
$uname = $userinfo['username'];
// user information
$threaddm->setr('userid', $uid);
$threaddm->setr('username', $uname);
$threadtitle = "some title";
$threaddm->setr('title', $threadtitle);
// Set thread contents
$pagetext = $desc;
$threaddm->setr('pagetext', $pagetext);
// allow replies
$threaddm->set('open', $open);
// allow smilies
$threaddm->set('allowsmilie', $allowsmilie);
// make visible
$threaddm->set('visible', $visible);
// pre-save
$threaddm->pre_save();
$threadid = $threaddm->save();
unset($threaddm);
build_thread_counters($threaddm);
build_forum_counters($foruminfo['forumid']);
?>