Invision Power Board v2.0.1 bridging problems Invision Power Board v2.0.1 bridging problems
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Invision Power Board v2.0.1 bridging problems

Started by joeysdad, October 27, 2004, 12:57:09 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

joeysdad

has anyone bridged this with IPB v2.01? I am following this to the letter but every time i upload the files (invisionboard.inc.php & init.inc.php) back to the server Coppermine will no longer function i get this error
(Fatal error : There was an error while processing a database query)

my invisionboard.inc.php looks like this
// database configuration
define('IB_DB_NAME', 'xxxxxxx'); // The name of the database used by the board
define('IB_BD_HOST', 'localhost'); // The name of the database server
define('IB_DB_USERNAME', 'xxxxxxxxxxi'); // The username to use to connect to the database
define('IB_DB_PASSWORD', 'xxxxxxxxx'); // The password to use to connect to the database

// The web path to your Invision Board directory
// In this example http://yoursite_name.com/ivboard/
define('IB_WEB_PATH', 'http://www.joeykaz.com/');

database name is my IPB data base
database username is my IPB database username

anyhelp? here is my init.inc.php
define('COPPERMINE_VERSION', '1.3.2');
// User database integration
// Uncomment the applicable line if you want to use it
// define('UDB_INTEGRATION', 'phpbb');
   define('UDB_INTEGRATION', 'invisionboard');
// define('UDB_INTEGRATION', 'vbulletin23');
// define('UDB_INTEGRATION', 'vbulletin30');
// define('UDB_INTEGRATION', 'yabbse');
// define('UDB_INTEGRATION', 'smf');
// define('UDB_INTEGRATION', 'woltlab21');
// define('UDB_INTEGRATION', 'punbb');
if (!defined('IN_COPPERMINE')) die('Not in Coppermine...');
// Start output buffering
ob_start();
// Report all errors except E_NOTICE
// This is the default value set in php.ini
// error_reporting (E_ALL ^ E_NOTICE);
error_reporting(E_ALL);

joeysdad

problems start when i uncomment // define('UDB_INTEGRATION', 'invisionboard');

Joachim Müller