![]() |
New Forum via PHP, however.... Need help
I'm able to add a row to the "forum" table via PHP, however the newly created database entry for the forum only actually shows up anywhere in the forum and in the admin control panel is if you are in Forum Management And you click "save display order".
Does anybody know if there is another table that needs an entry or is it a data manager issue? There has to be a way to do it. Any help would be appreciated. |
If you're doing your add in a plugin or a custom page using vbulletin code, then you should use the forum datamanager (in includes/class_dm_forum.php). You can see how to use it in by looking in admincp/forum.php, the section that starts with:
Code:
// ###################### Start update ####################### I don't know the answer to your question offhand, but looking at that code a little bit and when the datamanager saves a forum it calls build_forum_permissions() in includes/adminfunctions.php, and I believe that also rebuilds the forumcache, which is probably your problem. If you can't include the vbulletin code so that you can use those fucntions, then you might want to look in there and see what it's doing. |
PHP Code:
You should run function PHP Code:
|
Can I ask what your plans are? Adding forums/tables directly via the database isn't ideal.
|
Yeah I don't get it, if you want to add forums, why not just use the forum manager?
|
Quote:
The I saw the do:update thing last night as I was cruisin through the code. I'm just not sure how to supply information to the datamanager and haven't yet tried to utilize it via PHP only. It looks like it should be included in my custom page and then supplied the do=update (however I am going to guess that update is an array with all the data I want in it.) This is just a theory right now and I've got a lack of knowledge basis of how to interact with the datamanager to do a practical test. Looking at class_dm_forum.php I see how its done, but still not sure how to interact with the manager. Quote:
Quote:
|
Gotcha, sounds logical. :) Thanks for the explanation.
|
Quote:
You would do something like this: Code:
$forumdata =& datamanager_init('Forum', $vbulletin, ERRTYPE_SILENT); And that should take care of everything. For the info part, you would make multiple calls to $forumdata->set() or $forumdata->set_bitfield(), and of course what to use as $varname and $value is the question. You can find out by looking at the html for the form you fill out when creating a forum in the admincp. If a field is named like name="forum[displayorder]" that corresponds to Code:
$forumdata->set('displayorder', $value); and if it's named like forum[options][moderatenewpost] then that corresponds to Code:
$forumdata->set_bitfield('options', 'moderatenewpost', $value); The 'set' names probably correspond to database column names, so it's really the options that might be difficult to figure out. Anyway, I hope that helps. |
OK, I went ahead and added a couple of lines to print out what gets set when you create a forum from the forum manager, so here's the complete code that should create a forum with the defaults:
Code:
$forumdata =& datamanager_init('Forum', $vbulletin, ERRTYPE_SILENT); |
sweet deal man. Much appreciation. The options actually wont be to much of a problem. I've figured out that the options column in the forum table are a bit when it is saved. So I made a forum with the options I wanted and I will be using that bit value.
I will try it out and post here my results, if any. haha --------------- Added [DATE]1421845661[/DATE] at [TIME]1421845661[/TIME] --------------- That's pretty nice of you KH99. One last thing I have a question about, what files do I need to include for that code. here's what I have now, and I'm assuming: admincp/forum.php as require_once('./admincp/forum.php'); Another thought... Is how do I overcome the fact that a login is required and ability to admin is requried.... Is there anything else I need to include so that it can look at session ID of the USER that is executing the script as such? this is all pretty new to me. The datamanager looks like a pretty interesting way to input data to the forum. |
Where did you put your code for creating a forum? If you are already including vbulletin's global.php, or if you are writing a plugin, then you probably don't have to explicitly include anything. If this is a custom script that doesn't include vbulletin's global.php then that's more of a problem. In that case it may turn out to be too difficult to use any vbulletin code since it mostly depends on having included global.php, which has a lot of overhead associate with it.
ETA: OK, I see you said above that you're creating a custom page. So if you're not already including vbulletin global.php then you'd have to think about adding it if you want to use the above code. |
I have made it practice to include global.php. There's a lot of usage I've done with that one included.
Fatal error: Call to undefined function can_administer() in /home/xxxxxxxxx/xxxxxxxx/forum/admincp/forum.php on line 31 This is a fully functional custom template and I'm logged in. This is close to the developed page. However, I would like to use it on a separate page for the Jquery function to send header requests to, due to my liking of Jquery. |
You should not be including admincp/forum.php. If you're trying the code I posted above, try it without including anything (ETA: I mean anything more than you are already). The one thing you might need before that code, if your code is inside a function, is
Code:
global $vbulletin; |
It works great. I need to figure out how to edit it next haha.
I had to add the global variable and all is good. Here's an example for others to follow if interested Code:
<?php |
I figured you were trying to automate the creation of forums. Be aware that the system will start to break down around 2000 total forums + usergroups, in any combination. By break down, I mean have too much overhead for data to be processed reguarlly.
|
Quote:
*update: I'm still working on systematic stuff for the above code I pushed. I'm trying to figure out exactly what the minimum requirement of code of the "template". You'll see how I broke down a lot of it already. I would like to know break it down further to use the datamanager like I'm expecting to. |
Quote:
|
Thanks for everybody's help on this. I know have a decent understanding of the datamanagers. And the overhead issue with the forumcache.
|
All times are GMT. The time now is 02:30 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|