Gets redirected to forum Gets redirected to forum
 

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

Gets redirected to forum

Started by Solac, February 22, 2005, 10:52:39 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Solac

Hi

when I go onto my coppermine gallery after installing this I just get rediected to my forum. I am using Invisioboard 2.0.0 and coppermine 1.3.2. Here are my files:

Here is my init.inc


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);


invisionboard.inc


// database configuration
define('IB_DB_NAME', 'watotron_ibrd1'); // The name of the database used by the board
define('IB_BD_HOST', 'localhost'); // The name of the database server
define('IB_DB_USERNAME', 'watotron_ibrd1'); // 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://www.watotron.com/forum
define('IB_WEB_PATH', '/forum/');
// ------------------------------------------------------------------------- //
// You can keep the default values below if your installation is standard
// ------------------------------------------------------------------------- //
// The prefix for the Invision Board cookies
define('IB_COOKIE_PREFIX', ''); // The prefix used for board cookies

// Prefix and names for the database tables
define('IB_TABLE_PREFIX', 'ibf_'); // The prefix used for the DB tables
define('IB_USER_TABLE', 'members'); // The members table
define('IB_SESSION_TABLE', 'sessions'); // The sessions table
define('IB_GROUP_TABLE', 'groups'); // The groups table

// Group definitions (default values used by the board)
define('IB_VALIDATING_GROUP', 1);
define('IB_GUEST_GROUP', 2);
define('IB_MEMBERS_GROUP', 3);
define('IB_ADMIN_GROUP', 4);
define('IB_BANNED_GROUP', 5);


any ideas?

Thanks

Joachim Müller

this is expected behaviour: as coppermine uses the user management of your bbs when bridging is enabled, you will be send to your bbs for logging in - some bbs apps support redirecting users back to coppermine after the user has successfully logged in, others don't. For those who don't, you have to "guide" the user back to the gallery by adding a link into your bbs navigation pointing to your coppermine pages.
For details, you should post a link and test user account (non-admin).

Joachim