Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Facebook Connect - Update for Facebook PHP SDK (v.3.0.0) Details »»
Facebook Connect - Update for Facebook PHP SDK (v.3.0.0)
Version: 3.0.5, by mtbikemike mtbikemike is offline
Developer Last Online: Apr 2014 Show Printable Version Email this Page

Category: Integration with vBulletin - Version: 3.8.7 Rating:
Released: 09-12-2011 Last Update: 09-29-2011 Installs: 56
DB Changes Uses Plugins Template Edits
Re-useable Code Additional Files Translations Is in Beta Stage  
No support by the author.

I rewrote this plugin using ideas from sllik's mod.

Not Supported!!
This code is not supported. The Facebook API has since changed. Only provided for open source purposes ... feel free to modify at your own risk.

Download Now

File Type: zip fbconnect-3.0.4.zip (35.4 KB, 212 views)
File Type: zip fbconnect-3.0.5.zip (35.6 KB, 954 views)

Screenshots

File Type: jpg indexpage-logged-in.JPG (30.4 KB, 0 views)
File Type: jpg newpost.JPG (36.0 KB, 0 views)
File Type: jpg indexpage.JPG (50.8 KB, 0 views)
File Type: jpg connectpage.JPG (99.9 KB, 0 views)
File Type: jpg FBConnectClickFlow.jpg (46.7 KB, 0 views)
File Type: jpg FBConnectSession.jpg (44.6 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
JohorBahru, Taringa! CS, Vibhor

Comments
  #122  
Old 09-27-2011, 09:29 PM
Morrus Morrus is offline
 
Join Date: Jan 2002
Posts: 494
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you're still interested in feature requests, here's a BIG one:

Make it include Google+ and Twitter, too. A universal social sharing mod. You'd need to let admins decide which social sites to include, of course.

Maybe a bit of a big jump - but you asked for feature requests, and it occurred to me.
Reply With Quote
  #123  
Old 09-28-2011, 04:52 AM
Artes_Marciales Artes_Marciales is offline
 
Join Date: Jun 2007
Posts: 278
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Morrus View Post
If you're still interested in feature requests, here's a BIG one:

Make it include Google+ and Twitter, too. A universal social sharing mod. You'd need to let admins decide which social sites to include, of course.

Maybe a bit of a big jump - but you asked for feature requests, and it occurred to me.
This s a mod to connect Facebook, no other social networks. If mtbikemike manage to repair the bugs will be a great mod.
Reply With Quote
Благодарность от:
Taringa! CS
  #124  
Old 09-28-2011, 08:57 AM
notrious notrious is offline
 
Join Date: Mar 2007
Location: New York
Posts: 373
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

1: Getting blank page after allowing permission for app @ /forum/fblogin.php
2: blank page @ FB Connect Options > News-Feed Templates

Using (vBulletin 3.8.7 Patch Level 2)
Reply With Quote
  #125  
Old 09-28-2011, 11:39 AM
Morrus Morrus is offline
 
Join Date: Jan 2002
Posts: 494
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Artes_Marciales View Post
This s a mod to connect Facebook, no other social networks.
He asked, so I answered.
Reply With Quote
  #126  
Old 09-28-2011, 12:45 PM
mtbikemike mtbikemike is offline
 
Join Date: Nov 2010
Location: Park City, Utah, United S
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by notrious View Post
1: Getting blank page after allowing permission for app @ /forum/fblogin.php
What browser are you using? I found a bug yesterday in IE where FB would redirect to channel.html. Blank page sometimes means a php error, but the php.ini defines display_errors = off. Can you check your server's error logs?


Quote:
Originally Posted by notrious View Post
2: blank page @ FB Connect Options > News-Feed Templates
News-Feed Templates?? This was an option in sllik's version of FB Connect -- probably 2.0.5. I removed it in 3.0.
Reply With Quote
  #127  
Old 09-28-2011, 01:05 PM
mtbikemike mtbikemike is offline
 
Join Date: Nov 2010
Location: Park City, Utah, United S
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Morrus View Post
He asked, so I answered.
I've dabbled a bit with posting to twitter. It can be done via their javascript API. I'm gonna focus on getting this solid first, then we'll start adding features.

One neat idea would be to offer OAuth 2.0 connect through any major site. Like how some sites can let you log in with your yahoo, google, facebook or twitter account.

But this is probably waaaay down the line from now.
Reply With Quote
  #128  
Old 09-30-2011, 01:29 PM
mtbikemike mtbikemike is offline
 
Join Date: Nov 2010
Location: Park City, Utah, United S
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just released 3.0.5. Fixes some issues with guest sessions.

I'm seeing random errors caused by the $vbulletin->options['fbconnect_showfbavatar'] variable not being set correctly in the fbconnect_init template when it's called from the STANDARD_ERROR template and not the normal footer template. This seems to happen randomly. Still trying to track it down.

if you see weirdness with your FB avatar, remove this code in the fbconnect_init template:
Code:
<if condition="$vboptions['fbconnect_showfbavatar']">
                    document.getElementById('tdFBConnected').style.display = 'block';
</if>

And replace with:
Code:
                    document.getElementById('tdFBConnected').style.display = 'block';
Or if you don't want to show the FB avatar, just leave the above code out.

Also, added some flowcharts to help document how FB and vB sessions interact.

Please test it out and let me know if you see any issues. I'm thinking of setting up two instances of vbulletin on my hosting service for demo purposes. One instance on 3.8.7 PL2 and another on 3.5.0 (or maybe some other popular version).

Does anyone know of a vBulletin version distribution graph which shows how many installs each version of vBulletin has?
Reply With Quote
  #129  
Old 09-30-2011, 02:13 PM
Artes_Marciales Artes_Marciales is offline
 
Join Date: Jun 2007
Posts: 278
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Just released 3.0.5.
Blank page after login from facebook : S
Reply With Quote
  #130  
Old 09-30-2011, 10:36 PM
mtbikemike mtbikemike is offline
 
Join Date: Nov 2010
Location: Park City, Utah, United S
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is it trying to go to channel.html? I noticed this happening in IE, but I wrote a fix for it.
Reply With Quote
  #131  
Old 10-01-2011, 04:46 AM
Artes_Marciales Artes_Marciales is offline
 
Join Date: Jun 2007
Posts: 278
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

when I accepted the permissions on the popup from facebook goes blank page, in my case tested with IE and Opera.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:23 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05044 seconds
  • Memory Usage 2,354KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (4)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (8)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete