Release Thread auf joomla.org: http://forum.joomla.org/index.php/topic,21066.0.html
com_connector RC1
v. 0.0.8.1 ( bugfix release, keine neue funktionen )
bug in connector administration gefixt
v. 0.0.8
updated auf joomla 1.0.7
wrapped modus hinzugefügt
v. 0.0.7
updated auf joomla 1.0.5
warning messages gefixt
v. 0.0.6
kompatibilität mit neuer Version von VB_SOAP
einige login buugs gefixt
v. 0.0.5
cookie problem in vbulletin modul gefixt
kompatibilität mit JMSOAP addon, hinzugefügt
v. 0.0.4
Funktion um Benutzer zu modifizieren/entfernen hinzugefügt
aufteilung der module in eigene packete
v. 0.0.3
each module has own logout function
fixed bugs in vbulletin_sql module
fixed bug in the connector.php file
v. 0.0.2
vbulletin_Sql module included
select menu in the admintool for the modules
v. 0.0.1
init release, vbulletin module included
intergrierte Module:
vbulletin ( benötigt php5 und SOAP erweiterung )
v.1.0.4
cookie fix
v.1.0.3
kompatibilität mit neuer Version von VB_SOAP
v.1.0.2
unterstützt login/logout,
hinzufügen neuer benutzer zu vbulletin/joomla
löschen/bearbeiten von benutzern
vbulletin session support
geschützte benutzer können nicht gelöscht werden
optionale Module:
entpacken und kopieren nach /components/com_connector/modules
vbulletin_sql ( module to access vBulletin over DB connects, like vbridge, works with PHP4 )
phpbb2_sql ( module to access phpBB2 over DB connects, works with PHP4 )
wbblite_sql ( module to access WBBlite over DB connects, works with PHP4 )
vwar ( module to access VWAR over DB connects, works with PHP4 )
SMF ( module to access SMF 1.1 RC1 over DB connects, works with PHP4 )
Online Demo läuft mit vbulletin module (SOAP)
http://www.c4u.to
HOWTOs:
wechsel von vbridge zur com_connector
erstellen von modulen
modifizieren von joomla.php (patch)
Addons:
X letzte Beiträge von vbulletin (soap)
eingelogte Benutzer in joomla und VB (soap)
Was braucht man für com_connect
die erweiterung ans ich kommt mit PHP4 oder PHP5(getestet) zurecht
die module können eigene voraussetzungen haben ( z.B vbulletin module braucht php5 + SOAP extension )
Was macht dieses Connector
dieser Conenctor erlaubt es joomla mit beliebigen anwendungen zu verbinden über SOAP/XMLRPC oder datenbankconnects
Man sollte dieses Komponent nutzen falls man eigene Anwendungen mit joomla verbinden möchte die auf cookie anmeldung aufsetzen ( und PHP-Sessionen, da dort auch ein cookie benutzt wird um session zu speichern )
es ist außerdem relativ einfach eigene module zu entwickeln
Installation in späteren versionen über component-installer
entpackt das archiv und kopiert alle dateien aus dem ordner "upload" in eure joomla installation
von joomla dateien wurde nur die joomla.php verändert ( nur login/logout funktion )
danach folgende querys ausführen:
neue tabelle erstellen
Code:CREATE TABLE `jos_connectors` ( `id` int(11) NOT NULL auto_increment, `title` varchar(255) default NULL, `module` varchar(255) NOT NULL default 'vbulletin', `url` varchar(255) NOT NULL default '', `jos_useradd` tinyint(4) NOT NULL default '0', `app_useradd` tinyint(4) NOT NULL default '0', `smode` int(11) NOT NULL default '0', `params` text, `published` tinyint(4) NOT NULL default '0', `checked_out` int(11) NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) TYPE=MyISAM;
neues feld in der benutzer tabelle
komponent hinzufügenCode:ALTER TABLE `jos_users` ADD `connector_cookies` TEXT;
BenutzungCode:INSERT INTO `jos_components` VALUES ('', 'Connector', 'option=com_connector', 0, 0, 'option=com_connector', 'Add Connector', 'com_connector', 0, 'js/ThemeOffice/component.png', 0, '');
geht ins joomla administration/components/connector
und klickt auf "New"
als module schreibt vorerst "vbulletin" rein (später wird an dieser stelle auswahl menu stehen )
beispieldaten für vbulletin module
Title : MyFORUM
Module: vbulletin
Access Key: SECRETPASS ( wird von dem SOAP server benötigt )
URL: http://www.myapplication.com/index.php
Server URL: http://www.myapplication.com/server.php?wsdl ( URL zum VB_SOAP server )
als nächstes muss man menü element erstellen
geht auf menu administration klickt auf New
im nachfolgenden menü wählt
Connector Item
und euren forum
fertig
für update von 0.0.x zu 0.0.8 pbitte folgende query ausführen
Code:ALTER TABLE `jos_connectors` ADD `smod` INT NOT NULL AFTER `app_useradd` ;


LinkBack URL
About LinkBacks
Zitieren
Lesezeichen