|
|
Re:Link Modifications for phpBB
|
|
Date: 2007/02/26 18:27
|
By: chrismurray182
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 22 |   | |
|
Hey guys, I scripted a bit of code to put a link to the phpbb PM link;
| Code: | //Get the joomla ID
$joomlaid = trim(mosGetParam($_REQUEST, 'user', ""));
//Get equivalent PHPBB id from database
mysql_connect('HOST','DBNAME','DBPASSWORD');
$sql = 'SELECT cb_phpbbid FROM nitja_comprofiler WHERE user_id = '.$joomlaid;
$result = mysql_query($sql);
$row = mysql_fetch_row($result);
$phpbbid = $row[0];
//Create link to PHPBB PM page, posting PHPBB user id.
$phpbbmessagelink =
"
<a href = 'forum/privmsg.php?mode=post&u=".$phpbbid."'>Private Message</a>
";
//Put this where you want your link.
echo ($phpbbmessagelink);
|
Bit of a problem though, I have no idea how i can get the link to open in the main body?
Any body have any ideas?
Thanks, Chris.
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:Link Modifications for phpBB
|
|
Date: 2007/04/05 02:44
|
By: Monclee
|
Status: User
|
|
|
Karma: 1  
|
|
Fresh Joomlapolitan  | Posts: 6 |   | |
|
Where is the Zip File.
I want to redirect de PhpBB profile to my CB profile , thanks a lot,
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:Link Modifications for phpBB
|
|
Date: 2007/04/05 02:46
|
By: Monclee
|
Status: User
|
|
|
Karma: 1  
|
|
Fresh Joomlapolitan  | Posts: 6 |   | |
|
where is the zip file
|
|
The administrator has disabled public write access. |
|
|
|
Re:Link Modifications for phpBB
|
|
Date: 2007/04/05 18:29
|
By: geeffland
|
Status:
|
|
|
Karma: 226  
|
|
Moderator  | Posts: 811 |   | |
|
The zip file is in this thread, page 1 the 6th post CB3PD Developer - CB Connector (formerly phpBB Connector) plugin
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:Link Modifications for phpBB
|
|
Date: 2007/04/08 07:04
|
By: Monclee
|
Status: User
|
|
|
Karma: 1  
|
|
Fresh Joomlapolitan  | Posts: 6 |   | |
|
Hey guys, I scripted a bit of code to put a link to the phpbb PM link;
Code:
Just Wanna Know if that code works fine, i want to redirect pm on phpBB to the one im using (JIM). I think this code is on the right track, but wanna know if some one has tested it before.
Thanks, and if you know how to do that please answer to.
.
Apollogize myself for keeping posting, but i think would be great to include this update on the nex phpbbConnector. jiji.
|
|
The administrator has disabled public write access. |
|
|
|
Re:Link Modifications for phpBB
|
|
Date: 2007/04/09 00:19
|
By: geeffland
|
Status:
|
|
|
Karma: 226  
|
|
Moderator  | Posts: 811 |   | |
|
Chris,
Sorry I think I missed seeing your question at the bottom... I think you will have to have the page open in a component to show in the main body or module to show in other parts... The main Joomla screen is not based on iframes so the target='yyy' option on the href won't help for this case...
Greg CB3PD Developer - CB Connector (formerly phpBB Connector) plugin
|
|
The administrator has disabled public write access. |
|
|