Önce sitenizin yedeğini alarak aşağıdaki sorguyu phpmyadmin'e girerek çalıştırın
--
-- Tablo yapısı : `mkp_mainlinks`
--
DROP TABLE IF EXISTS `mkp_mainlinks`;
CREATE TABLE IF NOT EXISTS `mkp_mainlinks` (
`id` int(10) NOT NULL auto_increment,
`icon` text,
`title` varchar(255) NOT NULL default '',
`url` text,
`type` tinyint(2) NOT NULL default '0',
`position` int(2) NOT NULL default '12',
`target` tinyint(1) NOT NULL default '0',
`active` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;
--
-- Tablo döküm verisi `mkp_mainlinks`
--
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (1, '<IMG>/atb_home.gif', '<LNG>home', '<MKURL>/index.php', 1, 1, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (2, '<IMG>/atb_forum.gif', '<LNG>forum', '<MKFURL>', 1, 2, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (3, '<IMG>/atb_blog.gif', '<LNG>blog', '<MKURL>/index.php?ind=blog', 1, 3, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (4, '<IMG>/atb_foto.gif', '<LNG>gallery', '<MKURL>/index.php?ind=gallery', 1, 4, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (5, '<IMG>/atb_urlo.gif', '<LNG>urlobox', '<MKURL>/index.php?ind=urlobox', 1, 5, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (6, '<IMG>/atb_down.gif', '<LNG>download', '<MKURL>/index.php?ind=downloads', 1, 6, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (7, '<IMG>/atb_racconti.gif', '<LNG>news', '<MKURL>/index.php?ind=news', 1, 7, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (8, '<IMG>/atb_toplist.gif', '<LNG>topsite', '<MKURL>/index.php?ind=topsite', 1, 8, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (9, '<IMG>/atb_media.gif', '<LNG>reviews', '<MKURL>/index.php?ind=reviews', 1, 9, 0, 1);
INSERT DELAYED IGNORE INTO `mkp_mainlinks` (`id`, `icon`, `title`, `url`, `type`, `position`, `target`, `active`) VALUES (10, '<IMG>/atb_chat.gif', '<LNG>chat', '<MKURL>/index.php?ind=chat', 1, 10, 0, 1);