Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons

Reply
 
Thread Tools
YAFB - Yay! Another Facebook Bridge Details »»
YAFB - Yay! Another Facebook Bridge
Version: 5.0.4b, by mrpaint mrpaint is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

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

The add-on has been updated to reflect Facebook new policy starting October 1st (read more here). Basically this is a maintenance update for user of this add-on from the past. The add-on now supports vBulletin 3.8.x only. In this new version, there are only the basic features: register and login (some simple sharing too). It keeps old settings so you don't need to re-configure.

How to update (this is important):
1. Disable the add-on in AdminCP
2. Upload files in the package (make sure you disable the add-on before uploading)
3. Import the xml in the package, choose Yes to rewrite.
4. Re-enable the add-on
5. Done

Just remember to disable the add-on before uploading files and you will be okie.

A little note for attachment downloads:
- YAFB v1.4 had been downloaded 36 times before I removed it
- YAFB v1.5: 4 downloads, YAFB v1.5.1: 26 downloads, YAFB v1.6: 29 downloads, YAFB v1.7: 22 downloads, YAFB v1.8: 48 downloads
- YAFB v1.9: 150 downloads
- YAFB v2.0: 31 downloads, YAFB v2.0.1: 10 downloads, YAFB v2.0.2: 49 downloads, YAFB v2.1: 55 downloads; YAFB v2.2: 1210 downloads; YAFB v2.2.5: 661 downloads

Download Now

File Type: zip YAFB 5.0.4b Installation.zip (69.0 KB, 807 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
2 благодарности(ей) от:
dartho, dtv100

Comments
  #72  
Old 09-21-2009, 03:19 AM
Veer Veer is offline
 
Join Date: Feb 2006
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mrpaint View Post
I hope you guys won't get tired of the uploading/importing tasks everyday because I have just released the YAFB version 1.7
Sounds Good, Keep it up man
Please also include upgrade guidance, thanks.
Reply With Quote
  #73  
Old 09-21-2009, 03:21 AM
mrpaint's Avatar
mrpaint mrpaint is offline
 
Join Date: Sep 2004
Location: Hanoi Capital
Posts: 630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Veer View Post
Sounds Good, Keep it up man
Please also include upgrade guidance, thanks.
Err, just upload all files but you can skip files inside /fbb/fbplatform they are untouched (these files are from Facebook and they have large size, hmm)
Then reimport the xml
Yay, you are done
Reply With Quote
  #74  
Old 09-21-2009, 03:34 AM
Veer Veer is offline
 
Join Date: Feb 2006
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mrpaint View Post
Err, just upload all files but you can skip files inside /fbb/fbplatform they are untouched (these files are from Facebook and they have large size, hmm)
Then reimport the xml
Yay, you are done
Thanks

I updated to the latest version, but still I can not see facebook connect button If I disable "Auto Register", I checked this on default vB style too.
Reply With Quote
  #75  
Old 09-21-2009, 03:45 AM
mrpaint's Avatar
mrpaint mrpaint is offline
 
Join Date: Sep 2004
Location: Hanoi Capital
Posts: 630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Veer View Post
Thanks

I updated to the latest version, but still I can not see facebook connect button If I disable "Auto Register", I checked this on default vB style too.
Oops, it's really my mistake. Please do this file edit manually (I'm really sorry, honestly)

Open ./fbb/hook_global_start.php
Find
PHP Code:
if ($vbulletin->fbb['runtime']['enabled']
    AND 
$vbulletin->fbb['config']['auto_register']
    AND !
$vbulletin->userinfo['userid']) {
    eval(
'$template_hook["navbar_buttons_right"] .= "' fetch_template('fbb_navbar_button') . '";');

Change it into

PHP Code:
if ($vbulletin->fbb['runtime']['enabled']
    AND (
$vbulletin->fbb['config']['auto_register'] OR $vbulletin->fbb['config']['auto_login'])
    AND !
$vbulletin->userinfo['userid']) {
    eval(
'$template_hook["navbar_buttons_right"] .= "' fetch_template('fbb_navbar_button') . '";');

Done
Reply With Quote
  #76  
Old 09-21-2009, 04:01 AM
Veer Veer is offline
 
Join Date: Feb 2006
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mrpaint View Post
Oops, it's really my mistake. Please do this file edit manually (I'm really sorry, honestly)

Open ./fbb/hook_global_start.php
Find
PHP Code:
if ($vbulletin->fbb['runtime']['enabled']
    AND 
$vbulletin->fbb['config']['auto_register']
    AND !
$vbulletin->userinfo['userid']) {
    eval(
'$template_hook["navbar_buttons_right"] .= "' fetch_template('fbb_navbar_button') . '";');

Change it into

PHP Code:
if ($vbulletin->fbb['runtime']['enabled']
    AND (
$vbulletin->fbb['config']['auto_register'] OR $vbulletin->fbb['config']['auto_login'])
    AND !
$vbulletin->userinfo['userid']) {
    eval(
'$template_hook["navbar_buttons_right"] .= "' fetch_template('fbb_navbar_button') . '";');

Done
Yay! now I can see that button, but this button still going to "/register.php?do=signup&fbb" location, Can not let me login.
Reply With Quote
  #77  
Old 09-21-2009, 04:12 AM
BBR-APBT's Avatar
BBR-APBT BBR-APBT is offline
 
Join Date: Feb 2009
Location: Maryland
Posts: 946
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bug Report:
When I send a PM it sends a notification to facebook even though I have it off. How ever I do have it turned on to notify me when I receive a PM.

Here is the notification:
has just sent you a new Private Message with the title "Re: can you send me a pm back".

This is when I send a PM the username is blank and it says someone sent me the PM.
Incoming works fine.

Now back to the intro post:


See the double user name in the red square. It is supposed to be single user name like the arrow points to.
This is only on the intro thread.

Also when you hover over the Test2 Intro It will show this in my browser:

But it really goes to this link /showthread.php?p=0#post0
It only does this on the intro thread as well.


And the last one it still bypasses the auth email check for me.

Thanks again for all your hard work and fast updates.
Attached Images
File Type: png yafb.PNG (11.5 KB, 0 views)
File Type: png yafb2.PNG (1.5 KB, 0 views)
Reply With Quote
  #78  
Old 09-21-2009, 05:23 AM
mrpaint's Avatar
mrpaint mrpaint is offline
 
Join Date: Sep 2004
Location: Hanoi Capital
Posts: 630
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BBR-APBT View Post
Bug Report:
When I send a PM it sends a notification to facebook even though I have it off. How ever I do have it turned on to notify me when I receive a PM.

Here is the notification:
has just sent you a new Private Message with the title "Re: can you send me a pm back".

This is when I send a PM the username is blank and it says someone sent me the PM.
Incoming works fine.

Now back to the intro post:


See the double user name in the red square. It is supposed to be single user name like the arrow points to.
This is only on the intro thread.

Also when you hover over the Test2 Intro It will show this in my browser:

But it really goes to this link /showthread.php?p=0#post0
It only does this on the intro thread as well.


And the last one it still bypasses the auth email check for me.

Thanks again for all your hard work and fast updates.
I don't understand the part you talked about PM notification. Can you describe again?

About the Intro Thread, it's really weird! I will take a deeper look later

About the email, it only send email validation to normal email addresses, Facebook email addresses will be bypassed. I tested with my forum, can you test again?

@Veer: Click that link will let you login with your Facebook session :-?
Reply With Quote
  #79  
Old 09-21-2009, 05:50 AM
Veer Veer is offline
 
Join Date: Feb 2006
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mrpaint View Post
@Veer: Click that link will let you login with your Facebook session :-?
Nope, It is going to regular forum registration page.
And vMail error is still there during Facebook registration:
Code:
Sorry, your e-mail address is incorrect (does not match the verification code).
Reply With Quote
  #80  
Old 09-21-2009, 06:11 AM
redlabour's Avatar
redlabour redlabour is offline
 
Join Date: Mar 2004
Location: Wuppertal, NRW, Germany
Posts: 1,541
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mrpaint View Post
I didn't get your idea of IM Card and Sidebar? What are they? What is profilepage also? You mean ./member.php huh?
Take a look at the Screenshots of this Mod for Example:

Engage Twitter

these are the minimum Features that should appear in a Bridge.

Quote:
Originally Posted by mrpaint View Post
Can you give me more detail about your setup? If the Edit Settings (with templates) page is going well, you may need to send me the file named fbb.log in your forum root. It's the debugging one and maybe I can help
00:50 21092009|/forum/admincp/options.php?do=options&dogroup=fbb|userid=1~Invali d API key

API Key is absolutely correct.
Reply With Quote
  #81  
Old 09-21-2009, 12:42 PM
principino1984 principino1984 is offline
 
Join Date: Jul 2006
Location: Italy
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

where should be this options?

1.7.2 Added options for user to choose if he/she wants to display checkboxes all the time

Marco
Reply With Quote
Reply

Thread Tools

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 02:20 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.06652 seconds
  • Memory Usage 2,376KB
  • Queries Executed 28 (?)
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
  • (1)bbcode_code
  • (4)bbcode_php
  • (9)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
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (2)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)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_postinfo_query
  • fetch_postinfo
  • 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