Updated missing rpchosts SQL
-- Table structure for table `rpchosts`
--
CREATE TABLE IF NOT EXISTS `rpchosts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ipaddress` varchar(16) NOT NULL DEFAULT '',
`port` int(10) unsigned NOT NULL DEFAULT '2198',
`authkey` varchar(255) NOT NULL DEFAULT '',
`title` varchar(128) NOT NULL DEFAULT '',
`isrelay` tinyint(3) unsigned NOT NULL DEFAULT '0',
`ismaster` tinyint(3) unsigned NOT NULL DEFAULT '1',
`defaultip` varchar(16) NOT NULL DEFAULT '',
`daemontype` varchar(16) NOT NULL DEFAULT 'RPC',
`hostname` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `rpchosts`
--
INSERT INTO `rpchosts` (`id`, `ipaddress`, `port`, `authkey`, `title`, `isrelay`, `ismaster`, `defaultip`, `daemontype`, `hostname`) VALUES
(1, '127.0.0.1', 2198, 'jSxC5nKRyYmXBXL6IAynXR0bXSDBxW39qbX8D2IGsPM=', 'Local server', 1, 1, 'xxx.xxx.151.57', 'RPC', '');
Will Update when tested
George