vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Integration with vBulletin - Facebook Connect - Update for Facebook PHP SDK (v.3.0.0) (https://vborg.vbsupport.ru/showthread.php?t=270219)

mtbikemike 09-20-2011 12:45 PM

Quote:

Originally Posted by Taringa! CS (Post 2248082)
I've got a problem with the register button.

The facebook popup only works on register.php or login.php... not on forumhome

Any ideas?

Do you have FB like buttons on the forumhome? Having the facebook javascript included twice on a page will break the connect button. Pull out any references to ...

Code:

<script src="//connect.facebook.net/en_US/all.js"></script>
and let the FB Connect plugin handle adding the javascript which, as an added bonus, will load asynchronously and parse any FBML you might have.

mtbikemike 09-20-2011 12:51 PM

Quote:

Originally Posted by Artes_Marciales (Post 2248165)
VB.
I fear that my users via facebook stay one day without access to the forum.
I think it should include more data as a normal recording not just a nick name.

Once a user is connected via facebook, they will have access to their User CP where they can change their password and other info. But they will be able to come back in a few days/weeks/months, click on FB connect and it will log them in without them having to remember a VB password.

Copying over a user's avatar, location, age, sex, etc. is definitely doable, just didn't have to time to do it. I wanted to release this first to see how widely accepted it was.

mtbikemike 09-20-2011 12:56 PM

Quote:

Originally Posted by Hellmaster (Post 2247626)
Not working on 3.8.4 :-(

What version of php are you running? 3.0.1 has a fix for php versions < 5.3.

klaush 09-20-2011 02:44 PM

We get a XML-error when installing the product:

Processing Instruction not finished in Line 248

klaush 09-20-2011 02:46 PM

Sorry, forget it; my fault!

Artes_Marciales 09-20-2011 03:18 PM

Quote:

Originally Posted by mtbikemike (Post 2248202)
Once a user is connected via facebook, they will have access to their User CP where they can change their password and other info. But they will be able to come back in a few days/weeks/months, click on FB connect and it will log them in without them having to remember a VB password.

Copying over a user's avatar, location, age, sex, etc. is definitely doable, just didn't have to time to do it. I wanted to release this first to see how widely accepted it was.

OK, thanks :)

Please... someone who has installed it can put your URL to see how it looks?
Thanks!

Taringa! CS 09-20-2011 05:51 PM

Quote:

Originally Posted by mtbikemike (Post 2248200)
Do you have FB like buttons on the forumhome? Having the facebook javascript included twice on a page will break the connect button. Pull out any references to ...

Code:

<script src="//connect.facebook.net/en_US/all.js"></script>
and let the FB Connect plugin handle adding the javascript which, as an added bonus, will load asynchronously and parse any FBML you might have.

I've got this

<script type="text/javascript" src="http://static.ak.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_GB"></script><script type="text/javascript">FB.init("b429ea3362ecedaaacae88363d481 500");</script><fb:fan profile_id="76722401590" stream="" connections="10" width="300"></fb:fan>

maybe better to use an iframe to add it, right?

Taringa! CS 09-20-2011 06:27 PM

I've got it working fine!

Is it possible to eliminate the user avatar with the facebook icon on navbar?

mtbikemike 09-20-2011 06:49 PM

Quote:

Originally Posted by Taringa! CS (Post 2248308)
I've got this

<script type="text/javascript" src="http://static.ak.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_GB"></script><script type="text/javascript">FB.init("b429ea3362ecedaaacae88363d481 500");</script><fb:fan profile_id="76722401590" stream="" connections="10" width="300"></fb:fan>

maybe better to use an iframe to add it, right?


No, not really. The FeatureLoader.js is depreciated and is going away in a month or two.

just change this ...
Code:

<script type="text/javascript" src="http://static.ak.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_GB"></script>
<script type="text/javascript">FB.init("b429ea3362ecedaaacae88363d481500");</script>
<fb:fan profile_id="76722401590" stream="" connections="10" width="300"></fb:fan>

to this ...
Code:

<fb:fan profile_id="76722401590" stream="" connections="10" width="300"></fb:fan>

and if FB Connect is installed correctly it'll work golden.

mtbikemike 09-20-2011 06:56 PM

Quote:

Originally Posted by Taringa! CS (Post 2248321)
I've got it working fine!

Is it possible to eliminate the user avatar with the facebook icon on navbar?

Yeah, just go into the fbconnect_button template and comment out/delete the image reference.


change this ...
Code:

<if condition="$vbulletin->userinfo['fbuid'] > 0">
        <if condition="$show['member']">
                <td class="alt2" nowrap="nowrap" align="center" style="width:51px;padding:0px">
                        <div style="position: relative; padding:0px;">
                                <a target="_new" href="http://www.facebook.com/profile.php?id={$vbulletin->userinfo['fbuid']}">
                                        <img width="40" height="40" alt="Logged in with Facebook" src="https://graph.facebook.com/{$vbulletin->userinfo['fbuid']}/picture" title="Logged in with Facebook">
                                        <img style="width: 15px; height: 15px; position: absolute; left: 2px; top: -3px; z-index: 2;" alt="Logged in with Facebook" src="images/facebook/fblogo.png" title="Logged in with Facebook" />
                                </a>
                        </div>
                </td>
        <else />
                <td class="alt2" nowrap="nowrap" align="center" style="width:58px;padding:0px">
                        <a href="#" onclick="javascript:fblogin(); return false;">
                                <img src="images/facebook/fbconnect.png" border="0" />
                        </a>
                </td>
        </if>
<else />
        <td class="alt2" nowrap="nowrap" align="center" style="width:58px;padding:0px">
                <a href="#" onclick="javascript:fblogin(); return false;">
                        <img src="images/facebook/fbconnect.png" border="0" />
                </a>
        </td>
</if>


to this ...
Code:

<if condition="$vbulletin->userinfo['fbuid'] > 0">
        <if condition="!$show['member']">
                <td class="alt2" nowrap="nowrap" align="center" style="width:58px;padding:0px">
                        <a href="#" onclick="javascript:fblogin(); return false;">
                                <img src="images/facebook/fbconnect.png" border="0" />
                        </a>
                </td>
        </if>
<else />
        <td class="alt2" nowrap="nowrap" align="center" style="width:58px;padding:0px">
                <a href="#" onclick="javascript:fblogin(); return false;">
                        <img src="images/facebook/fbconnect.png" border="0" />
                </a>
        </td>
</if>



All times are GMT. The time now is 02:06 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01375 seconds
  • Memory Usage 1,760KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete