vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Integration with vBulletin - YAFB - Yay! Another Facebook Bridge (https://vborg.vbsupport.ru/showthread.php?t=232457)

mrpaint 01-22-2010 02:17 PM

Quote:

Originally Posted by Veer (Post 1963363)
Thank you mrpaint for Version 3.2

I have upgraded on vb 4.0.1 and its working fine for me, thanks for improving Connected Users Manager, and image sharing. :)

Why it is having a black border on quick reply, new reply, new thread, visitor messages, posting blog, picture comment and fb usercp option pages:
Attachment 110731

Attachment 110733

Hi,

Which style are you using? I'm using the default style from vBulletin installation and it works fine. It looks like this is a style/css issue.

To everyone else, the files have been updated at the first post. To those who downloaded 3.2 already, if you have problem with attachments, please grab this new files and it will be fixed (actually, attachments will be left out in vBulletin 4, hmm)

ENF 01-22-2010 02:17 PM

The files are there, at least at the time of this post.

Edit: duh... posted at the same time. :P

kf4eok 01-22-2010 02:19 PM

Wow that was quick, the files are here and I have DL them.
Thanks again for all your hard work making this great mod.

min0taur 01-22-2010 02:22 PM

issues with my firefox friends doesnt show profile.php?do=fbb_invite

messengermatt 01-22-2010 02:45 PM

This new version wont import, it just carries on trying and doesnt complete

mrpaint 01-22-2010 03:06 PM

Quote:

Originally Posted by min0taur (Post 1963424)
issues with my firefox friends doesnt show profile.php?do=fbb_invite

Properly all your friends are members in forums. Try another Facebook profiles or check for javascript errors if any

Quote:

Originally Posted by messengermatt (Post 1963456)
This new version wont import, it just carries on trying and doesnt complete

Anyone else confirms this please?

Delilahs 01-22-2010 03:12 PM

No trouble whatsoever on Opera, but I'm on a MAC.

All working fine, and connected to FB easily, without killing my forum this time, so that's a brucie.

clicks installed

Veer 01-22-2010 03:14 PM

Quote:

Originally Posted by mrpaint (Post 1963487)
Properly all your friends are members in forums. Try another Facebook profiles or check for javascript errors if any


Anyone else confirms this please?

Yes, the import product time was too long.

Veer 01-22-2010 03:17 PM

Quote:

Originally Posted by mrpaint (Post 1963413)
Hi,

Which style are you using? I'm using the default style from vBulletin installation and it works fine. It looks like this is a style/css issue.

To everyone else, the files have been updated at the first post. To those who downloaded 3.2 already, if you have problem with attachments, please grab this new files and it will be fixed (actually, attachments will be left out in vBulletin 4, hmm)

I'm using default style with no template changes, and never touched css, I don't know what is causing problem :(

anaksimandros 01-22-2010 03:27 PM

error when i entered to funlist

Warning: html_entity_decode() [function.html-entity-decode]: charset `ISO-8859-9' not supported, assuming iso-8859-1 in [path]/fbb/functions.php on line 823

and

whitepage in invite to friends

zombietom 01-22-2010 03:36 PM

Has anyone tested this latest version (3.2.3) on a 3.7 version of VB?
I tried to upgrade to 3.0 verison of Yay! Another Facebook Bridge but it killed my site ..so i went back to 2.2 version...would love to updated the newest version.
I will check for a replay later as i have to go to a funeral today.

thanks
and a special Thanks to Mr.paint for making and maintaining this MOD

Megatr0n 01-22-2010 03:49 PM

mrpaint, please check your e-mail. :D

dangerin 01-22-2010 04:28 PM

Hey i'm new on Vbulletin World but i see that mrpaint is a guru with Vbulletin and i say thanks to him.
Now i'll try to install this mod and i hope ti do not have problems about it also why i read that mrpaint for all february there is not reachable.
I download the file and i do all how instructions? Correct?
i use VB 4.0.1 with simpleblach template.
Thanks to all

ScottiG 01-22-2010 05:10 PM

OK MrPaint... Job VERY WELL DONE!

Your update installed very easily, and the update went very smooth. This update did several positive things for me... For starters, I like that the Facebook Connect popup now refreshes and reloads my forums after a member connects to Facebook - THIS IS A HUGE IMPROVEMENT! - Thanks for getting that to work!

Also, I absolutely love the feature of comments posting back to my forums FROM Facebook! - AWESOME!

As I have mentioned before... This MOD is my overall favortie for VBulletin! - Great work!

For those wondering... I am running VB 3.8.4

I'd like to extend my highest recommendation for this mod - Not only is the MOD a great addition to the forum, but the support from MrPaint is definitely at a higher level than many of the coders here. He listens, then he acts on the input.

Without question MrPaint gets an A+ from me!

BBR-APBT 01-22-2010 05:19 PM

Wonderful seems to be working as expected.
Not one error so far.

Veer 01-22-2010 06:32 PM

Quote:

Originally Posted by ScottiG (Post 1963610)
I'd like to extend my highest recommendation for this mod - Not only is the MOD a great addition to the forum, but the support from MrPaint is definitely at a higher level than many of the coders here. He listens, then he acts on the input.

Without question MrPaint gets an A+ from me!

True, the best coder with great support :)

BBR-APBT 01-22-2010 06:37 PM

Found a little bug:
VBulletin 4.0.1

When trying to edit Avatar in the settings you get this error.

Code:

Parse error: syntax error, unexpected '.' in /path/to/forums/includes/class_core.php(4029) : eval()'d code on line 150
Narrowed it to this file: hook_profile_complete.php

Ok it is this line causing the error.
Code:

                $vbulletin->templatecache['modifyavatar'] .= ' . "' . addslashes($templater->render()) . '"';


And here is the fix:
In (hook_profile_complete.php)
Find the following:
Code:

        if ($vbulletin->fbb['runtime']['vb4']) {
                $templater = vB_Template::create('fbb_vb4_modifyavatar');
                        $templater->register('avatarchecked', $avatarchecked);
                $vbulletin->templatecache['modifyavatar'] .= ' . "' . addslashes($templater->render()) . '"';
        } else {
                eval('$maxnote .= "' . fetch_template('fbb_modifyavatar') . '";');
        }

Replace with:
Code:

        if ($vbulletin->fbb['runtime']['vb4']) {
                $templater = vB_Template::create('fbb_vb4_modifyavatar');
                $templater->register('avatarchecked', $avatarchecked);
                $facebook_avatar = $templater->render();
                $find = '<div id="avatar_yes_deps">';
                $vbulletin->templatecache['modifyavatar'] = str_replace($find, $facebook_avatar.$find, $vbulletin->templatecache['modifyavatar']);
        } else {
                eval('$maxnote .= "' . fetch_template('fbb_modifyavatar') . '";');
        }


dangerin 01-22-2010 07:27 PM

Good evening ,
I've installed all but i do not see the icons to connect in my site.
i do not have any error messages.

Why when i conect to the product by clicking tne product in prdouct manager i link to a page with smiles :
https://vborg.vbsupport.ru/misc.php?...ucthelppid=fbb

excuse me but i'm not expert and so i ask a lot of things perhaps stupid

when i lcick in the acp facebook bridge --> edit settings it appear the options menu classical of Vb4 and nothing og this wonderful priduct

BBR-APBT 01-22-2010 07:29 PM

Quote:

Originally Posted by dangerin (Post 1963714)
Good evening ,
I've installed all but i do not see the icons to connect in my site.
i do not have any error messages

I only shows if you are not logged in.

Go to settings -> left menu at the bottom FaceBook Bridge -> Click options.

dangerin 01-22-2010 07:49 PM

if i go in settings facebook bridge on the acp it appear nothing but the menu slecetion of classical options of Vb4.

Bouncer222 01-22-2010 07:55 PM

So my question a couple pages back still hasnt been answered....

My question is....

After installing this mod, does it let someone that has NEVER registered on my site, login with their facebook information?

IF YES...

Does it therefore create them a new registered user on my site based off of their facebook login information?

Someone PLEASE answer me this.

BBR-APBT 01-22-2010 08:05 PM

Quote:

Originally Posted by Bouncer222 (Post 1963737)
So my question a couple pages back still hasnt been answered....

My question is....

After installing this mod, does it let someone that has NEVER registered on my site, login with their facebook information?

IF YES...

Does it therefore create them a new registered user on my site based off of their facebook login information?

Someone PLEASE answer me this.

Yes

dangerin 01-22-2010 08:12 PM

And for my questions?
The onli field to fill were api code / secret code and id name of application of facebook created?
The strange problem is that i do not see any icon to connect with facebook and also that i can not view any information in acp cliccking edit setting in facebook bridge ( not in options product yafb )
i hope to be axplained well

If ther is some really really really good person that can explain me step by step the procedure to confgure and installa the product i will be really happy..
i've dne all that how instrutions but with configuration of facebook application i've tried with parameters and the big problem is that i do not see any icon "connecvt facebook " and editing setting of facebook bridge i do not see nothing. .
however is a GREAT MOD and the best in web...

Bouncer222 01-22-2010 08:37 PM

Quote:

Originally Posted by BBR-APBT (Post 1963742)
Yes

Is that yes for both?
Thanks!

way2xtreme 01-22-2010 08:54 PM

Quote:

Originally Posted by mrpaint (Post 1962992)
It's vBet. As I remember this modification has a vBulletin 4 version. Please make sure you are using it

Hello,

Just to let you know I have the latest version vBet (2.4.1) installed which is made for vB4. Please let me know once the conflicts have been resolved and I will try YAFB again... Thanks

WC

BBR-APBT 01-22-2010 09:08 PM

Quote:

Originally Posted by Bouncer222 (Post 1963768)
Is that yes for both?
Thanks!

Yes for both

hollosch 01-22-2010 09:46 PM

1 Attachment(s)
Hi,
i translated this Addon into german (Du-Version). Frontend is translated for now.
If there are mistakes in the file, please contact me.

Have fun !
Viel Spaß !

Bouncer222 01-22-2010 11:38 PM

Quote:

If you want to use the Account Reclamation feature, please place http://domain.com/forums/register.php?do=fbb_reclaim into Account Reclamation URL field. With other fields, it's your decision to made
Where is that? I cannot find it in the options>facebook bridge..?

Bouncer222 01-22-2010 11:50 PM

By the way, my facebook connect button doesn't appear at www.brotherhoodofgamers.com anyone know why? I did everything it said in the installation and no errors.

Zaiaku 01-23-2010 01:02 AM

Update went smooth for me.
Solves the error I was getting with the arhives.
I did notice the error BBR-APBT was reffering to and he did post a fix for it.

Anyone tried this feature yet :
3.2.3 Allow synchronizing comments from Facebook into the associated thread in vBulletin

BBR-APBT 01-23-2010 01:27 AM

Quote:

Originally Posted by Zaiaku (Post 1963983)
Update went smooth for me.
Solves the error I was getting with the arhives.
I did notice the error BBR-APBT was reffering to and he did post a fix for it.

Anyone tried this feature yet :
3.2.3 Allow synchronizing comments from Facebook into the associated thread in vBulletin

Not yet but I just released this to the public 20 minutes ago and already have people joining from facebook so I am sure it will get used. Ill post how it goes.

Bouncer222 01-23-2010 02:49 AM

Quote:

Quote:

If you want to use the Account Reclamation feature, please place http://domain.com/forums/register.php?do=fbb_reclaim into Account Reclamation URL field. With other fields, it's your decision to made
Where is that? I cannot find it in the options>facebook bridge..?
Quote:

By the way, my facebook connect button doesn't appear at www.brotherhoodofgamers.com anyone know why? I did everything it said in the installation and no errors.

Can anyone help me with these please?

Zaiaku 01-23-2010 03:54 AM

Faacebook bridge options for users is locating in the UserCP. From any forum page just go to settings and its usually at the bottom unless you have other mods or template changes that effect that same area. Members can disconnect and reconnect accounts from there.

BBR-APBT 01-23-2010 04:08 AM

Quote:

Originally Posted by Bouncer222 (Post 1964043)
Can anyone help me with these please?

You would put the url in the facebook options on the connect page in the developer settings.

dangerin 01-23-2010 07:04 AM

Quote:

Originally Posted by BBR-APBT (Post 1964002)
Not yet but I just released this to the public 20 minutes ago and already have people joining from facebook so I am sure it will get used. Ill post how it goes.

Please post how it goes because i've passed the night to try and retry but the facebook connect button do not appear and in the acp at facebook bridge clicking edit options do not appear nothin except the options menu of Vb 4.0.1.
The product is installed and the options for product are set to enabel the bridge but ..
Please anyone help me?

thank to all

You also say that is all simple and to put the url code in the facebook options.. but for inexpert people how me is better if you say exactly what url and how we find it etc etc. you have to speak how with a little baby. thanks newly

dangerin 01-23-2010 07:13 AM

Quote:

Originally Posted by Zaiaku (Post 1963983)
Update went smooth for me.
Solves the error I was getting with the arhives.
I did notice the error BBR-APBT was reffering to and he did post a fix for it.

Anyone tried this feature yet :
3.2.3 Allow synchronizing comments from Facebook into the associated thread in vBulletin

i'm happy for you..
can you explain better the configurations steps in the creation of facebook appplication and where to find parameters ?
also what we can do to appear the facebook connect in the site or to activate the edit settings of acp for facebook bridge?
thank and excuse me if i'm not really abel how us but is the first installation of a great product
how this.

ScottiG 01-23-2010 07:28 AM

Bouncer... I posted the help you need several pages back. I was having the same problem in a custom site style and it took me a while to figure out what the problem was, but check here for your answer...

https://vborg.vbsupport.ru/showpost....&postcount=205

dangerin 01-23-2010 07:48 AM

me also have the same problem of button that do not appear.
i've inserted the line

$template_hook[navbar_buttons_right]

above in te header style how your suggest but has not changed nothing.

thanks everyway for indication.
I wait for other suggest..
can it be better to unistall and reinstall all the product?
all the files must be removed manually from server or is automatic with unistall?

mrpaint 01-23-2010 09:51 AM

@dangerin: Please post screenshots for: AdminCP (mostly the left navigation area), Forum Home (mostly the navbar section), UserCP (left navigation again). Please note that the connection button doesn't show up with logged in users

@Zaiaku: You can test it on my demo board. Please note that if the Facebook user who commented on one of the published post and his/her comments get synchronized into forums, the time he/she try to register (or connect the Facebook Account with an forum account), all the post will be updated to associate with the forum account. ;)

@BBR-APBT: Thank you for the fix :D Brilliant!

gyaronn 01-23-2010 09:53 AM

i get this error when i pres the user name of any one
Quote:

Fatal error: Call to a member function query_first_slave() on a non-object in /home/fmsasorg/public_html/forums1/includes/class_profileblock.php(290) : eval()'d code on line 61


All times are GMT. The time now is 08:07 AM.

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.02274 seconds
  • Memory Usage 1,846KB
  • 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
  • (4)bbcode_code_printable
  • (20)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
  • (40)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