Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vB Nexus, Facebook & Google multiple login integration Details »»
vB Nexus, Facebook & Google multiple login integration
Version: 1.00, by ibautocommunity ibautocommunity is offline
Developer Last Online: Jun 2020 Show Printable Version Email this Page

Category: Integration with vBulletin - Version: 3.8.3 Rating:
Released: 08-12-2009 Last Update: 08-12-2009 Installs: 155
DB Changes Uses Plugins Auto-Templates
Re-useable Code Additional Files Translations Is in Beta Stage  
No support by the author.

vBulletin Nexus
Current project release: BETA
This works on vBulletin 3.7.X - 3.8.4

This product will allow visitors to join your community using their Facebook, Google, Yahoo or AIM account; and will allow your existing members to associate an existing forum account with one of the services - such as Facebook.

Please read the documentation and follow it exactly before requesting installation help. Please note, if you have heavily modified styles that are missing hooks - this product will not work and require additional installation steps.

DEMO: http://www.carblog.com/vbnexus

Basic Instructions for your forum's users: http://carblog.com/vbnexus/user-guide/

Download Now

File Type: zip product-vbnexus1b.zip (101.7 KB, 2183 views)

Show Your Support

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

Comments
  #172  
Old 08-24-2009, 03:25 PM
Ohiosweetheart Ohiosweetheart is offline
 
Join Date: Dec 2005
Location: N.E. Ohio
Posts: 2,291
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

These are the only real issues I'm having:

1 - We're getting an application response error when both registering and logging in via FB, and when we create a new thread, or make a post.

2 - There is no prompt to publish a post or thread or anything else to FB, altho when I first installed it, there was.

3 - Even tho I set my settings to yes in the userCP, they keep reverting back to No, which I'm assuming is why there's no prompt to publish to FB.

I AM, however, getting the notifications of new threads, new replies, etc, at FB.
Reply With Quote
  #173  
Old 08-24-2009, 03:38 PM
Calash's Avatar
Calash Calash is offline
 
Join Date: Jun 2006
Location: East Coast, USA
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
3 - Even tho I set my settings to yes in the userCP, they keep reverting back to No, which I'm assuming is why there's no prompt to publish to FB.
Did you migrate from the Facebook Connect mod?

If so, the second query I posted will resolve this problem. It may cause a duplicate entry for some users if they joined after the migration, so check the table after running and delete any duplicates.

If you did not migrate just ignore me
Reply With Quote
  #174  
Old 08-24-2009, 03:52 PM
Ohiosweetheart Ohiosweetheart is offline
 
Join Date: Dec 2005
Location: N.E. Ohio
Posts: 2,291
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

lol.

Nope I never used the FB connect mod.
Reply With Quote
  #175  
Old 08-24-2009, 04:55 PM
webrats webrats is offline
 
Join Date: May 2002
Posts: 102
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can you send me the mysql commands that the xml does when it installs

i have a very large database and need to do it the install threw mysql
Reply With Quote
  #176  
Old 08-24-2009, 05:07 PM
wolfstream wolfstream is offline
 
Join Date: Jan 2003
Location: Iowa
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by webrats View Post
can you send me the mysql commands that the xml does when it installs

i have a very large database and need to do it the install threw mysql
You shouldn't have a problem installing the SQL with this, the user tables aren't altered.

3 tables are created, vbnexus_nonvbuser, vbnexus_facebookuser and vbnexus_templates. The code for creating them is below. Note that this assumes that you're not using a prefix for your tables (ie: vb_ , etc). If you are, add the prefix to the 3 insert statements , so
Code:
CREATE TABLE IF NOT EXISTS `vbnexus_facebookfeedtemplates` (
would actually be
Code:
CREATE TABLE IF NOT EXISTS `vb_vbnexus_facebookfeedtemplates` (
in my above example:

The queries:
Code:
CREATE TABLE IF NOT EXISTS `vbnexus_facebookfeedtemplates` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `type` varchar(20) default NULL,
  `content` mediumtext,
  PRIMARY KEY  (`id`)
) ;


CREATE TABLE IF NOT EXISTS `vbnexus_nonvbuser` (
  `nonvbid` bigint(20) unsigned NOT NULL,
  `userid` int(11) NOT NULL,
  `associated` tinyint(1) default '0',
  `type` enum('1','2') NOT NULL default '1',
  `emailonfile` tinyint(1) default '0',
  PRIMARY KEY  (`nonvbid`,`type`),
  KEY `userid_type` (`userid`,`type`)
) ;

CREATE TABLE IF NOT EXISTS `vbnexus_facebookuser` (
  `uid` bigint(20) unsigned NOT NULL,
  `newthreadfeed` tinyint(1) unsigned default '1',
  `newreplyfeed` tinyint(1) unsigned default '1',
  `newalbumfeed` tinyint(1) unsigned default '1',
  `newpmnotify` tinyint(1) unsigned default '1',
  `mythreadnotify` tinyint(1) unsigned default '1',
  `subscribedthreadnotify` tinyint(1) unsigned default '1',
  PRIMARY KEY  (`uid`)
) ;
Reply With Quote
  #177  
Old 08-24-2009, 07:41 PM
wolfstream wolfstream is offline
 
Join Date: Jan 2003
Location: Iowa
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Another bug (do we have a list of these yet?)
When editing a post (inside the post, not when clicking on "go advanced"), the "do you want to submit this to facebook" pops up. When skipped, it goes to "page can not be found". This shouldn't even popup at all, it's just an edit.
Reply With Quote
  #178  
Old 08-25-2009, 05:06 AM
wolfstream wolfstream is offline
 
Join Date: Jan 2003
Location: Iowa
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

And a request, sorry, not meaning to "hijack" the thread here, by any means
Currently, the system shows the notifications like
Quote:
You've received a NEW thread reply on forumname
Can we please change that to be less generic? Tell us what thread, who posted the reply!

Also, for those wanting to change the notifications in the popup, the stuff that says "I posted a reply", or "I started a new thread", you can edit out

$vbphrase[vbnexus_facebook_user_posted_a_new_reply]

and

$vbphrase[vbnexus_facebook_user_posted_a_new_thread]

and configure that. I just blanked them out, it makes no sense at all to have these filled in.
Reply With Quote
  #179  
Old 08-25-2009, 01:29 PM
Michael2's Avatar
Michael2 Michael2 is offline
 
Join Date: Nov 2001
Posts: 188
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Still receiving this error when attempting to publish a reply...

Quote:
Application response error

Invalid template bundle id specified: 2147483647. You can see this because you are one of the developers of the app.
I've tried re-installing the mod and the same thing. I even deleted and re-added the application in FB.
Reply With Quote
  #180  
Old 08-25-2009, 04:58 PM
Ryan Ashbrook's Avatar
Ryan Ashbrook Ryan Ashbrook is offline
 
Join Date: Dec 2002
Location: Cincinnati, Ohio
Posts: 422
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

FOr those getting the array_merge warning, simply do this.

Open the *** Initialize app *** plugin and find this:

PHP Code:
$phrasegroups array_merge($phrasegroups, array('vbnexus')); 
And above put this:

PHP Code:
if ( !is_array $phrasegroups ) )
{
    
$phrasegroups = array ( );


Quote:
Originally Posted by wolfstream
Coders don't work on demand for free.
Real coders are willing to help anyone, regardless.
Reply With Quote
  #181  
Old 08-25-2009, 05:01 PM
cory_booth cory_booth is offline
 
Join Date: Jul 2006
Posts: 224
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by wolfstream View Post
Let me count the ways:
  1. The author at least tries to support the mod
  2. Logging you out of the forum doesn't log you out of facebook
  3. Allows for other (non facebook) logins
  4. New thread notifications actually point to the thread
  5. PM notifications
  6. Album Notifications
  7. Much, much more configurable

There are a few downsides, such as the non templated login stuff, but this is a beta mod, and they at least try to provide support, whereas the author for the other mod has ignored his own mods for months on end.

Awesome, going to install... Yes I paid for the other one, but my point wasn't to compare yours to his, rather verify if some of the lagging issues of the other one would be present in this one by virtue of being a facebook connection app.

I look forward to using this as I had to shut down the other.
Reply With Quote
Reply


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 03:26 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.05558 seconds
  • Memory Usage 2,350KB
  • 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
  • (3)bbcode_code
  • (2)bbcode_php
  • (6)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