The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Any idea what replaced the Active field in the forum table?
We are currently running vbulletin version 2.3.0 and are in the process of upgrading to 3.0.3. There are obviously changes in the database table structure and somewhere from version 2.3.0 to version 3 one of those changes appear to be the active field in the forum table. This field appears to have been dropped in one of the versions along the upgrade route to the latest current version, does anyone know if it has been replaced with something else? Our problem is how to get the current number of active threads from the Mysql database? The reason we need this information is that it is displayed on our home page using a script which no longer works with version 3.0.3 because of this change.
Many thanks, Sel |
#2
|
||||
|
||||
Quote:
|
#3
|
||||
|
||||
Hmm ... what is an "active" thread?
|
#4
|
|||
|
|||
SELECT * FROM forum WHERE displayorder<>0 AND active = 1 ORDER BY
parentid,displayorder Here is the sql query which pulls back 22 threads from our boards (running 2.3.0). It pulls back 24 threads if the "AND active=1" is removed. Not sure what warrants the active flag being set to 1 but the difference is when 24 threads are returned it contains threads which haven't had posts on then for a while. So what we want to return is a list of threads which have had posts in the last few hours. Many thanks. |
#5
|
||||
|
||||
Table fourm does have a field lastpost, which is the unix timestamp for the last post made in this forum.
You can use this field to check which forums have been active within the last x hours, days or whatever. Table thread does also have lastpost. |
#6
|
||||
|
||||
Quote:
|
#7
|
|||
|
|||
Hi
Looking at the admin console there is option to make a forum active, does anyone know which field and table does this correlate to in the database Sel |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|