|
|
Re:How to integrate with Joomlaboard?
|
|
Date: 2006/01/26 05:56
|
By: benjamin
|
Status: User
|
|
|
Karma: 22  
|
|
Senior Joomlapolitan  | Posts: 98 |   | |
|
rick wrote: Benjamin,
Thanks for the correction. Had not seen any info on 1.2 so glad to see that there is something happening with JoomlaBoard. I love the intigration of this board but it seems to lack a lot of things that many other boards have. Hope this is not just a simple security patch, would like to see some real improvements. I don't suppose you have any links to where we might see some info on this release?
Take care,
Hi,
You will find it if you google on "Joomlaboard 1.2"
warmest regards
Post edited by: benjamin, at: 2006/01/25 23:57
|
|
The administrator has disabled public write access. |
|
|
|
Re:How to integrate with Joomlaboard?
|
|
Date: 2006/03/12 19:29
|
By: irgendwer
|
Status: User
|
|
|
Karma: 2  
|
|
Senior Joomlapolitan  | Posts: 87 |   | |
|
Hm maybe I'm too stupid, but I can't find it. Nor with google neither in the sourceforge. There is a joomlaboard 1.2 folder but no file in it. South Korea's got Seoul
|
|
The administrator has disabled public write access. |
|
|
|
Re:How to integrate with Joomlaboard?
|
|
Date: 2006/03/16 04:39
|
By: irgendwer
|
Status: User
|
|
|
Karma: 2  
|
|
Senior Joomlapolitan  | Posts: 87 |   | |
|
??? South Korea's got Seoul
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:How to integrate with Joomlaboard?
|
|
Date: 2006/03/17 02:19
|
By: Boom
|
Status: User
|
|
|
Karma: -1  
|
|
Junior Joomlapolitan  | Posts: 25 |   | |
|
|
it's not there because its not released yet. It's still in development.
|
|
The administrator has disabled public write access. |
|
|
|
Re:How to integrate with Joomlaboard?
|
|
Date: 2006/04/10 15:26
|
By: pcjunkie
|
Status: User
|
|
|
Karma: 1  
|
|
Senior Joomlapolitan  | Posts: 70 |   | |
|
Anyway....
So how do you hack it?
|
|
The administrator has disabled public write access. |
|
|
|
Re:How to integrate with Joomlaboard?
|
|
Date: 2006/05/10 21:30
|
By: Machiel
|
Status:
|
|
|
Karma: 32  
|
|
Expert Joomlapolitan  | Posts: 153 |   | |
|
Joomlaboard 1.2 development build is available on the forge for testing but read on for the joomlaboard 1.1.2 hack.
If you want to hack it you need to edit 2 files: view.php and admin.joomlaboard.php
Here's a step by step explanation what you should do.
1. Backup the 2 files first
2. Open view.php and search for the following code around line 487
| Code: |
/*let's see if we should use myPMS2 integration */
if ($sbConfig['pm_component']=="pms" && $fmessage->userid && $my->id) {
//we should offer the user a PMS link
//first get the username of the user to contact
$PMSName=$userinfo->username;
$msg_pms = "<a href=\"" . sefRelToAbs('index.php?option=com_pms&page=new&id='.$PMSName.'&title='.$fmessage-
>subject) . "\"><img src=\"";
if($sbIcons['pms']) {
$msg_pms .= "$mls/modules/mod_sbicons/" . $sbIcons['pms'];
} else {
$msg_pms .= "$mls/components/com_joomlaboard/emoticons/sendpm.gif";
}
$msg_pms .= "\" alt=\"" . _VIEW_PMS . "\" border=\"0\" title=\"" . _VIEW_PMS . "\" /></a>";
}
|
If you find that code than put the following code behind it:
| Code: |
/*let's see if we should use uddeIM integration */
if ($sbConfig['pm_component']=="uddeim" && $fmessage->userid && $my->id) {
//we should offer the user a PMS link
//first get the username of the user to contact
$PMSName=$userinfo->username;
$msg_pms = "<a href=\"" . sefRelToAbs('index.php?option=com_uddeim&task=new&recip='.$fmessage->userid) . "\"><img src=\"";
if($sbIcons['pms']) {
$msg_pms .= "$mls/modules/mod_sbicons/" . $sbIcons['pms'];
} else {
$msg_pms .= "$mls/components/com_joomlaboard/emoticons/sendpm.gif";
}
$msg_pms .= "\" alt=\"" . _VIEW_PMS . "\" border=\"0\" title=\"" . _VIEW_PMS . "\" /></a>";
}
|
3. Now open admin.joomlaboard.php and go to line 588
replace the following code:
| Code: |
// private messaging system to use
$pmlist = array();
$pmlist[] = mosHTML::makeOption( 'no', _COM_A_NO );
$pmlist[] = mosHTML::makeOption( 'pms', 'myPMS II Open Source' );
$pmlist[] = mosHTML::makeOption( 'pmspro', 'myPMS Professional');
|
with this code:
| Code: |
// private messaging system to use
$pmlist = array();
$pmlist[] = mosHTML::makeOption( 'no', _COM_A_NO );
$pmlist[] = mosHTML::makeOption( 'pms', 'myPMS II Open Source' );
$pmlist[] = mosHTML::makeOption( 'pmspro', 'myPMS Professional');
$pmlist[] = mosHTML::makeOption( 'uddeim', 'Uddeim');
|
You now need to set in the joomlaboard backend your pms settings to uddeIM.
Hope it's usefull if so give me some karma
Greets
Machiel
P.s. If you have questions just ask me Best Regards Machiel
CB tester
|
|
The administrator has disabled public write access. |
|
|