Social Login for vBulletin4 allows your users to login and register with 35+ social networks. It increases your vBulletin user registration rate by simplifying the registration process for new users and provides permission-based social data retrieved from the social network profiles.
Your existing users can furthermore link their existing accounts to one or more social networks and can then use these social network accounts to login without having to remember another username/password combination.
The module integrates with your existing system so you and your users don't have to start from scratch.
Who are we?
Social Login is maintained by OneAll, a technology company offering a set of web-delivered tools and services for establishing and optimizing a site's connection with social networks and identity providers such as Facebook, Twitter, Google, Yahoo!, LinkedIn, Paypal, Hyves amongst others. As today more than 250,000 websites rely on OneAll!
I'm sorry, but besides my local development environment I don't have a demo that I could show you. The installation is however very easy. You can simply give it a try and remove it if it does not suit your needs.
Good, install it on my forum but when I register I get the following error in the header:
Warning: Non-static method OneAllSocialLogin_Toolbox::generate_hash() should not be called statically in ..../oneallsociallogin/include/toolbox.php on line 611
did not work for me following the instructions, link to connect showed up but when clicking it nothing happened, uninstalled
In this case your API was probably not working correctly. You must open the Social Login settings in your admin area and click on "Autodetect" and "Verify". Both tests must display a green success message.
Is it possible to show more than 4 social media icons at a time?
Yes, of course. You only need to enable them in Social Login setup in your ACP. The number should not be limited. Could you post a link to the page where I can see the error?
Good, install it on my forum but when I register I get the following error in the header:
Warning: Non-static method OneAllSocialLogin_Toolbox::generate_hash() should not be called statically in ..../oneallsociallogin/include/toolbox.php on line 611
I appreciate your support.
Thank you for the bug report. I have fixed the error and uploaded a new version.
How would the members name appears? For 15 years, my forums have been username only based, without real names so want to know if this only shows their Facebook profile name for example, or whether there are options to change t
You have to open the file oneallsociallogin/include/toolbox.php
Then you comment this line:
Code:
$data ['user_login'] = $data ['user_full_name'];
This will create users with their username from the social network only. Please note that in some social networks (i.e. Facebook) the user's username is usually equal to the first/lastname. So despite the change there might be usernames with a first/lastname in it.
Yes, of course. You only need to enable them in Social Login setup in your ACP. The number should not be limited. Could you post a link to the page where I can see the error?
It does show more than 4 but to view the rest you have to scroll to see them. Is that how it is meant to be?
Thank you for your prompt response, download the update and Set up all over again but I still dating the same mistake.
Are you sure that you have downloaded and installed the new version 1.0.1 ?
This error
Code:
Warning: Non-static method OneAllSocialLogin_Toolbox::generate_hash() should not be called statically in ..../oneallsociallogin/include/toolbox.php on line 611
Should no longer occur as the function is now declared as static function
Code:
public static function generate_hash ($length){ ...}