IP.Board (IPB) forum integration

We encourage users to post events happening in the community to the community events group on https://www.drupal.org.
This group should probably have more organizers. See documentation on this recommendation.

I've started this group because at this moment there is no solution for integrating IP.Board into Drupal (or viceversa).

IP.Board (also known as IPB and Invision Power Board) is a commercial forum software developed by Invision Power Services.

http://www.invisionpower.com
http://www.invisionpower.com/products/board/features/
http://en.wikipedia.org/wiki/Invision_Power_Board

We'll focus on 2 directions:

  1. Drupal is "king" - everything is processed by Drupal
  2. IPB is "king" - you guess it... IPB handles requests, users, etc

We also have an official module: http://drupal.org/project/ipbridge

Stefan Vaduva's picture

Looking for group organiser

Hello,

Because I did not had time to take care of this project anymore and I see that people are still interested, I'm looking for another group organiser. Please post here if you are interested.

Happy new year!

Read more
demon326's picture

New brigde, works without edits in drupal core files

What IPB for Drupal does

Settings IPB for Drupal in the Drupal administration.
Use IPB login to connect to Drupal.
Use IPB session to connect to Drupal.
Use information from IPB in Drupal:
 "Online users" block.

Note that this module still has some bugs, but there getting fixed..

Download at own risk:
https://github.com/llaumgui/ipb-for-drupal

Using it myself on live site, works great, but drupal register must be turned off since the user only works from IPB--->drupal.

Read more
arlak's picture

IPB - users creation

Hello all,

big thank you for your module which functions perfectly with IPB.
Do you have envisaged the possibility of creating one user directly since Drupal?

Read more
MrPowered's picture

Settings.php?

Hey,

I'm trying to install IPBridge on the latest stable versions of Drupal and IPB... However, in the instructions it tells me to modify settings.php. There is no settings.php. Any help? :P

Read more
jinkler's picture

Drupal 7 integration problem

Hi,

I've just installed Drupal 7 to give this a whirl.

I'm getting a strange error though:

Read more
jinkler's picture

Hi All

Hi All,

Any of you registered on the IPB Forums? I'm Jinkler on there.

Anyway, just getting to grips with Drupal 6, and came across this. Any issues or does it work fine with IP.Board 3.1.4?

Thanks!

Read more
Stefan Vaduva's picture

Making Drupal 7 use a different table for users

We will use the member table from IPB in order to authenticate users in Drupal.

When an IPB user tries to login for the first time in Drupal, his account will be created. This is based on a nice tutorial written by Atchijov on https://www.touchnoc.com/node/86 (thanks Atchijov!).

First you will need to tell Drupal about our third party table by configuring the database details in settings.php:

<?php
/*
* 'default' is your main drupal database
* 'ipb' is your IPB database
*/

$databases = array (
'default' =>
array (
'default' =>
array (

Read more
Stefan Vaduva's picture

Accessing IPB templates inside a Drupal 7 theme

<?php
chdir
('/path/to/forum/dir'); //replace this with your forum path

define( 'IPB_THIS_SCRIPT', 'public' );
require_once(
'./initdata.php' );

require_once(
IPS_ROOT_PATH . 'sources/base/ipsRegistry.php' );
require_once(
IPS_ROOT_PATH . 'sources/base/ipsController.php' );

$reg = ipsRegistry::instance();
$reg->init();

$output = $reg->getClass('output');

$content = render($page['content']); //this adds the Drupal content into the IPB template
$output->addContent($content);

$output->sendOutput();
?>

We have 2 problems:

Read more
Subscribe with RSS Syndicate content