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 |
#1072
|
|||
|
|||
Quote:
We appreciate your understanding and cooperation. Thank you. |
#1073
|
||||
|
||||
I have turned off VBSSO, and since then, have not gotten a single 'too many connections' error. When it was activated, I was getting 50-60 connection errors daily. It may only access the core, but it is creating enough connections to cause this error, and I have a high level of connections allowed set.
I really want to use VBSSO, and would have no problem paying for a 'pro' version. It would first have to work, though. Right now, it causes my site to generate errors and keeps me and other authorized users from logging into the admin of the Wordpress site. I am uninstalling until there is a working version. |
#1074
|
|||
|
|||
Is it possible to have something like "what's new" that searched for the latest post be linked to on wordpress "only" if the user is signed in? Otherwise if we link to it and the users isn't signed in, it goes to a login page. Thanks.
|
#1075
|
|||
|
|||
Quote:
This behavior does not apply for Single Sign On, but if you want to implement this feature our team can help you. Please, send the service request with full definition of feature to: http://vbsso.com/submit-a-request/. Our team will do our best to help you. Thank you, |
#1076
|
||||
|
||||
Just an update. Sorry for the delay, it has been busy and no time to post.
I turned off VBSSO to determine what (if any) effect VBSSO might be having on my 'too many connections' errors. Turning it off reduced these errors by about 30%. But I still got some errors, starting an hour or so after my previous post. I went in and re-updated all my mods to VB, and determined that Tapatalk was what appeared to be causing the errors. I updated that several hours ago, and have not gotten an error since. However, I am still having issues re my tickets you have for me with log ins not showing as logged in on both VB and Wordpress, which causes my users to send me email when they cannot access their member information. I know you have a high level of tickets, but I was hoping that after 3 weeks I might hear something regarding the problem. I would also like to know if you are aware if there are any issues with VBSSO running on a Wordpress site using Amember membership software, which also has a VB connection to offer membership features on the forum as well. Thanks for any updates. |
#1077
|
|||
|
|||
Patch to show BuddyPress user profile in Widget:
In vbsso.php replace: Code:
$metalinks .= $this->build_notifications(); $metalinks .= '<li><a href="' . admin_url() . '" rel="nofollow">' . __('Site Admin') . '</a></li>'; $metalinks .= '<li><a href="' . site_url('wp-admin/profile.php') . '" rel="nofollow">' . __('Profile') . '</a></li>'; Code:
if ( function_exists('buddypress') ) { $metalinks .= '<li><a href="' . bp_get_loggedin_user_link() . '" rel="nofollow">' . __('Profile') . '</a></li>'; } else { $metalinks .= $this->build_notifications(); $metalinks .= '<li><a href="' . admin_url() . '" rel="nofollow">' . __('Site Admin') . '</a></li>'; $metalinks .= '<li><a href="' . site_url('wp-admin/profile.php') . '" rel="nofollow">' . __('Profile') . '</a></li>'; } |
#1078
|
|||
|
|||
Quote:
One of the issues is definitely extremely slow SQL query for displaying avatars (avatar.php) using the URL /vbsso/vbsso.php?a=act&do=avatar&id=... Code:
$query = "SELECT userfield.*, usertextfield.*, user.*, usergroup.genericpermissions, UNIX_TIMESTAMP(passworddate) AS passworddate, IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid" . vbsso_iif($settings['avatarenabled'], ', avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline, customavatar.width AS avwidth, customavatar.height AS avheight, customavatar.height_thumb AS avheight_thumb, customavatar.width_thumb AS avwidth_thumb, customavatar.filedata_thumb') . " FROM " . TABLE_PREFIX . "user AS user LEFT JOIN " . TABLE_PREFIX . "userfield AS userfield ON (user.userid = userfield.userid) LEFT JOIN " . TABLE_PREFIX . "usergroup AS usergroup ON (usergroup.usergroupid = user.usergroupid) LEFT JOIN " . TABLE_PREFIX . "usertextfield AS usertextfield ON (usertextfield.userid = user.userid) " . vbsso_iif($settings['avatarenabled'], "LEFT JOIN " . TABLE_PREFIX . "avatar AS avatar ON (avatar.avatarid = user.avatarid) LEFT JOIN " . TABLE_PREFIX . "customavatar AS customavatar ON (customavatar.userid = user.userid) ") . "WHERE MD5(LOWER(user.email)) LIKE '{$escapedHash}' LIMIT 1"; $user = $mysqli->query($query); |
#1079
|
|||
|
|||
Support for non-Latin usernames in Wordpress:
Pass JSON_UNESCAPED_UNICODE as the second parameter of all "json_encode" functions in both Wordpress and vBulletin plugin. Install plugin: https://wordpress.org/plugins/wordpr...-in-usernames/ |
#1080
|
|||
|
|||
Your feedback is important to us - please take a moment to tell us about your experiences using vBSSO service.
|
#1081
|
||||
|
||||
Glad to know this. I still have tickets in your system, now nearly 2 months old.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|