Hi,
my bad I forgot to mention that you need to configure the other userdb options as well. This means this whole block here:
- Code: Select all
$CFG['UserDBEnabled'] = false;
$CFG['UserDBServer'] = "";
$CFG['UserDBPort'] = 3306;
$CFG['UserDBName'] = "";
$CFG['UserDBPref'] = "";
$CFG['UserDBUser'] = "";
$CFG['UserDBPass'] = "";
$CFG['UserDBLoginRequired'] = false;
This is automatically filled by the installer if you install the userdb system with the main installation.
However, now you need to fill in these options manually like this:
- Code: Select all
$CFG['UserDBEnabled'] = true;
$CFG['UserDBServer'] = "localhost";
$CFG['UserDBPort'] = 3306;
$CFG['UserDBName'] = "phplogcon";
$CFG['UserDBPref'] = "logcon_";
$CFG['UserDBUser'] = "phplogconuser";
$CFG['UserDBPass'] = "password";
$CFG['UserDBLoginRequired'] = false;
Once you have done so, the convert.php will start to work.
--
best regards,
Andre Lorbach
PS: I recommend to update to the latest version before you start the conversion which is 2.5.12 (See here:
http://www.phplogcon.org/downloads )