I am having the same error as Cryo, and if someone might have a suggestion on what could be wrong here I would be appreciative. I had been creating threads remotely using the build_new_post. I have since upgraded to 3.7.2, and that function does not work anymore. I have been trying to follow the instructions given in this thread, but running into the following error:
Fatal error: Database object is not an object in [path]/includes/class_dm.php on line 172
Here is my include file code that I call, when someone clicks to create a new thread:
PHP Code:
$cwd = getcwd();
chdir('/home/swellinf/www/forum/');
require_once('global.php');
$adminid = 1;
$forumid = 13;
/*
define('VB_AREA', 'Forum');
define('CWD', (($getcwd = getcwd()) ? $getcwd : '.'));
require_once("./includes/init.php");
define('DIR', CWD);
require_once "./includes/functions.php";
*/
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
chdir($cwd);
$foruminfo = fetch_foruminfo($forumid);
$threaddm->set_info('forum', $foruminfo);
$threaddm->set('forumid', $foruminfo['forumid']);
$threaddm->set('userid', $adminid);
$threaddm->set('title', $title);
$threaddm->set('pagetext', $message);
$threaddm->set('allowsmilie', 1);
$threaddm->set('visible', 1);
$threaddm->set('dateline', TIMENOW);
$threaddm->save();
$threadid = $threaddm->save();
The error occurs at this line:
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
I am assuming there is something wrong with the $vbulletin object I am passing. Cryo mentioned something about an additional database connection that was messing things up. Is this something I need to check? I do open a connection to my non-forum database before I include the above file.
Any suggestions here?
Thank you.