The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBSSO - vBulletin Single Sign-On Details »» | |||||||||||||||||||||||||||||||||
vBSSO is a vBulletin plugin that helps you connect to different software platforms like content management systems, blogs, and online stores using a secure Single Sign-On
The system has two components. First, there?s a vBulletin plugin that creates an interface for authenticating, controlling access, and managing user profile data. The second component is plugins for other platforms (like WordPress) that teach it to talk to vBulletin and exchange data. Here?s a list of support platforms. Supported Platforms (https://www.vbsso.com)
SSO Key Features
Single Sign-On
License
Safety
Setup & Configuration
Avatars
User Groups
Miscellaneous
= 1.6.4 =
= 1.6.1 =
= 1.6.0 =
= 1.5.1 =
= 1.4.16 =
We strongly recommend you to upgrade vBSSO to the latest version (1.4.15) = 1.4.15 =
= 1.4.14 =
= 1.4.13 =
= 1.4.12 =
= 1.4.11 =
= 1.4.10 =
= 1.4.9 =
= 1.4.8 =
= 1.4.7 =
= 1.4.6 =
= 1.4.5 =
= 1.4.4 =
= 1.4.3 =
= 1.4.2 =
= 1.4.1 =
= 1.4 =
= 1.3 =
= 1.2 =
Project Supported by Diabetes Daily "We are in dept to those who have donated their code and advice to us over the last six years. Without that support, we would never have built one of the most successful diabetes communities. This is our way of 'paying it forward' so others can do more better and faster." - David Edelman, Co-Founder of Diabetes Daily Download Now Download Now
Screenshots
Show Your Support
|
22 благодарности(ей) от: | ||
aminp30, andro140, Brandon Sheley, dartho, davide101, Da^MsT, Flightbase, Fulla, geekay, ia7, m7sen, Maghrebia, Master Of Unive, nacaruncr, puertoblack2003, RichieBoy67, rwoscott, Sage Knight, Teascu Dorin, Toorak Times, ugorur |
Comments |
#1262
|
|||
|
|||
Quote:
|
#1263
|
|||
|
|||
version 7.0
|
#1264
|
||||
|
||||
When will Mediawiki 1.29 and newer be supported?
|
#1265
|
||||
|
||||
Okay, fixed this myself, also the mcrypt deprecation warnings of PHP 7.2.
Does anybody have the problem that he gets logged of Mediawiki each day? I already had this before I touched the code of vBSSO and have no idea why this is happening. I don't have this problem with Wordpress. |
#1266
|
||||
|
||||
When importing the vbsso.xml it stops with few dots... tried it several times.
vB4.2.5 and PHP7.1 |
#1267
|
||||
|
||||
*solved*
PHP7.1 was the problem, after switching to PHP7.0 all is fine |
#1268
|
||||
|
||||
Quote:
|
#1269
|
|||
|
|||
Quote:
ndahiya |
#1270
|
||||
|
||||
Quote:
Well, switching from mcrypt to OpenSSL is quite easy. I edited the file vendor/com.extremeidea.vbsso/vbsso-connect-shared/sharedapi.php (these edits are required in each connected platform): In sharedapi_encrypt: Code:
//return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $data, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB), MCRYPT_RAND)))); $iv = openssl_random_pseudo_bytes(openssl_cipher_iv_length('AES-128-CBC')); return base64_encode($iv . openssl_encrypt($data, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $iv)); Code:
//return trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, base64_decode($data), MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB), MCRYPT_RAND))); $raw = base64_decode($data); $iv_length = openssl_cipher_iv_length('AES-128-CBC'); $iv = substr($raw, 0, $iv_length); return openssl_decrypt(substr($raw, $iv_length), 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $iv); Code:
return $json && is_array($json) && in_array($json[SHAREDAPI_EVENT_FIELD_PRODUCT], array_keys(sharedapi_get_platforms())) && isset($json[SHAREDAPI_EVENT_FIELD_DATA][SHAREDAPI_EVENT_FIELD_VERIFY]) && $json[SHAREDAPI_EVENT_FIELD_DATA][SHAREDAPI_EVENT_FIELD_VERIFY]; For supporting Mediawiki 1.30 and newer, the plugin needs to be converted. These are too many edits to list them here. I'm not sure how the devs of vBSSO feel about having their commercial product being edited and uploaded by others. On the other hand this product seems abandoned. So @vBSSO: just drop me a friendly message if you want me to remove the file. |
#1271
|
||||
|
||||
You got this working with PHP 7.2 and WordPress (actual version) and vBulletin 4.2.5 ?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|