Code: Select all
You have not yet delete the file install_tables.php : do it before trying to see this page.
Code: Select all
phpBB : Critical Error
Could not query log config informations
DEBUG MODE
SQL Error : 1146 Table 'coastco_phpb1.phpbb_logs_config' doesn't exist
SELECT config_value AS all_admin FROM phpbb_logs_config WHERE config_name = 'all_admin'
Line : 51
File : admin_logs_config.php
Code: Select all
Running query :: CREATE TABLE phpbb_logs ( id_log MEDIUMINT(10) NOT NULL DEFAULT '' AUTO_INCREMENT, mode VARCHAR(50) NULL DEFAULT '', topic_id MEDIUMINT(10) NULL DEFAULT '0', user_id MEDIUMINT(8) NULL DEFAULT '0', username VARCHAR(255) NULL DEFAULT '', user_ip CHAR(8) DEFAULT '0' NOT NULL, time INT(11) NULL DEFAULT '0', PRIMARY KEY (id_log)) -> ERROR - QUERY FAILED ----> Valeur par défaut invalide pour 'id_log'
but what do i do?morpheus2matrix wrote: Remove the default value of id_log in the installer
Code: Select all
$sql[] = "CREATE TABLE " . LOGS_TABLE . " (
id_log MEDIUMINT(10) NOT NULL DEFAULT '0' AUTO_INCREMENT,
mode VARCHAR(50) NULL DEFAULT '',
topic_id MEDIUMINT(10) NULL DEFAULT '0',
user_id MEDIUMINT(8) NULL DEFAULT '0',
username VARCHAR(255) NULL DEFAULT '',
user_ip CHAR(8) DEFAULT '0' NOT NULL,
time INT(11) NULL DEFAULT '0',
PRIMARY KEY (id_log))";
You have not yet delete the file install_tables.php : do it before trying to see this page
phpBB : Critical Error
Could not query log config informations
DEBUG MODE
SQL Error : 1146 Table 'workshop.phpbb_logs_config' doesn't exist
SELECT config_value AS all_admin FROM phpbb_logs_config WHERE config_name = 'all_admin'
Line : 51
File : admin_logs_config.php
Could not insert data into logs table
DEBUG MODE
SQL Error : 1146 Table 'workshop.phpbb_logs' doesn't exist
INSERT INTO phpbb_logs (mode, topic_id, user_id, username, user_ip, time) VALUES ('edit', '199', '2', 'Froggo', '54195778', '1117719995')
Line : 52
File : functions_log.php
MrDSL wrote: This would be an excellent mod if it actually worked and was being supported. I have some of the same errors posted above on a fresh 2.0.15 install.
Does anyone know of a mod like this that actually works and is still supported?
TMB wrote: The MOD does work with 2.0.15.
Code: Select all
phpBB : Critical Error
Could not query log config informations
DEBUG MODE
SQL Error : 1146 Table 'sirinus_phpb1.phpbb_logs_config' doesn't exist
SELECT config_value AS all_admin FROM phpbb_logs_config WHERE config_name = 'all_admin'
Line : 51
File : admin_logs_config.php
Code: Select all
--
-- Table structure for table `phpbb_logs`
--
CREATE TABLE `phpbb_logs` (
`id_log` mediumint(10) NOT NULL auto_increment,
`mode` varchar(50) default '',
`topic_id` mediumint(10) default '0',
`user_id` mediumint(8) default '0',
`username` varchar(255) default '',
`user_ip` varchar(8) NOT NULL default '0',
`time` int(11) default '0',
PRIMARY KEY (`id_log`)
) TYPE=MyISAM ;
--
-- Table structure for table `phpbb_logs_config`
--
CREATE TABLE `phpbb_logs_config` (
`config_name` varchar(255) NOT NULL default '',
`config_value` varchar(255) NOT NULL default '',
PRIMARY KEY (`config_name`)
) TYPE=MyISAM;
--
-- Dumping data for table `phpbb_logs_config`
--
INSERT INTO `phpbb_logs_config` VALUES ('all_admin', '0');