vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Integration with vBulletin - Facebook Connect - Allow your users to login with their Facebook account (for 3.8) (https://vborg.vbsupport.ru/showthread.php?t=203064)

asiaphoto 06-21-2009 02:14 AM

thanks for the reply, wolfstream.

for (3) & (4), i suppose the best option for me then is to manually send a facebook message to them with my own facebook account and invite them to join my forum's facebook group?

-------

for everyone,

if you have installed this mod, could you let me have the link to your forum so i may visit to see how well it's doing?

rtyagis 06-21-2009 03:25 AM

Thanks for this mod!

bmckinley 06-21-2009 05:36 AM

Loaded, but now when someone attempts to post a 'Reply', here's what we get:

The following errors occurred with your submission:
The message you have entered is too short. Please lengthen your message to at least 10 characters.

I doubled checked the newreply template and everything appears to be correct. However, I am new to all this, so I may have missed something.

Need a little help...

Nytol 06-21-2009 09:06 AM

Works
Group Permissions: Unregistered / Not Logged In
Can View Forum: Yes

Guests can click the Facebook Connect button at the top-right. Works perfectly.

Problem
Group Permissions: Unregistered / Not Logged In
Can View Forum: No

Guests see the "The administrator may have required you to register before you can view this page." message. Good, that's what I want. But clicking the Facebook Connect button does nothing on this page. It seems to just refresh the page. :confused:

I don't want Guests to see my forums until they FB Connect. Any ideas?

busybeeburns 06-21-2009 09:21 AM

Quote:

Originally Posted by Digital Jedi (Post 1825525)
Looking over some of those issues mentioned in that post, I don't know if I totally agree with all of them.



Well, this much I can agree with. However, this is nothing unique to this mod. Every mod on this site suffers from that one drawback of free thrid-party modifications.


I think the only issue here is if the proxy email address no longer functions, which if I'm not mistaken, is soley the process of the Facebook Developer application. I'm just guessing here, but I would think as long you keep the application active in your Facebook Developer account, this should still always work.



I don't understand this one. How are the users able to post, or even exist, if they're not in the database?


1) Most plugins are not as important as the login stage. I'd rather have a forum with no plugins than a forum with 100 plugins but nobody able to log in to enjoy them.

2) Guessing is not helpful!

3) We've established already that not all information is stored in the database. Passwords aren't. email addresses aren't. All messages directly to the user will go through fB. The facility to mass email or mass PM through vB as far as I have tested is a casualty of this plugin.

wolfstream 06-21-2009 09:44 AM

Quote:

Originally Posted by Nytol (Post 1833877)
I don't want Guests to see my forums until they FB Connect. Any ideas?

I just went through this with a client actually last night.
Go into admincp, modify the guest permissions
Everything can be set to no, that's fine, EXCEPT the first option:
Can View Forum

This one option needs to be set to yes. If you do this, you will allow the guest users the basic functionality of your forum, nothing more. They will see the forum, but no forums inside of it. They will see "who's online", they will see the option to register, login, and see the fbconnect button, as well as any navbar links you haven't expressly hidden from guests.

Nytol 06-21-2009 10:32 AM

Quote:

Originally Posted by wolfstream (Post 1833902)
I just went through this with a client actually last night.
Go into admincp, modify the guest permissions
Everything can be set to no, that's fine, EXCEPT the first option:
Can View Forum

This one option needs to be set to yes. If you do this, you will allow the guest users the basic functionality of your forum, nothing more. They will see the forum, but no forums inside of it. They will see "who's online", they will see the option to register, login, and see the fbconnect button, as well as any navbar links you haven't expressly hidden from guests.

Yeah, I thought as much. It's a shame, but still a great plug-in.

I really don't want guests to see anything. I know I can edit permissions to show a forum with no categories, but that is less than ideal. :)

hydn 06-21-2009 01:13 PM

I've been reporting this prob for 2 months and other have posted also. Still no reply as to cause or solution.

I've even sent the $25 to developer and not even a response.

I have not done any of the optional template edits. Yet this error is seen when clicking any of the showthread pages.

Any ideas?

Quote:

query_first(" SELECT fbuid FROM " . TABLE_PREFIX . "fbuser WHERE userid = " . $userid . " LIMIT 1 "); return intval($user['fbuid']); } function fetch_fbuser_info($query) { require_once(DIR . '/includes/facebook/facebook.php'); global $vbulletin, $db; $fbusers = $db->query_read($query); $fbuids = ""; $vbuids = array(); while ($fbuser = $db->fetch_array($fbusers)) { if ($fbuser['fbuid']) { $fbuids .= $fbuser['fbuid'] . ","; $vbuids[] = $fbuser['userid']; } } $fbuids = rtrim($fbuids, ','); $fbuserinfo = $vbulletin->session->vars['fbuserinfo']; if ($vbulletin->facebook == null) $vbulletin->facebook = new Facebook($vbulletin->options['fbconnect_apikey'], $vbulletin->options['fbconnect_secret']); try { $fbuser = $vbulletin->facebook->api_client->users_getInfo($fbuids, 'name, first_name, last_name, affiliations, pic, pic_small, pic_square'); for ($i = 0; $i < count($fbuser); $i++) $fbuserinfo[$vbuids[$i]] = $fbuser[$i]; $vbulletin->session->set('fbuserinfo', $fbuserinfo); } catch(FacebookRestClientException $ex) { } //print_r($vbulletin->session->vars['fbuserinfo']); } function set_fb_data(&$target, $userid = '', $profilefield = false) { require_once(DIR . '/includes/facebook/facebook.php'); global $vbulletin, $db, $show, $vbphrase, $fb_field_map, $avatarurl; if ($userid) $target['userid'] = $userid; if ($vbulletin->options['fbconnect_importdata'] && $target['userid'] != '') { $fbuserinfo = $vbulletin->session->vars['fbuserinfo']; if (!is_array($fbuserinfo[$target['userid']])) { $fbuid = get_fb_uid($target['userid']); if ($fbuid) { if ($vbulletin->facebook == null) $vbulletin->facebook = new Facebook($vbulletin->options['fbconnect_apikey'], $vbulletin->options['fbconnect_secret']); try { $fbuser = $vbulletin->facebook->api_client->users_getInfo($fbuid, 'name, first_name, last_name, affiliations, pic, pic_small, pic_square'); $fbuserinfo[$target['userid']] = $fbuser[0]; $vbulletin->session->set('fbuserinfo', $fbuserinfo); } catch(FacebookRestClientException $ex) { } } } if (is_array($fbuserinfo[$target['userid']])) { if (!is_array($fb_field_map)) { $fb_field_map = array(); $profile_fields = $db->query_read(" SELECT * FROM " . TABLE_PREFIX . "fbdatamap "); while ($field = $db->fetch_array($profile_fields)) { $fb_field_map[$field['vbfield']] = $field['fbfield']; } } $not_profile_field = array('avatarurl', 'profilepicurl'); foreach ($fb_field_map as $vbfield => $fbfield) { if ($profilefield && $target['value'] && $target['value'] != $vbphrase['n_a']) continue; if ($target[$vbfield] && pathinfo($target[$vbfield], PATHINFO_BASENAME) != 'unknown.gif') continue; if ($fbfield == 'affiliations') { if (is_array($fbuserinfo[$target['userid']][$fbfield])) { foreach ($fbuserinfo[$target['userid']][$fbfield] as $network) { if ($network['type'] == 'region') { $fbuserinfo[$target['userid']][$fbfield] = $network['name']; break; } } } } if ($profilefield) { if ($vbfield == ('field' . $target['profilefieldid'])) { $target['value'] = $fbuserinfo[$target['userid']][$fbfield]; break; } } else $target[$vbfield] = $fbuserinfo[$target['userid']][$fbfield]; } if ($target['avatarurl']) { $avatarurl = $target['avatarurl']; $show['avatar'] = true; } } } } function print_datamap_row($vbdata, $fbdata, $vbselected = "", $fbselected = "") { global $vbphrase; echo ' '; if ($vbselected) echo '[ '.$vbphrase['delete'].' ]'; echo ' '; }

hydn 06-21-2009 01:51 PM

Same prob.

Quote:

Originally Posted by cngrock (Post 1769451)
Hi

When data mapping I get this show, and it also shows when loading the posts:

query_first(" SELECT fbuid FROM " . TABLE_PREFIX . "fbuser WHERE userid = " . $userid . " LIMIT 1 "); return intval($user['fbuid']); } function fetch_fbuser_info($query) { require_once(DIR . '/includes/facebook/facebook.php'); global $vbulletin, $db; $fbusers = $db->query_read($query); $fbuids = ""; $vbuids = array(); while ($fbuser = $db->fetch_array($fbusers)) { if ($fbuser['fbuid']) { $fbuids .= $fbuser['fbuid'] . ","; $vbuids[] = $fbuser['userid']; } } $fbuids = rtrim($fbuids, ','); $fbuserinfo = $vbulletin->session->vars['fbuserinfo']; if ($vbulletin->facebook == null) $vbulletin->facebook = new Facebook($vbulletin->options['fbconnect_apikey'], $vbulletin->options['fbconnect_secret']); try { $fbuser = $vbulletin->facebook->api_client->users_getInfo($fbuids, 'name, first_name, last_name, affiliations, pic, pic_small, pic_square'); for ($i = 0; $i < count($fbuser); $i++) $fbuserinfo[$vbuids[$i]] = $fbuser[$i]; $vbulletin->session->set('fbuserinfo', $fbuserinfo); } catch(FacebookRestClientException $ex) { } //print_r($vbulletin->session->vars['fbuserinfo']); } function set_fb_data(&$target, $userid = '', $profilefield = false) { require_once(DIR . '/includes/facebook/facebook.php'); global $vbulletin, $db, $show, $vbphrase, $fb_field_map, $avatarurl; if ($userid) $target['userid'] = $userid; if ($vbulletin->options['fbconnect_importdata'] && $target['userid'] != '') { $fbuserinfo = $vbulletin->session->vars['fbuserinfo']; if (!is_array($fbuserinfo[$target['userid']])) { $fbuid = get_fb_uid($target['userid']); if ($fbuid) { if ($vbulletin->facebook == null) $vbulletin->facebook = new Facebook($vbulletin->options['fbconnect_apikey'], $vbulletin->options['fbconnect_secret']); try { $fbuser = $vbulletin->facebook->api_client->users_getInfo($fbuid, 'name, first_name, last_name, affiliations, pic, pic_small, pic_square'); $fbuserinfo[$target['userid']] = $fbuser[0]; $vbulletin->session->set('fbuserinfo', $fbuserinfo); } catch(FacebookRestClientException $ex) { } } } if (is_array($fbuserinfo[$target['userid']])) { if (!is_array($fb_field_map)) { $fb_field_map = array(); $profile_fields = $db->query_read(" SELECT * FROM " . TABLE_PREFIX . "fbdatamap "); while ($field = $db->fetch_array($profile_fields)) { $fb_field_map[$field['vbfield']] = $field['fbfield']; } } $not_profile_field = array('avatarurl', 'profilepicurl'); foreach ($fb_field_map as $vbfield => $fbfield) { if ($profilefield && $target['value'] && $target['value'] != $vbphrase['n_a']) continue; if ($target[$vbfield] && pathinfo($target[$vbfield], PATHINFO_BASENAME) != 'unknown.gif') continue; if ($fbfield == 'affiliations') { if (is_array($fbuserinfo[$target['userid']][$fbfield])) { foreach ($fbuserinfo[$target['userid']][$fbfield] as $network) { if ($network['type'] == 'region') { $fbuserinfo[$target['userid']][$fbfield] = $network['name']; break; } } } } if ($profilefield) { if ($vbfield == ('field' . $target['profilefieldid'])) { $target['value'] = $fbuserinfo[$target['userid']][$fbfield]; break; } } else $target[$vbfield] = $fbuserinfo[$target['userid']][$fbfield]; } if ($target['avatarurl']) { $avatarurl = $target['avatarurl']; $show['avatar'] = true; } } } } function print_datamap_row($vbdata, $fbdata, $vbselected = "", $fbselected = "") { global $vbphrase; echo ' '; if ($vbselected) echo '[ '.$vbphrase['delete'].' ]'; echo ' '; }


Any ideas on how to fix.

when I disable the facebook connect - the forums work fine.

Cheers


dabollicks 06-21-2009 03:05 PM

Quote:

Originally Posted by bmckinley (Post 1833812)
Loaded, but now when someone attempts to post a 'Reply', here's what we get:

The following errors occurred with your submission:
The message you have entered is too short. Please lengthen your message to at least 10 characters.


I doubled checked the newreply template and everything appears to be correct. However, I am new to all this, so I may have missed something.

Need a little help...

I too am getting this error, when someone who is using the FB connect login. Ive checked and double checked everything and cant figure this out. I have upgraded to 3.8.3 this morning, would that have anything to do with it?

delijaKNIN 06-21-2009 08:18 PM

I have this problem
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home2/xxxxx/public_html/xxx/includes/facebook/facebook.php on line 38

wolfstream 06-21-2009 09:03 PM

Quote:

Originally Posted by dabollicks (Post 1834076)
I too am getting this error, when someone who is using the FB connect login. Ive checked and double checked everything and cant figure this out. I have upgraded to 3.8.3 this morning, would that have anything to do with it?

This isn't necessarily a plugin problem, it happens when you're using the Enhanced message editor. Go to your profile, select the standard editor, not the enhanced one.

Quote:

Originally Posted by delijaKNIN (Post 1834314)
I have this problem
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home2/xxxxx/public_html/xxx/includes/facebook/facebook.php on line 38

This happens when you don't follow the instructions, specifically regarding the version of php necessary. This mod won't work with php4 installed on your server.

delijaKNIN 06-21-2009 09:19 PM

big tx

Ghostspy 06-21-2009 09:20 PM

vBulletin Message
You have been banned for the following reason:
No reason was specified.

Date the ban will be lifted: Never


I get that whenever i try to login with my facebook account why is this.

bmckinley 06-22-2009 01:10 AM

T Y wolfstream, I will see if that helps. I did get it to work by reverting back on the SHOWTHREAD template, without switching out of the enhanced editor, so do you think I just did something wrong and didn't (or couldn't) find it?

wolfstream 06-22-2009 01:58 AM

The showthread template has nothing to do with the thread posting. Like I said, this error isn't unheard of, I run across it every once in a while myself with that specific editor, which is why I don't use it any longer

mykkal 06-22-2009 02:11 AM

Wolfstream...

Hello there. Have you recieved my private messages? I sent more then a few.

DNG 06-22-2009 10:22 AM

nice add-on ;)

hydn 06-22-2009 01:43 PM

I have the same problem as below. Any idea guys?

Quote:

Originally Posted by cngrock View Post

Hi

When data mapping I get this show, and it also shows when loading the posts:

query_first(" SELECT fbuid FROM " . TABLE_PREFIX . "fbuser WHERE userid = " . $userid . " LIMIT 1 "); return intval($user['fbuid']); } function fetch_fbuser_info($query) { require_once(DIR . '/includes/facebook/facebook.php'); global $vbulletin, $db; $fbusers = $db->query_read($query); $fbuids = ""; $vbuids = array(); while ($fbuser = $db->fetch_array($fbusers)) { if ($fbuser['fbuid']) { $fbuids .= $fbuser['fbuid'] . ","; $vbuids[] = $fbuser['userid']; } } $fbuids = rtrim($fbuids, ','); $fbuserinfo = $vbulletin->session->vars['fbuserinfo']; if ($vbulletin->facebook == null) $vbulletin->facebook = new Facebook($vbulletin->options['fbconnect_apikey'], $vbulletin->options['fbconnect_secret']); try { $fbuser = $vbulletin->facebook->api_client->users_getInfo($fbuids, 'name, first_name, last_name, affiliations, pic, pic_small, pic_square'); for ($i = 0; $i < count($fbuser); $i++) $fbuserinfo[$vbuids[$i]] = $fbuser[$i]; $vbulletin->session->set('fbuserinfo', $fbuserinfo); } catch(FacebookRestClientException $ex) { } //print_r($vbulletin->session->vars['fbuserinfo']); } function set_fb_data(&$target, $userid = '', $profilefield = false) { require_once(DIR . '/includes/facebook/facebook.php'); global $vbulletin, $db, $show, $vbphrase, $fb_field_map, $avatarurl; if ($userid) $target['userid'] = $userid; if ($vbulletin->options['fbconnect_importdata'] && $target['userid'] != '') { $fbuserinfo = $vbulletin->session->vars['fbuserinfo']; if (!is_array($fbuserinfo[$target['userid']])) { $fbuid = get_fb_uid($target['userid']); if ($fbuid) { if ($vbulletin->facebook == null) $vbulletin->facebook = new Facebook($vbulletin->options['fbconnect_apikey'], $vbulletin->options['fbconnect_secret']); try { $fbuser = $vbulletin->facebook->api_client->users_getInfo($fbuid, 'name, first_name, last_name, affiliations, pic, pic_small, pic_square'); $fbuserinfo[$target['userid']] = $fbuser[0]; $vbulletin->session->set('fbuserinfo', $fbuserinfo); } catch(FacebookRestClientException $ex) { } } } if (is_array($fbuserinfo[$target['userid']])) { if (!is_array($fb_field_map)) { $fb_field_map = array(); $profile_fields = $db->query_read(" SELECT * FROM " . TABLE_PREFIX . "fbdatamap "); while ($field = $db->fetch_array($profile_fields)) { $fb_field_map[$field['vbfield']] = $field['fbfield']; } } $not_profile_field = array('avatarurl', 'profilepicurl'); foreach ($fb_field_map as $vbfield => $fbfield) { if ($profilefield && $target['value'] && $target['value'] != $vbphrase['n_a']) continue; if ($target[$vbfield] && pathinfo($target[$vbfield], PATHINFO_BASENAME) != 'unknown.gif') continue; if ($fbfield == 'affiliations') { if (is_array($fbuserinfo[$target['userid']][$fbfield])) { foreach ($fbuserinfo[$target['userid']][$fbfield] as $network) { if ($network['type'] == 'region') { $fbuserinfo[$target['userid']][$fbfield] = $network['name']; break; } } } } if ($profilefield) { if ($vbfield == ('field' . $target['profilefieldid'])) { $target['value'] = $fbuserinfo[$target['userid']][$fbfield]; break; } } else $target[$vbfield] = $fbuserinfo[$target['userid']][$fbfield]; } if ($target['avatarurl']) { $avatarurl = $target['avatarurl']; $show['avatar'] = true; } } } } function print_datamap_row($vbdata, $fbdata, $vbselected = "", $fbselected = "") { global $vbphrase; echo ' '; if ($vbselected) echo '[ '.$vbphrase['delete'].' ]'; echo ' '; }


Any ideas on how to fix.

when I disable the facebook connect - the forums work fine.

Cheers

Quote:

Originally Posted by Mr. Brian (Post 1814448)
Are u running your forum on sub domain?


Raptor 06-23-2009 02:05 AM

makes no sense to me - i see absolutley no mention in the facebook developer area asking for a Callback URL after you setup the app. I am a little drunk tho so maybe thats the reason - but i looked REALLY hard :p

bmckinley 06-23-2009 03:18 AM

Installed, working great. But, how do I allow other FB users to use the application I created? In order for it to be "Published" I must have 5 people using it? I have spent way too much time on FB trying to figure out how to "share" an unpublished app.

I should probably ask a teenager...they know all the FB stuff...

Any ideas?:confused:

Morrus 06-24-2009 01:57 PM

Quote:

Originally Posted by hydn (Post 1833986)

I've even sent the $25 to developer and not even a response.

Oh, that's worrying. I paid the $25 by PayPal for the install service yesterday. I'll keep my fingers crossed...

tldagent 06-24-2009 02:40 PM

This is a great add-on and an asset to any online community. Hopefully the developer of this will respond to some of these things and continue development on this. I would also be willing to donate but as I see no responses. The coders last post on this forum was in mid March and since then, nothing.

Is anyone having any luck with this? Anyone out there willing to take the development over in case this coder has become complacent? We'd certainly love to install this but...

Well, hopefully this wonderful mod will be pursued and updated.

Morrus 06-24-2009 05:22 PM

Quote:

Originally Posted by tldagent (Post 1836432)
Hopefully the developer of this will respond to some of these things and continue development on this. I would also be willing to donate but as I see no responses. The coders last post on this forum was in mid March and since then, nothing.

Hmmm, now I'm getting more worried. I'm really regretting sending that money now.

hydn 06-24-2009 06:55 PM

Yup 2 months with this one prob:
https://vborg.vbsupport.ru/showpost....&postcount=819

If he could simply say. This problem is cause by....

This is how all other developers approach things. Esp the humble ones like the great Andrew from links & downloads manager. What a smart guy who treats everyone with respect.

Morrus 06-26-2009 03:58 PM

Just a note in case anyone was following - my $25 installation was completed yesterday and works perfectly. No complaints whatsoever.

online 06-28-2009 01:10 AM

Hello.

I payed $25 dollars to have this installed (by the creator), and now the forum is extremely slow, and we cannot start a thread. It keeps telling me my message is too short and I need to lengthen it to more than 1 character.

Anyone have ideas how to fix it?

webgroup 06-29-2009 12:30 PM

Quote:

Originally Posted by online (Post 1838626)
Hello.

I payed $25 dollars to have this installed (by the creator), and now the forum is extremely slow, and we cannot start a thread. It keeps telling me my message is too short and I need to lengthen it to more than 1 character.


Anyone have ideas how to fix it?

I dont think that has something do with this hack.

webgroup 06-29-2009 12:32 PM

I keep receiving this error:

Database error in vBulletin 3.8.2:

Invalid SQL:

SELECT user.*,usertextfield.*,userfield.*, user.userid, options, fbuser.fbuid,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid

,avatar.avatarpath,NOT ISNULL(customavatar.userid) AS hascustomavatar,customavatar.dateline AS avatardateline, customavatar.width AS avwidth, customavatar.height AS avheight

, IF((options & 512 AND user.userid <> 0), 0, lastactivity) AS lastvisittime



FROM vbnewuser AS user
LEFT JOIN vbnewfbuser AS fbuser ON(user.userid = fbuser.userid)
LEFT JOIN vbnewusertextfield AS usertextfield ON(usertextfield.userid=user.userid)
LEFT JOIN vbnewuserfield AS userfield ON(userfield.userid=user.userid)

LEFT JOIN vbnewavatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN vbnewcustomavatar AS customavatar ON(customavatar.userid = user.userid)



WHERE 1=1
AND (user.usergroupid IN (-1,6,26,18,23,25,7,21,22,2,20,5))

ORDER BY user.username asc
LIMIT 47600, 100;

MySQL Error : Incorrect key file for table '/tmp/#sql_3714_3.MYI'; try to repair it
Error Number : 126
Request Date : Monday, June 29th 2009 @ 08:32:26 AM
Error Date : Monday, June 29th 2009 @ 08:34:23 AM

YES, I know the error looks like a corrupted DB and reparing it will fix it, but no.
I have ran repairs in the DB many times, ALL is fine, still I keep getting this error.

PLease help.

online 06-29-2009 05:17 PM

Quote:

Originally Posted by webgroup (Post 1839512)
I dont think that has something do with this hack.

It sure did. It now works for some reason. We had to turn it off to make any post, and make it faster, but now everything seems to be work.

wolfstream 06-29-2009 05:27 PM

Quote:

Originally Posted by webgroup (Post 1839516)
YES, I know the error looks like a corrupted DB and reparing it will fix it, but no.
I have ran repairs in the DB many times, ALL is fine, still I keep getting this error.

Just because you "repair" the db doesn't mean it's going to stay repaired at all. There are a number of reasons that this could be killing the db, but you need to figure out what it is on your own.


This isn't even guaranteed to be related to the mod itself. In fact, based on experience, I'd say it's not, because I've yet to have it show up on any of the numerous installs I've done.

Check your settings, check your mysql and php versions, make sure everything is up to date (MySQL 4 is not up to date), make sure your configurations can handle what you're trying to do.

GoTTi 06-29-2009 05:31 PM

have a slight error. i just installed this mod, so im testing it, i logout then click the connect button and it takes me to the fblogin.php page, then i type in a username, it says its available, then i click next, the fblogin.php page loads, but its a error 500 page. just a blank page. help please. thanks. the error is on IE

GoTTi 06-29-2009 05:43 PM

i tried to login on firefox and get this error:

Fatal error:
  • Please complete the required field "Email".
Unable to proceed with save while $errors array is not empty in class vB_DataManager_User in [path]/includes/class_dm.php on line 810

mykkal 06-30-2009 02:17 AM

Looking for a developer familiar with facebook connect. Need some applications developed. PM me for details.

Stryker412 06-30-2009 01:23 PM

If the site owner sets up the application on Facebook, can any of the forum members find out the site owner's FB info if you choose not to use it?

frogster 06-30-2009 06:03 PM

I currently have this facebook connect mod installed on my forum but I just learned about rpxnow. Apparently this does the same thing including the news feed publishing but allows users to register with more than just facebook. Has anyone tried this on their forum???

dwessell 06-30-2009 06:38 PM

Sorry if this question has been asked. I searched through, but didn't see anything..

Can you disallow the login from facebook option, and just use this to allow exisitng users to integrate the forum with their facebook accounts?

Thanks
David

usearchme 07-01-2009 08:35 AM

Hi guys

Ive tryed this mod a few times now, and failed to get it working all the times ive tryed it, and never had problems like this with other mods, I got a terrible list of errors when i logged out an found out some of my forums couldnt be accessed after I had installed this !

Woc

GoTTi 07-01-2009 01:21 PM

so no support for this mod?

frogster 07-01-2009 02:40 PM

Hey guys,

I did a bit more research on Rpx and found it to have the same capabilities as facebook connect (including the publishing to news feeds etc) but with many other more login options as well (myspace, yahoo, google, twitter, etc). I just installed the WP plugin for this and it works great. There is currently no VB plugin but we can ask them to make one here. I have already started the request and all you have to do is go and vote for it so we can get it to the top. Users did the same for drupal and joomla and rpx is now creating a plug in. You can vote (without registering) here

https://rpx.uservoice.com/pages/8895-general

Look for the request titled "Make a vbulletin plugin" and vote.


All times are GMT. The time now is 04:35 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.02755 seconds
  • Memory Usage 1,890KB
  • 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
  • (15)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