出现如下界面:
Could not find the configured table, maybe misspelled or the tablenames are case sensitive
需要修改config.php中的$CFG['Sources']['Source1']['DBTableName'] = 'SystemEvents'; 大小写不一致
同时修改数据库:
Mysql -uroot -p
Use Syslog;
mysql> update logcon_sources set DBTableName='SystemEvents' where ID=1;
mysql> flush privileges;
发表评论: