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
  #452  
Old 11-01-2009, 06:48 PM
Calash's Avatar
Calash Calash is offline
 
Join Date: Jun 2006
Location: East Coast, USA
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by minman40324 View Post
Ok now i get this error after i run it.
fbb_log Check Error: Incorrect information in file: './mydatabase/fbb_log.frm'
fbb_log Check Error: Corrupt
I am now getting this error as well. REPAIR does nothing to help it. phpMyAdmin is also showing the error...nothing is correcting it.
Reply With Quote
  #453  
Old 11-01-2009, 09:29 PM
filt filt is offline
 
Join Date: May 2007
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I tried this on my Swedish board... i get some errors in the facebook feed with the swedish swedish characters...

Quote:
IJ det n姯n annan 䮠jag som 嫥r ner med Turkish Airlines fr宠Stockholm till Mumbai den 16 november?
It should be:

Quote:
?r det n?gon annan ?n jag som ?ker ner med Turkish Airlines fr?n Stockholm till Mumbai den 16 november?
My board runs on charset ISO-8859-1

Also, i cant seem to find all the templates.. id love to help you translate the application to Swedish...
Reply With Quote
  #454  
Old 11-02-2009, 02:31 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 Calash View Post
I am now getting this error as well. REPAIR does nothing to help it. phpMyAdmin is also showing the error...nothing is correcting it.
You got PM

Quote:
Originally Posted by filt View Post
I tried this on my Swedish board... i get some errors in the facebook feed with the swedish swedish characters...



It should be:



My board runs on charset ISO-8859-1

Also, i cant seem to find all the templates.. id love to help you translate the application to Swedish...
Hi,

I'm experimenting character encoding from diffrent charset to UTF-8 (which works best with Facebook) and I will update to you soon.
About the templates and phrases, as I remember now, everything text is phrases, you can do a search in your Phrase Manager (in AdminCP). Thank you
Reply With Quote
  #455  
Old 11-02-2009, 07:09 AM
filt filt is offline
 
Join Date: May 2007
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Couldnt you just utf8-encode the strings you send and recieve to/from facebook?
http://php.net/manual/en/function.utf8-encode.php
Reply With Quote
  #456  
Old 11-02-2009, 07:15 AM
RadioErewan RadioErewan is offline
 
Join Date: Feb 2008
Location: Poland
Posts: 75
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by filt View Post
Couldnt you just utf8-encode the strings you send and recieve to/from facebook?
http://php.net/manual/en/function.utf8-encode.php
iconv works for me, just tested it on hook_threadratedata_postsave.php
Added $message = iconv('ISO-8859-2','UTF-8',$message); in line 51 and
$notification = iconv('ISO-8859-2','UTF-8',$notification); in 80.
Now rating is properly rendered. Remember, my forum runs ISO-8859-2.
There are 32 hooks only, so doing it on my own every release is not wise solution.
Will wait for author feedback.

Regards
Reply With Quote
  #457  
Old 11-02-2009, 09:22 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 filt View Post
Couldnt you just utf8-encode the strings you send and recieve to/from facebook?
http://php.net/manual/en/function.utf8-encode.php
This function can only convert string from ISO-8859-1, I intended to use mbstring library or iconv

Quote:
Originally Posted by RadioErewan View Post
iconv works for me, just tested it on hook_threadratedata_postsave.php
Added $message = iconv('ISO-8859-2','UTF-8',$message); in line 51 and
$notification = iconv('ISO-8859-2','UTF-8',$notification); in 80.
Now rating is properly rendered. Remember, my forum runs ISO-8859-2.
There are 32 hooks only, so doing it on my own every release is not wise solution.
Will wait for author feedback.

Regards
Hi,

If you are a coder and open fbb/functions.php you will find out a function named "fb_encoding_to_Facebook" I intended to use to convert encoding. Hmm, but it give the wrong result so for most of the functions, I commented out the encoding part. But as you confirmed that iconv works, I will provide you with a new functions.php soon. You test it and tell me the result, okie?

Regards,

PS: Yeah, 42 hooks with manual editing is definitely not a wise way to do this Let the developer (me, haha) do his work!
Reply With Quote
  #458  
Old 11-02-2009, 10:11 AM
RadioErewan RadioErewan is offline
 
Join Date: Feb 2008
Location: Poland
Posts: 75
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mrpaint View Post
If you are a coder and open fbb/functions.php you will find out a function named "fb_encoding_to_Facebook" I intended to use to convert encoding. Hmm, but it give the wrong result so for most of the functions, I commented out the encoding part. But as you confirmed that iconv works, I will provide you with a new functions.php soon. You test it and tell me the result, okie?
Okie :-) Just uncommented three calls to fb_encoding_to_Facebook (replaced mbconvert with iconv), and nothing changed. Still titles are truncated at first polilsh diacritic mark in shorts sent to wall.

Regards
Reply With Quote
  #459  
Old 11-02-2009, 10:22 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 RadioErewan View Post
Okie :-) Just uncommented three calls to fb_encoding_to_Facebook (replaced mbconvert with iconv), and nothing changed. Still titles are truncated at first polilsh diacritic mark in shorts sent to wall.

Regards
Oh oh, I sent you a PM. Did you read it? The new functions.php script is sent
Reply With Quote
  #460  
Old 11-02-2009, 07:20 PM
dfc005 dfc005 is offline
 
Join Date: Mar 2008
Posts: 198
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What about automatically bringing across some Facebook details? I like to collect users first and last names but don't really want these on the register page. Would you be able to set something up in the admin section so we can link some details from Facebook to specific profile fields.
Reply With Quote
  #461  
Old 11-03-2009, 11:22 AM
tldagent tldagent is offline
 
Join Date: Mar 2006
Location: Ohio
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Haven't installed this yet as I was trying your demo board listed in the first post and I like the looks of it so far but I'm running into one issue. I enter my username, password and email to register and I keep getting this error on your demo board:

Quote:
You must enter at least 5 characters for the intro.
I can't get past this point to see if how it works with facebook and to adjust user settings.
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 01:15 PM.


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.05696 seconds
  • Memory Usage 2,345KB
  • 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
  • (11)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
  • (1)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