Quote:
Originally Posted by OGT
I am having a table prefix issue. what file in the 4images directory tells 4images what the vbulletin table prefix is?
not the 4images prefix, but the vbulletin prefix. i am getting errors that have the login page looking for dbname.tablename, when it needs to be looking at dbname.vb3_tablename
|
4images/include/constant.php
Make sure that you have correct prefix for these two variable.
// Table names
define('SESSIONS_TABLE', 'session');
define('USERS_TABLE', 'user');
Quote:
Well, I just went in and manually changed the user and session table in constants.php and template table in session.php, but now I am having group issues. Vbull groups didn't get ported over in this integration. is this possible or are the systems incompatible?
|
check the section bellow that
// User levels
define('GUEST', 0);
define('USER_AWAITING', 3);
define('USER', 2);
define('ADMIN', 6);
the number means groups.
... are you sure you did read the installation and intergration instruction correctly?