First allow me to say how much I love this program. I have it installed on one site as a standalone and it's working prefect there. My problem is with another installation of it that I'm trying to integrate with IPB 1.3.1 Final. First, both IPB and Comppermine worked fine prior to my trying to integration. The problem at first was no one was able to login on Coppermine, kept getting the "server couldn't be found" error. After spending hours sereaching here and going through all the posts here over and over, I was able to get Coppermine to at least come up with a 404 error on the redirect.
Here is my setup for the bridge:
// database configuration
define('IB_DB_NAME', 'db111977606'); // The name of the database used by the board
define('IB_BD_HOST', 'db112.perfora.net'); // The name of the database server
define('IB_DB_USERNAME', 'dbo111977606'); // The username to use to connect to the database
define('IB_DB_PASSWORD', '********'); // 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', '../forum/');
// ------------------------------------------------------------------------- //
// You can keep the default values below if your installation is standard
// ------------------------------------------------------------------------- //
The database info is the same as for my IPB forum. Both IPB and Coppermine share the same database.
Here is the config for my init.inc.php file.
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();
Upon trying to log into Coppermine now I get a 404 error. The URL that it shows it's trying to redirect to is
http://www.boxerdogplanet.com/forums/index.php?&act=Login&CODE=00What do I need to do to?
Thank you in advance!