|
Re: FUDAPI: Creating a forum? [message #187816 is a reply to message #187810] |
Sun, 17 November 2019 03:54 |
BugLaden
Messages: 216 Registered: February 2002 Location: Westminster, MD
Karma: 0
|
Senior Member |
|
|
So this statement seemed to work in my code:
//Create the forum
require_once "/home2/bugladen/cake/tobacconerd/FUDforum/include/GLOBALS.php";
require_once "/home2/bugladen/cake/tobacconerd/FUDforum/scripts/fudapi.inc.php";
$id = db_qid('INSERT INTO
'. $GLOBALS['DBHOST_TBL_PREFIX'] .'forum (
cat_id,
name,
date_created
) VALUES (
'. GroupsController::FORUM_CATEGORY .',
'. _esc($group->name) .',
now()
)
');
FORUM_CATEGORY is a constant set to the id of an existing category in the forum
The forum appears in the Admin->Forum Management just fine.
It just doesn't appear in the forum index page at all. Not sure why.
-=BugLaden
[Updated on: Sun, 17 November 2019 03:55] Report message to a moderator
|
|
|
|
|