Install- Extract pasteLog-xxx file.
- Rename config.php-dist file to config.php
- Create 'pasteLog' table on mysql
CREATE TABLE `pasteLog` (
`id` int(11) NOT NULL auto_increment,
`post_time` datetime default NULL,
`nickname` varchar(17) default NULL,
`lang` varchar(32) default NULL,
`code` longtext,
`longip` int,
`pkey` varchar(32),
PRIMARY KEY (`id`),
INDEX (`longip`)
) TYPE=MyISAM; - Edit config.php file
|