vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Alphabetize forum listing (https://vborg.vbsupport.ru/showthread.php?t=216612)

knucklenitz 06-20-2009 04:58 AM

Alphabetize forum listing
 
Hi -

I've seen a few old postings on alphabetizing the forum listing but no solution that I found.

My main page has a whole list of forums with sub-forums under each. Is there a way to automatically (or add a user selected option) to alphabetize the listing?

Thanks!

Carnage 06-21-2009 09:50 AM

Do you want it done permanently for all users?

if so something along the lines of

PHP Code:

$q $db->query('select * from forums order by title');
$i 0;
while(
$row $db->fetch_array($q))
{
$i++;
$db->query("UPDATE forum SET order = $i WHERE forumid = $row[forumid]");
}

rebuilt_forums_cache(); 

UNTESTED and is only meant to serve as an example. It will need some work to get it to work correctly

knucklenitz 06-23-2009 04:46 AM

Thanks.

How can I test this without potential damage to my site? Is there a way to do offline testing? Sorry to be lame.

Dismounted 06-23-2009 07:53 AM

Quote:

Originally Posted by knucklenitz (Post 1835384)
How can I test this without potential damage to my site? Is there a way to do offline testing? Sorry to be lame.

As per the license agreement, you are allowed a test board in a directory called testvb. This directory must not be publicly accessible (e.g. password protected with .htaccess).


All times are GMT. The time now is 10:00 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
  • Page Generation 0.01147 seconds
  • Memory Usage 1,718KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete