I am having the same problem with the redirect while logging in. After you enter your creditials for the board to login you are redirect to (in my case) the portal of my board which is /forum/index.php. It doesn't take you to the gallery. All of my databases are on the same server with the website itself and I get the same error as dancingbear.
I would also like to create a link from the Gallery back to my board and don't know how to do it.
I get an error when I click on Admin Tools that says:
"There was an error while processing a database query"
And when I click on Users or Member lists in the gallery it takes me to IPB's ACP login.
I am using Invision Power Board v1.3.1 Final and Coppermine 1.3.0
This is my bridge file and how it is configured:
// database configuration
define('IB_DB_NAME', '*******_ivbd2'); // The name of the database used by the board
define('IB_BD_HOST', 'localhost'); // The name of the database server
define('IB_DB_USERNAME', 'username'); // 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 prefix for the Invision Board cookies
define('IB_COOKIE_PREFIX', 'spaceportforum'); // 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);