PDA

View Full Version : Variable Persist for User Session


v0xb0x
06-30-2008, 10:18 PM
With the help of Opserty, Danny, MoT3rror and Dismounted, I was able to get a non-vBulletin page to pass in 3 values into a vBulletin page via the query string.

Great.

I now would like to have those 3 variables persist for the length of the users session.

Different users will have different values for these variables. Some users may have the same values as others as well.

Here's the question: Is there an easy way to invoke a 'persist' state for variables that are declared in a global_start plugin?

Opserty
06-30-2008, 10:48 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=152344&highlight=session" target="_blank">[How-To] Extend and use the Session Table Effectively
</a> maybe?

MoT3rror
06-30-2008, 10:52 PM
You can save the data in a cookie (http://members.vbulletin.com/api/vBulletin/_includes---functions.php.html#functionvbsetcookie), session (https://vborg.vbsupport.ru/showthread.php?t=152344&highlight=session), or by the database.

v0xb0x
07-01-2008, 12:10 AM
You can save the data in a cookie (http://members.vbulletin.com/api/vBulletin/_includes---functions.php.html#functionvbsetcookie), session (https://vborg.vbsupport.ru/showthread.php?t=152344&highlight=session), or by the database.

I think the easiest way to approach this is the use of the vbsetcookie.

Can someone step me through the high level implementation of this function?

For example, I have exposed the values I want to store in the cookie (3 int and 1 str) using the global_start hook.

Two questions:

1. Where should I use the vbsetcookie?
2. How do I call the value of vbsetcookie on the next page?

Thanks in advance for anyone's help.

Dismounted
07-01-2008, 06:59 AM
Extending the session table would be more effective, IMO.