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)

stevemoy 02-24-2010 02:56 PM

Quote:

Originally Posted by vbreal (Post 1990417)
just did a server change and i am now getting this error with new registrants.

Parse error: syntax error, unexpected T_VARIABLE, expecting ';' in /home/mysite/public_html/forum/fbb/runbox_hook_register_addmember_complete.php on line 5


going to delete and reinstall

Just change line 5 of that file from:

Code:

for ($i = 0; $i <8 $i++) {

To:

Code:

for ($i = 0; $i <8; $i++) {

I had to do that too; I guess most other folks aren't hitting this file for some reason?

BBR-APBT 02-24-2010 03:19 PM

Quote:

Originally Posted by stevemoy (Post 1990451)
Just change line 5 of that file from:

Code:

for ($i = 0; $i <8 $i++) {

To:

Code:

for ($i = 0; $i <8; $i++) {

I had to do that too; I guess most other folks aren't hitting this file for some reason?

Or just disable the plugin for this file as it is not used. I posted about it in the thread several times.

pierrefitchvb 02-24-2010 03:33 PM

when i still it ... and click connect i get some funky weird txt in a white box what did i do wrong

The requested URL /xd_receiver.htm?fb_login&fname=_opener&guid=0.4214 3200035206974&session=%7B%22se ssion_key%22%3A%223.uAQHYlqHkXZa50pUwdPdog__.3600. 1267002000-100000654804705%22%2C%22uid%22%3A100000654804705%2 C%22expires%22%3A1267002000%2C %22secret%22%3A%22z7OX7y5VJaj2v4ERXr6f3g__%22%2C%2 2base_domain%22%3A%22g rum.com%22%2C%22sig%22%3A%22d23cd68b97212db41990d9 8d5d1b3c68%22%7D was not found on this server.

AevarKvaran 02-24-2010 05:48 PM

I am kinda new to vbulletin so Im not sure if this applies to yafb or vbulletin. I am trying to disable autoredirection after registering a new account with facebook.

More precicely after this message:

"
Thank you, [Name]. Your registration is now complete.

You may now proceed to edit your Profile in order to fill in additional personal details about yourself, or you could modify your Options to customize your browsing experience of this site. If you would rather do these things later, you can do so by following the links around the site to your User Control Panel.

Alternatively, you can simply go back to the Forums and start posting in threads.

"

What I would like to happen is that the user stays on this message until he takes action.
Any suggestions?

BBR-APBT 02-24-2010 06:37 PM

Quote:

Originally Posted by pierrefitchvb (Post 1990482)
when i still it ... and click connect i get some funky weird txt in a white box what did i do wrong

The requested URL /xd_receiver.htm?fb_login&fname=_opener&guid=0.4214 3200035206974&session=%7B%22se ssion_key%22%3A%223.uAQHYlqHkXZa50pUwdPdog__.3600. 1267002000-100000654804705%22%2C%22uid%22%3A100000654804705%2 C%22expires%22%3A1267002000%2C %22secret%22%3A%22z7OX7y5VJaj2v4ERXr6f3g__%22%2C%2 2base_domain%22%3A%22g rum.com%22%2C%22sig%22%3A%22d23cd68b97212db41990d9 8d5d1b3c68%22%7D was not found on this server.

Upload the files to the correct place. Re-upload all the files and follow the directions.
xd_receiver.htm should be in your forum root directory.

vbreal 02-25-2010 04:08 AM

Quote:

Originally Posted by stevemoy (Post 1990451)
Just change line 5 of that file from:

Code:

for ($i = 0; $i <8 $i++) {
To:

Code:

for ($i = 0; $i <8; $i++) {
I had to do that too; I guess most other folks aren't hitting this file for some reason?

yeah that worked, much appreciated

PI Guy 02-25-2010 09:06 AM

Would love to make this work but so far no answers to my questions. :(

doubleclick 02-25-2010 10:02 AM

I was getting this error with the previous version. I uninstalled it, removed everything, and did a fresh install of 3.2

Still getting the error many times a day:
================================

Database error in vBulletin 3.7.3:

Invalid SQL:

SELECT picture.pictureid, picture.userid, picture.extension, picture.idhash, picture.state, picture.fbbypass,
albumpicture.dateline, album.state AS albumstate, profileblockprivacy.requirement AS privacy_requirement,
picture.filedata, picture.filesize
FROM vbalbumpicture AS albumpicture
INNER JOIN vbpicture AS picture ON (albumpicture.pictureid = picture.pictureid)
INNER JOIN vbalbum AS album ON (albumpicture.albumid = album.albumid)
LEFT JOIN vbprofileblockprivacy AS profileblockprivacy ON
(profileblockprivacy.userid = picture.userid AND profileblockprivacy.blockid = 'albums')
WHERE albumpicture.albumid = 35 AND albumpicture.pictureid = 146;

MySQL Error : Table 'xyxz_forum.vbprofileblockprivacy' doesn't exist
Error Number : 1146
Request Date : Thursday, February 25th 2010 @ 05:27:03 AM
Error Date : Thursday, February 25th 2010 @ 05:27:03 AM
Script : http://www.mysite.com/forum/facebook...&pictureid=146
Referrer :
IP Address : 66.220.146.246
Username : Unregistered
Classname : vB_Database
MySQL Version :
================================

What do I need to do to fix this?

Thanks,
dc

dangerin 02-25-2010 10:12 AM

But you do not have the version 4 of Vb. this mod is created for the 4 because for the later versions it do not work more.
This is what i'd understood.
Bye

is_it_me 02-25-2010 10:33 AM

Seems to work OK for me using vb4.02.

uniquewebmaster 02-25-2010 11:32 AM

Quote:

Originally Posted by is_it_me (Post 1991133)
Seems to work OK for me using vb4.02.

Are you able to send messages to facebook or are you getting a not permitted error?

Digital Jedi 02-25-2010 02:10 PM

Quote:

Originally Posted by PI Guy (Post 1991078)
Would love to make this work but so far no answers to my questions. :(

I looked back at your last post, and it wasn't really a question.

Quote:

Originally Posted by PI Guy (Post 1988668)
When I try to import the xml file I get the following error

The following dependencies were not met:
This product is not compatible with version 4.1.22 of MySQL. (Compatible starting with 5.0)

That's kind of self explanatory. Your version of MySQL is too old. You need to get your host to upgrade it.

Digital Jedi 02-25-2010 02:16 PM

Quote:

Originally Posted by doubleclick (Post 1991109)
I was getting this error with the previous version. I uninstalled it, removed everything, and did a fresh install of 3.2

Still getting the error many times a day:
================================

Database error in vBulletin 3.7.3:

Invalid SQL:

SELECT picture.pictureid, picture.userid, picture.extension, picture.idhash, picture.state, picture.fbbypass,
albumpicture.dateline, album.state AS albumstate, profileblockprivacy.requirement AS privacy_requirement,
picture.filedata, picture.filesize
FROM vbalbumpicture AS albumpicture
INNER JOIN vbpicture AS picture ON (albumpicture.pictureid = picture.pictureid)
INNER JOIN vbalbum AS album ON (albumpicture.albumid = album.albumid)
LEFT JOIN vbprofileblockprivacy AS profileblockprivacy ON
(profileblockprivacy.userid = picture.userid AND profileblockprivacy.blockid = 'albums')
WHERE albumpicture.albumid = 35 AND albumpicture.pictureid = 146;

MySQL Error : Table 'xyxz_forum.vbprofileblockprivacy' doesn't exist
Error Number : 1146
Request Date : Thursday, February 25th 2010 @ 05:27:03 AM
Error Date : Thursday, February 25th 2010 @ 05:27:03 AM
Script : http://www.mysite.com/forum/facebook...&pictureid=146
Referrer :
IP Address : 66.220.146.246
Username : Unregistered
Classname : vB_Database
MySQL Version :
================================

What do I need to do to fix this?

Thanks,
dc

facebook.php?do=album? I wasn't aware it even did that. Is this something related to the picture upload of your Fans list?

doubleclick 02-25-2010 07:07 PM

Quote:

Originally Posted by Digital Jedi (Post 1991284)
facebook.php?do=album? I wasn't aware it even did that. Is this something related to the picture upload of your Fans list?

I don't know, to tell you the truth. I just went into the admincp and set the Fans List to No. I'll let you know tomorrow if the error message continues after that.

PI Guy 02-26-2010 07:49 AM

Quote:

Originally Posted by Digital Jedi (Post 1991279)
That's kind of self explanatory. Your version of MySQL is too old. You need to get your host to upgrade it.

It seems that although I have mySQL5 for some reason the database on that particular forum is MySQL4.

Thanks for that Digital Jedi, I will attempt to update it and run this again.

solidlink 02-26-2010 01:51 PM

im getting a broken gif for this at the bottom right........... can someone tell me how do i fix it ?

anyone getting same problem?

AevarKvaran 02-26-2010 03:17 PM

I upgraded to the newest YAFBB and vbulletin 4.02 path level 1 and it fixed the internet explorer issue.
Although there was a semicolon missing in line 5 of runbox_hook_register_addmember_complete.php which apperantly ran after facebook registration.

RedDevil 02-27-2010 03:27 AM

Just installed and tested this with not much luck.

I did have another facebook interface prior to moving my server last year, which would not work after the move so scrapped it.

Installed this one hoping this would work - nope

I am getting just error 500 internal server error, up to the final connection everything seems to work fine, I created an account through the interface, as it logs in the error appears, I did ask my host if they knew what the error was but they had no clue, I was wondering if anyone has any idea here.

I have currently disabled this.

is_it_me 02-27-2010 09:24 AM

Quote:

Originally Posted by uniquewebmaster (Post 1991179)
Are you able to send messages to facebook or are you getting a not permitted error?

Yep able to send messages to facebook from the VB test site I am running.

I am upgrading the 'live' site this weekend, so I'll be re-installing this - I hope it still works.

saghir 02-27-2010 12:01 PM

instaalled................!! thanx

but its not displaying anywhere

doubleclick 02-27-2010 04:17 PM

Quote:

Originally Posted by AevarKvaran (Post 1992062)
I upgraded to the newest YAFBB and vbulletin 4.02 path level 1 and it fixed the internet explorer issue.
Although there was a semicolon missing in line 5 of runbox_hook_register_addmember_complete.php which apperantly ran after facebook registration.

I had the same issue. For those as unfamiliar with coding as I am, here's where I put the semi-colon after some trial and error:

for ($i = 0; $i <8; $i++) {

Kerryanne 02-27-2010 05:15 PM

Have uploaded and installed etc

When i go to connect facebook, and then try and log into the site, it say i don't have a username/ email under than name and then take sign up!

What has gone wrong ??

Thanks

Digital Jedi 02-27-2010 05:52 PM

When you try to log into Facebook? Then you must be putting in the wrong Facebook information. This creates or bridges a vB account with a Facebook account, but it doesn't create a Facebook account for you. You have to have one already.

fogjuice 02-27-2010 06:07 PM

Is there a version of this with better English? The grammar and general writing of all text display with this mod is just brutal.

doubleclick 02-27-2010 08:00 PM

Quote:

Originally Posted by doubleclick (Post 1991460)
I don't know, to tell you the truth. I just went into the admincp and set the Fans List to No. I'll let you know tomorrow if the error message continues after that.

That eliminated the error.

doubleclick 02-27-2010 08:02 PM

With this latest upgrade, it seems to have removed my ibroarcade controls from the admincp.

Not sure what to do about this. Import the Ibproarcade xml file again?

Digital Jedi 02-28-2010 03:04 AM

Shouldn't have anything to do with it. Just try re-uploading your cpnav_arcade.xml to the includes/xml folder.

PI Guy 02-28-2010 09:33 PM

Quote:

Originally Posted by Digital Jedi (Post 1991279)
That's kind of self explanatory. Your version of MySQL is too old. You need to get your host to upgrade it.

Ok I updated the MySQL and the importing the xml file worked. However am having problems with the facebook app bit

Quote:

And go to the Connect tab, fill your forum url into Connect URL, fill your domain into Base Domain.
2.*.5. You are done with required information. But you can go through other tab and enter more detail about your forum, your application.
what do I put in the connect tab? I put it in as follows (is that correct?);

The Facebook bridge doesn't appear on the forum. :( I don't know why.

silvan 02-28-2010 10:14 PM

Hey - great plugin. I managed to get it all up and running, but when I log in and register via Facebook Connect after I've filled out the details, I get an error screen. Any idea if I made a mistake along the way?

Quote:

Parse error: syntax error, unexpected T_VARIABLE, expecting ';' in /var/sites/w/wearepopslags.com/public_html/community/fbb/runbox_hook_register_addmember_complete.php on line 5

PI Guy 02-28-2010 11:33 PM

<font size="3">SUCCESS!</font> It works it appears when I am logged out. If I am logged in it disappears. Is it possible to have it as a tab on the main Nav bar or under the log in section?

CoZmicShReddeR 03-01-2010 12:02 AM

Quote:

Originally Posted by iguano (Post 1987694)
If i turn on che mod i can't modificate my avatar, i see only a white page with this code above the logo:

Parse error: syntax error, unexpected '.' in /home/*****/public_html/forum/includes/class_core.php(4010) : eval()'d code on line 152

someone can help me? ( second time i ask this )


Quote:

Originally Posted by iguano (Post 1987696)
solved with this option:

Yeah that was driving me mad!!!!!!!

Thanks for the fix!

The issue is I couldn't access my edit avatar until I disabled the cache from facebook...

hatchet 03-01-2010 02:00 AM

Well done. Was also wondering if an option could be added that posted to a page instead of my profile in FB or both for that matter? And also, if there is any customization that can be done to what is posted, maybe automatically include the thread title? Just some thoughts.

vbreal 03-01-2010 08:20 PM

short stories are posting to my wall like this. when there is a url.

Quote:


TigerText: The iPhone texting app for cheaters
Even if you’re not a billionaire athlete, sometimes it would be great to have text messages go away. A new iPhone application, TigerText (http://click.linksynergy.com/fs-bin/...rtnerId%253D30), promises to delete those messages after a set time. TigerText is reportedly not named after that golfing guy and it doesn’t really send text messages exactly. Instead, senders and recipients have to have the app installed and the messages reside on TigerText’s servers. From there, users can set a time limit on ...
See More


stevemoy 03-01-2010 08:50 PM

Does anyone know how to set/modify/update this plugin to sync Facebook avatars automatically upon user registration? I have the FB avatars working on my site, but users first have to go to their avatar settings and manually choose to sync with FB in order for them to appear.

I can't tell if this behavior is supposed to happen or not - it makes sense to me that the initial avatar sync would happen on registration, but from what I can tell by looking at the code it doesn't seem to be the case. I've looked at many of the posts in this thread about avatar problems, but haven't found anything that matches this issue (which I'm not sure is really an issue or just an additional customization that I want to do).

All of the avatar setup stuff seems to be taking place in hook_profile_updateavatar_start.php, which looks like it is only called when a user updates their avatar settings. I'd like to get the sync avatar setting turned on by default for newly registered users from Facebook - I'm not sure if there's someplace in hook_register_start.php or in the register template I can trigger this, or if I should just copy the relevant code from updateavatar_start instead.

I could probably figure it out given the time, but I'm just wondering if anyone's already done this (or if I'm missing something obvious in the settings somewhere).

Thanks,
Steve

Anas User 03-02-2010 09:43 AM

Hello,

I installed the mod but I got the following problems:

- When trying to connect to facebook while logged in from the profile settings, I get the following message:
Quote:

Sorry, we can NOT proceed your request
It looks like there are some problem in communication to/from Facebook. Please contact Administrators for more detail...
- Also, when trying to log in using face book as a normal visitor, I am redirected to registration and there, I am asked to enter a password and an email. After submitting the info, it reloads the page and asks me to retype the info and that happens everytime I press submit.

Any solution?

doubleclick 03-02-2010 10:31 AM

Quote:

Originally Posted by Digital Jedi (Post 1993387)
Shouldn't have anything to do with it. Just try re-uploading your cpnav_arcade.xml to the includes/xml folder.

Yep. Thanks DJ!

dc

gteh 03-02-2010 01:30 PM

[solved] nevermind. according to http://wiki.developers.facebook.com/...nect_Tutorial1 you just use the root URL for the domain

Alright... stupid question. Ive read all 38 pages of this thread and can't seem to find the answer.

what is my 'Connect URL' supposed to be?? I've tried using my forum URL but I get validation errors, and no where in the instructions for this mod does it state what to enter in that field other than to , 'fill in your connect URL'

I watched the video, and according to the video it says to use my domain name.

I filled in http://mydomain.com into the 'Connect URL' field, filled out the rest as per the video, and when I click the fb connect button on my forum and try to log in with my facebook account I get this error:

Code:

Configuration errors:
To fix this error, please set your Connect URL in the application settings editor. Once it has been set, users will be redirected to that URL instead of this page after logging in

What am I doing wrong?

thx

Digital Jedi 03-02-2010 04:37 PM

Quote:

Originally Posted by PI Guy (Post 1994040)
Ok I updated the MySQL and the importing the xml file worked. However am having problems with the facebook app bit


what do I put in the connect tab? I put it in as follows (is that correct?);



The Facebook bridge doesn't appear on the forum. :( I don't know why.

Be sure to follow the video tutorial. She demos exactly how everything is supposed to appear in those fields.

kall 03-02-2010 04:56 PM

Quote:

Originally Posted by Anas User (Post 1995115)
Hello,

I installed the mod but I got the following problems:

- When trying to connect to facebook while logged in from the profile settings, I get the following message:


- Also, when trying to log in using face book as a normal visitor, I am redirected to registration and there, I am asked to enter a password and an email. After submitting the info, it reloads the page and asks me to retype the info and that happens everytime I press submit.

Any solution?

That's a Facebook error. Their Administrators are probably more likely to answer you if you ask them on Facebook... it's not likely they're reading this thread.

Regarding the other part - already-registered people have to set up the Connect in their UserCP/Settings before trying to connect.

ErrorJustin 03-03-2010 01:38 AM

Hello! I installed this plugin, but when I visit my forum as a guest and click "connect with facebook" I get presented with two options: Register, or Login Now. However, clicking "Login Now" just directs me to the registration page anyway.

The whole reason I am hoping to use this Facebook Connect mod on my forum is so people DON'T HAVE to register. I want them to be able to use their FB credentials to post. Is that not possible with this mod?

What I was hoping for was something similar to what http://forums.zynga.com/ has. When users select "connect with Facebook" and then follow through, the only thing they have to enter is a forum nickname for themselves - they never need to give up an email address, etc.

Is that how this mod is supposed to function and it isn't working properly? Is there another mod that accomplishes this?

4.0.2 FYI.


All times are GMT. The time now is 08: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.02337 seconds
  • Memory Usage 1,868KB
  • 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
  • (7)bbcode_code_printable
  • (24)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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