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

Reply
 
Thread Tools
Vbulletin Application Connector Details »»
Vbulletin Application Connector
Version: 0.0.2, by leonsio leonsio is offline
Developer Last Online: Jun 2013 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 12-15-2005 Last Update: 03-09-2006 Installs: 75
DB Changes Uses Plugins
Additional Files  
No support by the author.

Version 0.2
Bugfix: now it is posible to define active/inactive connectors
ADD: Changing userdata ( email and username )

Version 0.1
init Release

that this hack do?

with this hack you can connect other applications with vbulletin
this hack provide a simple api to create own module, to connect different application with vbulletin, and create common login with it

this addon is the same like com_connector for joomla

example:

you have an CMS or own created application and you want to have common login with vbulletin
so you must creat a class ( = module ) which knows some methods like login/logout
this methods will be called by the connector if the user login into VB
if you want the connector will try to add the user to your application or vbulletin, if the user dont exists
the connect to your application can be created by soap/xmlrpc calls, database connnects, ldap or something else, its your choose

for a little demo i have included a joomla module, which connects to joomla using SOAP calls to get common login with vbulletin ( needs JMSOAP addon for joomla )

demo is on my side: www.c4u.to

if you log in into joomla, you will be automaticaly logged in vbulletin, by com_connector hack for joomla ( which is using VB_SOAP on vbulletin side )
if you login into vbulletin, you will be automaticaly logged in into joomla, by this hack ( using JMSOAP addon on joomla side )

in the next version i will include functions to update/delete users


installation
1. unzip the package, move all files von vb_connector folder to your forumroot
2. install product xml file

the you have new menu in admincp to create connectors
it is posible to use one module more then once

howto create own modules: http://forum.joomla.org/index.php/to...html#msg131894

you can use this tutorial for joomla, difference with joomla is, that you will get all parameters as array, not as object, look at the joomla.class.php file in the package

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 05-02-2006, 09:32 PM
ronoxQ's Avatar
ronoxQ ronoxQ is offline
 
Join Date: Aug 2005
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

BUMP

Anybody who got this to work, please help us out!
Reply With Quote
  #93  
Old 05-06-2006, 11:45 AM
BreezeDK BreezeDK is offline
 
Join Date: Apr 2006
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi i have a problem when i logout from vBulletin 3.5.4 using PHP5 SOAP version with joomla.


Code:
Warning: Invalid argument supplied for foreach() in /includes/connector/joomla.class.php on line 107

Warning: Cannot modify header information - headers already sent by (output started at /home/newansi/joomla/forums/includes/class_core.php:2984) in /includes/connector/joomla.class.php on line 112

Warning: Cannot modify header information - headers already sent by (output started at /home/newansi/joomla/forums/includes/class_core.php:2984) in /includes/connector/joomla.class.php on line 113

Warning: Cannot modify header information - headers already sent by (output started at /home/newansi/joomla/forums/includes/class_core.php:2984) in /includes/connector/joomla.class.php on line 114

i have been looking in the file and it is the following that causes the problem:
PHP Code:
    function logout()
    {
                if(
is_null($this->__res))
                {
                        return 
$this->__status;
                }
                
$lifetime time() - 1800;
                
// cookies setzen
        
foreach ( $this->__res->_cookies as $name => $value)
        {
            
setcookie($name$value[0], $lifetime$value[1]);
        }
        
// force logout, falls _cookies nicht exestiert
                
setcookie"usercookie[username]"" "$lifetime"/" );
                
setcookie"usercookie[password]"" "$lifetime"/" );
                
setcookie"usercookie"" "$lifetime"/" );
        
    } 

I have noted it doesnt happen with my non admin profile.
What could be the problem of this?
Reply With Quote
  #94  
Old 05-11-2006, 06:54 PM
paulfletcher paulfletcher is offline
 
Join Date: Jan 2006
Location: USA
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's not working for me either. I'm pretty new to the Joomla integration, but I need to get it working in a week (deadline). Can anyone tell me what I need to get this working? I just want Joomla and vBulletin to share the userdatabase etc...

Thanks,
Paul
Reply With Quote
  #95  
Old 05-12-2006, 02:30 AM
paulfletcher paulfletcher is offline
 
Join Date: Jan 2006
Location: USA
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When I try to install this product on vBulletin 3.5.4 I get this error.

Quote:
Database error in vBulletin 3.5.4:

Invalid SQL:
ALTER TABLE user ADD `connector_cookies` TEXT NULL;

MySQL Error : Duplicate column name 'connector_cookies'
Error Number : 1060
Date : Thursday, May 11th 2006 @ 11:21:07 PM
Script : http://xyztraining.com/*****(admin folder)/plugin.php
Referrer : http://xyztraining.com/*****(admin folder)/plugin.php?do=productadd
IP Address : ***.**.**.***
Username : Paul Fletcher
Classname : vb_database
Any thoughts?

Also, has anyone actually gotten Joomla to work with vBulletin 100%? User database sharing, and automatic login? Also, could anyone post how I can install the SOAP version? I've tried install the SOAP version, only to get errors, so I had to stick with the vbulletin_sql version.

The System requirements for SOAP... PHP 5, and SOAP extensions, how do I add SOAP extensions? Plus my host is telling me to use ".php5" as the ending... would this work as well.

lol, sorry for all these questions. I hope one of you has the answer.

Thanks,
Paul
Reply With Quote
  #96  
Old 05-14-2006, 03:52 PM
ronoxQ's Avatar
ronoxQ ronoxQ is offline
 
Join Date: Aug 2005
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Mods, I'd like to request deleting this mod. It isn't working, and the creator isn't here any more.
Reply With Quote
  #97  
Old 05-14-2006, 09:03 PM
LordRayden LordRayden is offline
 
Join Date: Jul 2005
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HI all,

well paulfletcher, I would say you allready have installed the vBulletin Application Connector, cause your error says “Duplicate column name 'connector_cookies'”.

I'm no programmer, but I think that’s the Problem, I have a working “one side” Integration with the com_connector and vBulletin. As I said “one side”, when I login to Joomla I'm also logged in to vBulletin, same with logout but when I login to vBulletin I'm logged in to vBulleitn only. As far as I know the reason is that in Joomla 1.08 the developers changed a lot so the vBulletin Application Connector in this version is not working anymore and has to be updated.

That’s my information for my system, Joomla 1.08, Vbulletin 3.5.4, PHP4, NO SOAP. I think leonsio is pretty busy and I, also as everyone else, hope to hear from him soon.

Thanks

LordRayden
Reply With Quote
  #98  
Old 05-15-2006, 11:43 AM
paulfletcher paulfletcher is offline
 
Join Date: Jan 2006
Location: USA
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the information. I've decided to go with BBPixel and their plugin. That will help us meet our deadline.

Have a great day,
Paul
Reply With Quote
  #99  
Old 05-17-2006, 10:01 PM
ronoxQ's Avatar
ronoxQ ronoxQ is offline
 
Join Date: Aug 2005
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where is BBPixel's plugin?
Reply With Quote
  #100  
Old 05-18-2006, 01:05 AM
paulfletcher paulfletcher is offline
 
Join Date: Jan 2006
Location: USA
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="http://forum.bbpixel.com/index.php" target="_blank">http://forum.bbpixel.com/index.php</a>
Reply With Quote
  #101  
Old 06-02-2006, 09:36 AM
kevinsan kevinsan is offline
 
Join Date: Feb 2005
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

LordRayden

Can you please tell us how you installed VB and Jomla 1.08 on php4? There is no detailed explanation. Thanks.:banana:
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 11:30 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.08994 seconds
  • Memory Usage 2,320KB
  • Queries Executed 27 (?)
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
  • (1)bbcode_code
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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_postinfo_query
  • fetch_postinfo
  • 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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete