LogMe
Your number one chat logging solution
(MySQL database required!)
LogMe uses up-to-date technology to log your players chat and commands using an ultra-fast MySQL database.
Things to note
This plugin does not sanitize inputs for use on a webpage, it uses prepared statements to stop MySQL injection, though.
Infomation
Ever wanted to log every single thing your players type for reference in the future? Now you can with LogMe. All LogMe needs to log is a MySQL backend. LogMe is currently in beta, please report any errors you may have.
Database structure
CREATE TABLE IF NOT EXISTS `chat_logs` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`username` varchar(32) NOT NULL,
`time` int(255) NOT NULL,
`msg` text NOT NULL,
`ip` varchar(30) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `command_logs` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`username` varchar(32) NOT NULL,
`time` int(255) NOT NULL,
`msg` text NOT NULL,
`ip` varchar(30) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

