Hi there,
I have searched these boards all last night and this morning..... and have found plenty of others with the same problem. However, no fixes. And if there was, I tired it and it is still giving me the same thing. I had it up and running as a standalone and everything worked fine.
My problem-
When I do all the things as instructed, login into CPG and then go to my board for entering, and redirect back to CPG, it is not log in. But it is logged in for the board.
My info-
PHPBB:
http://www.rvlivin.com/forumCPG:
http://www.rvlivin.com/scrapbook(I cannot make a test account because it only has a login button, no register button!? )
Cookie info from my phpbb forum-
Cookie name: phpbb2mysql
Cookie path: /
===============================================================
cpg_redir.php
<?php
if (!$_SERVER['HTTP_HOST']) {
$cpg_host=$HTTP_SERVER_VARS['HTTP_HOST'];
} else {
$cpg_host=$_SERVER['HTTP_HOST'];
}
$cpg_path='/scrapbook';
header("Location: http://".$cpg_host.$cpg_path);
exit;
?>
================================================================
phpbb.inc.php
// database configuration
define('PHPBB_DB_NAME', 'rvboards'); // The name of the database used by the board
define('PHPBB_BD_HOST', 'boards.rvlivin.com'); // The name of the database server
define('PHPBB_DB_USERNAME', '*******'); // The username to use to connect to the database
define('PHPBB_DB_PASSWORD', '*******'); // The password to use to connect to the database
// The web path to your phpBB directory
// If your URL to your board is for example '
http://yoursite_name.com/phpBB2/',
// you'll have to set the below var to '/phpBB2/'.
define('PHPBB_WEB_PATH', '/forum/');
// Logout Flag
// the value of this boolean constant depends on your phpBB version:
// If your version of phpBB is 2.0.4 or lower - change the value to FALSE;
// if your version of phpBB is 2.0.5 or newer - leave it as TRUE
define('PHPBB_LOGOUT_GET', TRUE);
// ------------------------------------------------------------------------- //
// You can keep the default values below if your instalation is standard
// ------------------------------------------------------------------------- //
// The prefix for the phpBB cookies
define('PHPBB_COOKIE_PREFIX', 'phpbb2mysql'); // The prefix used for board cookies
// Prefix and names for the database tables
define('PHPBB_TABLE_PREFIX', 'phpbb_'); // The prefix used for the DB tables
define('PHPBB_USER_TABLE', 'users'); // The members table
define('PHPBB_SESSION_TABLE', 'sessions'); // The session table
define('PHPBB_GROUP_TABLE', 'groups'); // The groups table
define('PHPBB_UGROUP_TABLE', 'user_group'); // The group/user table
================================================
init.inc.php
define('COPPERMINE_VERSION', '1.3.3');
// 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');
====================================================
Thank you in advance and all help is greatly appreciated.