I am trying to integrate a script with vB and I am missing one small item that seems to have changed from 3.0 to 3.5.
Code:
You need to open the following files in your vBulletin (v3.x) package: sessions.php
which locates in: /path/to/vb3/includes/sessions.php
Look for this:
---------------------------------------------------------------------------------
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.0.0 Beta 3 - Licence Number [ENCRYPTION SEED HERE]
|| # ---------------------------------------------------------------- # ||
---------------------------------------------------------------------------------
or search for: md5($bbuserinfo['password']
----------------------------------------------
It will take you to:
if (md5($bbuserinfo['password'] . '[ENCRYPTION SEED HERE]') == $_COOKIE['bbpassword'])
==================================================================================
Take a note of the "string" where it says [ENCRYPTION SEED HERE]. For example:
EX:
if (md5($bbuserinfo['password'] . '916875ca') == $_COOKIE['bbpassword'])
The string for [ENCRYPTION SEED HERE] is 916875ca
Since sessions.php is not included in the newer versions, where can I find the encryption seed?
Thanks,
-JRW