PDA

View Full Version : Forum Id List


LCN2007
01-20-2009, 03:29 AM
Im hoping someone can help me.

I was wondering if there was a way i can list all my forum id numbers with out having to click
everyone and write them down.

Maybe a simple script exist that will make a list.

like 1, 2, 3, 4, 5, 6, 7, etc......

Running 3.7.2

Thanks for you assistance with this.

Lynne
01-20-2009, 04:13 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=195768&highlight=forumid" target="_blank">Any way to display or print list of forum id's</a>

LCN2007
01-20-2009, 04:31 AM
Any way to display or print list of forum id's (https://vborg.vbsupport.ru/showthread.php?t=195768&highlight=forumid)

Thanks Lynne i will try this.

I did try searching but after 35 pages i went brain dead lol.

Do you think vb.org will ever use the Tag Mod to tag all the threads so we can use Tag search its much mor effective i use it on my site.

Thank you again ill let you know how it goes.

Dismounted
01-20-2009, 04:43 AM
Do you think vb.org will ever use the Tag Mod to tag all the threads so we can use Tag search its much mor effective i use it on my site.
Eventually, vB.org will upgrade vBulletin, which will also enable tags at the same time.

Rik Brown
01-20-2009, 04:58 AM
Im hoping someone can help me.

I was wondering if there was a way i can list all my forum id numbers with out having to click
everyone and write them down.

Maybe a simple script exist that will make a list.

like 1, 2, 3, 4, 5, 6, 7, etc......

Running 3.7.2

Thanks for you assistance with this.

If you can run a mysql query, try these:

1) Sorted by Forum Number

SELECT forumid, title FROM forum ORDER BY forumid

2) Sorted by Forum Title

SELECT forumid, title FROM forum ORDER BY title

If you have permissions set properly, you can run mysql queries from the admincp: Maintenance -> Execute SQL Query.

Hope those help. -- Rik