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);
problems start when i uncomment // define('UDB_INTEGRATION', 'invisionboard');
http://forum.coppermine-gallery.net/index.php?topic=8334.0