Code:
-- --------------------------------------------------------
--
-- Dumping data for table `engine4_core_modules`
--
INSERT INTO `engine4_core_modules` (`name`, `title`, `description`, `version`, `enabled`, `type`) VALUES
('tracker', 'Profile tracking', 'Profile tracking + invisibility', '4.0.2', 1, 'extra');
-- --------------------------------------------------------
--
-- Table structure for table `engine4_tracker_accounts`
--
CREATE TABLE IF NOT EXISTS `engine4_tracker_accounts` (
`account_id` int(10) unsigned NOT NULL,
`start_date` datetime NOT NULL,
`day_count` int(10) unsigned NOT NULL,
`state` int(1) unsigned NOT NULL,
PRIMARY KEY (`account_id`),
UNIQUE KEY `user_id` (`account_id`),
UNIQUE KEY `user_id_2` (`account_id`),
UNIQUE KEY `user_id_3` (`account_id`),
UNIQUE KEY `user_id_4` (`account_id`),
UNIQUE KEY `user_id_5` (`account_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `engine4_tracker_payments`
--
CREATE TABLE IF NOT EXISTS `engine4_tracker_payments` (
`payment_id` int(10) unsigned NOT NULL auto_increment,
`tariff_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`payment_date` datetime NOT NULL,
`payment_price` decimal(9,2) unsigned NOT NULL,
`payment_status` enum('pending','paid','failed') NOT NULL,
`txn_id` varchar(20) NOT NULL,
PRIMARY KEY (`payment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `engine4_tracker_tariffs`
--
CREATE TABLE IF NOT EXISTS `engine4_tracker_tariffs` (
`tariff_id` int(10) unsigned NOT NULL auto_increment,
`day_count` int(11) NOT NULL,
`price` decimal(9,2) NOT NULL,
PRIMARY KEY (`tariff_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `engine4_tracker_views`
--
CREATE TABLE IF NOT EXISTS `engine4_tracker_views` (
`view_id` int(11) NOT NULL auto_increment,
`viewer_user_id` int(10) unsigned NOT NULL,
`viewed_user_id` int(10) unsigned NOT NULL,
`view_date` datetime NOT NULL,
PRIMARY KEY (`view_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Dumping data for table `engine4_core_content`
--
SET @page_id = (SELECT `page_id` FROM `engine4_core_pages` WHERE `name` = 'user_profile_index' LIMIT 1);
SET @parent_id = (SELECT `content_id` FROM `engine4_core_content` WHERE `page_id` = @page_id AND `type` = 'widget' AND `name` = 'core.container-tabs' LIMIT 1);
INSERT INTO `engine4_core_content` (`page_id`, `type`, `name`, `parent_content_id`, `order`, `params`, `attribs`) VALUES
( @page_id, 'widget', 'tracker.profile-views', @parent_id, 3, '{"title":"Profile Views","titleCount":true}', '');
-- --------------------------------------------------------
--
-- Dumping data for table `engine4_core_menuitems`
--
INSERT INTO `engine4_core_menuitems` (`name`, `module`, `label`, `plugin`, `params`, `menu`, `submenu`, `custom`, `order`) VALUES
('tracker_admin_main_settings', 'tracker', 'Settings', '', '{"route":"admin_default","module":"tracker", "controller":"settings"}', 'tracker_admin_main', '', 0, 999),
('tracker_admin_main_tariffs', 'tracker', 'Edit tariffs', '', '{"route":"admin_default","module":"tracker", "controller":"settings" , "action":"tariffs" }', 'tracker_admin_main', '', 0, 999),
('core_admin_main_plugins_tracker', 'tracker', 'Profile tracking', '', '{"route":"admin_default","module":"tracker", "controller":"settings"}', 'core_admin_main_plugins', '', 0, 999),
('tracker_invisibility_manage', 'tracker', 'Change invisibility status', 'Tracker_Plugin_Core', '{"route":"default","module":"tracker", "controller":"index" , "action":"manage" }', 'tracker_invisibility', '', 0, 999),
('tracker_invisibility_prolong', 'tracker', 'Prolong', 'Tracker_Plugin_Core', '{"route":"default","module":"tracker", "controller":"index" , "action":"prolong"}', 'tracker_invisibility', '', 0, 999);
А теперь сравните с тем, что Вы разместили!