vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Change a user's style / template using php (https://vborg.vbsupport.ru/showthread.php?t=219542)

30et 07-27-2009 01:40 AM

Change a user's style / template using php
 
Hi there

I want to write a page that changes the template a user is using, and then redirects them to another url (outside of vbulletin) but in the same domain so that when they return to vbulletin they get the new template.

I thought I could do this on a php page - just change the template setting and then redirect their browser. But I can't figure out how or where the template setting for a user is stored.

I see that there is a cookie called 'bbstyleid' which has the template's style id.
And in the database there is a field in the 'user' table which is 'styleid'.
And also there is another table called 'session' which has a field named 'styleid'.

I have tried to modify the fields in the tables but they don't seem to take effect. And I have also tried changing the cookie value using

Code:

setcookie("bbstyleid", "12345");
But it doesn't seem to change?

Does anyone have a suggestion? :confused:

Plus

Dismounted 07-27-2009 06:23 AM

The user's cookie takes priority, then its the user options field, then board default.

Have you checked that the cookie is indeed being set?

30et 07-28-2009 10:17 PM

The cookie is already set by the user's preferences, but I can't seem to change it using basic php code.
I am using code like -

PHP Code:

setcookie("bbstyleid""333"); 

Is this correct? Or is the bbstyleid cookie part of an array of cookie values and I have to specify the array name or something?

Dismounted 07-29-2009 10:26 AM

Remember that something has to be output to the user for any cookie changes to take effect. This is why a page must be displayed on logout, etc.

I'm not sure if you are doing this.

testbot 07-29-2009 03:03 PM

i have no idea if this would work in template headerinclude

<if condition="$session[styleid] != 3">
$session[styleid] = 3
#redirect code here
</if>


All times are GMT. The time now is 02:23 AM.

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.00980 seconds
  • Memory Usage 1,717KB
  • 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_code_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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