vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Integration with vBulletin - vB Nexus, Facebook & Google multiple login integration (https://vborg.vbsupport.ru/showthread.php?t=220820)

Ohiosweetheart 08-24-2009 03:25 PM

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.

Calash 08-24-2009 03:38 PM

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 :)

Ohiosweetheart 08-24-2009 03:52 PM

lol.

Nope I never used the FB connect mod.

webrats 08-24-2009 04:55 PM

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

wolfstream 08-24-2009 05:07 PM

Quote:

Originally Posted by webrats (Post 1873525)
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`)
) ;


wolfstream 08-24-2009 07:41 PM

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.

wolfstream 08-25-2009 05:06 AM

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.

Michael2 08-25-2009 01:29 PM

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. :(

Ryan Ashbrook 08-25-2009 04:58 PM

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.

cory_booth 08-25-2009 05:01 PM

Quote:

Originally Posted by wolfstream (Post 1873058)
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.


All times are GMT. The time now is 01:48 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.01742 seconds
  • Memory Usage 1,756KB
  • 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
  • (3)bbcode_code_printable
  • (2)bbcode_php_printable
  • (6)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
  • (10)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