MyBB Community Forums

Full Version: MyFacebook Connect 3.6
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Flyover is here!
Do you feel Facebook login is not enough for your board? I've got good news for you: Flyover lets you login and register with over 20 social networks, including Facebook, Twitter, Microsoft, Google, Steam, LinkedIn, Tumblr, WordPress and many more! Get it now at MyBBoost for a bunch of bucks!

MyFacebook Connect
Let your users login and register using Facebook with ease!

MyFacebook Connect is a plugin which lets you login and register through Facebook on any MyBB installation.

MyFacebook Connect can easily let your users register and login using their Facebook accounts with MyFacebook Connect: it differs from existing (both free and paid) plugins thanks to the provided PHP SDK and a lightweight, transparent integration. A must-have for almost every community and compatible with the latest MyBB releases!

Get support and more informations at MyBBoost.
Download from the Mods Site or from MyBBoost.
(2013-04-17, 04:06 PM)Shade Wrote: [ -> ]
  • It works
  • It's free

Perfect.

Thanks so much. Looking forward to using it.
Your Template >> member_register

After

{$header}

<tr>
<td class="thead" colspan="2"><strong><a href="http://forum.bf4brasil.com.br/myfbconnect.php?action=fblogin"><img src="/images/register.png"/></a></tr>


register button upload to images folder

[attachment=29020]



Português do Brasil added
Thank you guys, appreciations are the best salary for me Blush

I've written down a detailed documentation you can now read:

Don't miss them Smile
Quote:This option lets you specify an usergroup to put the Facebook-registered users straight after they register. By default it's set to 2, which equals to "Registered" usergroup, but I'd recommend to create a specific usergroup with some unique styles (or permissions, if you want to). This will lead into a smoother user experience: Facebook users will be immediately recognized by their username's color, for example.

Can I ask why you think something like this is important?
Well, to me it's important to have a sort of special feedback for users who register with Facebook. Something like a special usergroup, so when I see many users with that color I think "hey, notice how many users use Facebook to login!". It's a sort of feedback for admins, but can be useful also for users themselves.

You can create an usergroup with special permissions to see restricted areas in your board and encourage people to register with Facebook to access them, for example.
Not sure I see the benefit, but I'd be curious to hear what others do with it.
Would be good to add as an additional usergroup IMO so you can see how popular the FB login is.
is this safe..?? the fb connect plugin of nayar is vulnerable.. and what this is error when registering?
MyBB has experienced an internal SQL error and cannot continue.
SQL Error:
1054 - Unknown column 'uid' in 'field list'
Query:
 INSERT INTO mybb_userfields (`uid`) VALUES ('22938')
A grainy pixely image or an untrustworthy looking link aren't really ideal solutions for me, so ...

[Image: wDi62Ht.png]

I made this CSS button which you can use as you see fit. It requires Font-Awesome to generate the FB icon.

First, append the class fb-login to the MyFacebook Connect link.

<a href="{$mybb->settings['bburl']}/myfbconnect.php?action=fblogin" class="fb-login"><i class="icon-facebook"></i><span>{$lang->myfbconnect_login}</span></a>

Then, add the following to your global.css:

a.fb-login {
color: #fff !important;
padding: 5px 0;
border: 1px solid;
border-color: #29447E #29447E #1A356E;
background-color: #5B74A8;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 #8a9cc2;
-webkit-font-smoothing: antialiased;
font: bold 11px/normal 'lucida grande', tahoma, verdana, arial, sans-serif;
display: inline-block;
height: 25px;
box-sizing: border-box;
}

a.fb-login:active {
    border-color: #29447E;
    background: #4F6AA3;
    filter: none;
    box-shadow: none;
}

a.fb-login span {
display: inline-block;
position: relative;
top: -6px;
padding: 0 8px;
}

a.fb-login i {
padding: 3px 3px 0px 15px;
display: inline;
margin-left: -5px;
border-right: 1px solid #29447E;
margin-top: 0px;
font-size: 20px;
position: relative;
top: -2px;
}