vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Easy way to change the Style ID? (https://vborg.vbsupport.ru/showthread.php?t=231101)

BioFall 12-24-2009 07:03 PM

Easy way to change the Style ID?
 
The reason I want to change the style ID on my styles is that I'm using vb xperience as a rewards system. Once users get however many points they unlock a new style for my forum. To change styles they have to download a .txt file that tells them the styleid
ex.
Code:

Congratulations you have unlocked a new Style!

To Change Styles Simply type in one of the URL?s below into the URL bar in your Browser.

Styles you have unlocked
Default Style:    http://www.domain.com/forums/index.php?styleid=13 
vBulletin original:  http://www.domain.com/forums/index.php?styleid=1

As you can see it would be pretty easy to guess the styles, so I need away to change the styleid so one style would be 5 another 213 etc.

sheppardzwc 12-29-2009 12:16 PM

Just tried it on my dev site - I believe you can use an SQL query and change them, then set them hidden in the AdminCP. Just make sure you have a default style set for users that you already created and didn't edit in MySQL. But might want to ask around a little more - not quite sure how this would affect them completely.

SQL is:

Code:

UPDATE style SET styleid='thenewstyleid' WHERE styleid='theoldstyleid';

Tell me if it works alright. This would be a nice modification.

PhilG 08-25-2011 02:30 PM

I just did it:

1. run the following sql:

Code:

UPDATE style SET styleid='##NEWSTYLEID##', parentlist = '##NEWSTYLEID##,-1' WHERE styleid='##OLDSTYLEID##';
UPDATE stylevar SET styleid='##NEWSTYLEID##' WHERE styleid='##OLDSTYLEID##';
UPDATE template SET styleid='##NEWSTYLEID##' WHERE styleid='##OLDSTYLEID##';
UPDATE templatehistory SET styleid='##NEWSTYLEID##' WHERE styleid='##OLDSTYLEID##';

2. Go to Maintenance > Update Counters > Rebuild Styles. Run
3. Go to Settings > Options > Style & Language Settings. Click Save (no changes necessarily)

That should do it.


All times are GMT. The time now is 05:24 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.01043 seconds
  • Memory Usage 1,710KB
  • 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
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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