TwitteReader self-hosting instructionsTwitteReader works with MySQL and PHP, so be sure to have both installed and access on the host.
--
-- Table structure for table `tr_users` -- CREATE TABLE `tr_users` ( `id` int(10) unsigned NOT NULL auto_increment, `username` varchar(50) character set utf8 collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=0; -- -- Table structure for table `tr_marked` -- CREATE TABLE `tr_marked` ( `username` varchar(50) character set utf8 collate utf8_unicode_ci NOT NULL, `id` bigint(20) unsigned NOT NULL, `date` int(10) unsigned NOT NULL, UNIQUE KEY `username` (`username`,`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; These instructions are also inside the package, under INSTALL.txt |
|