Error msg when trying to integrate phpbb2 and C1.3 Error msg when trying to integrate phpbb2 and C1.3
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Error msg when trying to integrate phpbb2 and C1.3

Started by mygst95, January 29, 2005, 03:24:11 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

mygst95

Here is my phpbb.inc.php:

// database configuration
define('PHPBB_DB_NAME', '*********'); // The name of the database used by the board
define('PHPBB_BD_HOST', 'localhost'); // 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', '../');
// 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);


Here is my inint.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();


I put the redir.php into the root directy.  Here is the error I get:

Fatal error :

There was an error while processing a database query.

While executing query "SELECT user_id, username as user_name, user_level FROM `*******`.phpbb_users WHERE user_id='2' AND user_password='' AND user_active='1'" on 0

mySQL error: Table '********.phpbb_users' doesn't exist


Where did I go wrong?

The web boards is www.sacramento-dsm.com.  The gallery is www.sacramento-dsm.com/gallery.
Manny

mygst95

Ok! I seemed to have got it working, but now, when I click on "MemberList" or "Users" when in Admin mode, it goes back to the Forums.  Is this a common issue?

Manny


Joachim Müller