155 |
- |
1 |
--
|
|
|
2 |
-- Seo Panel 3.3.0 changes
|
|
|
3 |
--
|
|
|
4 |
INSERT INTO `settings`(`set_label`, `set_name`, `set_val`, `set_category`, `set_type`, `display`) VALUES
|
|
|
5 |
('Crawl relative links in a page', 'SP_RELATIVE_LINK_CRAWL', '1', 'siteauditor', 'bool', '1');
|
|
|
6 |
|
|
|
7 |
UPDATE `searchengines` SET
|
|
|
8 |
`regex` = '<li.*?class="?g.*?<a.*?href="\\/url\\?q=(.*?)&sa=U.*?>(.*?)<\\/a>.*?<\\/div><span.*?>(.*?)<\\/span>'
|
|
|
9 |
WHERE `url` LIKE '%google%';
|
|
|
10 |
|
|
|
11 |
--
|
|
|
12 |
-- Table structure for table `featured_directories`
|
|
|
13 |
--
|
|
|
14 |
DROP TABLE IF EXISTS `featured_directories`;
|
|
|
15 |
CREATE TABLE IF NOT EXISTS `featured_directories` (
|
|
|
16 |
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
17 |
`directory_name` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
18 |
`directory_link` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
19 |
`google_pagerank` smallint(6) NOT NULL DEFAULT '0',
|
|
|
20 |
`coupon_code` varchar(120) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
21 |
`coupon_offer` float NOT NULL,
|
|
|
22 |
`status` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
23 |
PRIMARY KEY (`id`)
|
|
|
24 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ;
|
|
|
25 |
|
|
|
26 |
--
|
|
|
27 |
-- Dumping data for table `featured_directories`
|
|
|
28 |
--
|
|
|
29 |
|
|
|
30 |
INSERT INTO `featured_directories` (`id`, `directory_name`, `directory_link`, `google_pagerank`, `coupon_code`, `coupon_offer`, `status`) VALUES
|
|
|
31 |
(1, 'directory.seopanel.in', 'http://directory.seofreetools.net/submit.php?LINK_TYPE=featured', 4, '', 0, 1),
|
|
|
32 |
(2, 'directorypage.org', 'http://directorypage.org/submit.php?LINK_TYPE=4', 3, '', 0, 1),
|
|
|
33 |
(3, 'directorybook.net', 'http://directorybook.net/submit.php?LINK_TYPE=4', 3, '', 0, 1),
|
|
|
34 |
(4, 'beta-i.org', 'http://beta-i.org/submit.php?LINK_TYPE=4', 6, '', 0, 1);
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
--
|
|
|
38 |
-- Table structure for table `themes`
|
|
|
39 |
--
|
|
|
40 |
DROP TABLE IF EXISTS `themes`;
|
|
|
41 |
CREATE TABLE IF NOT EXISTS `themes` (
|
|
|
42 |
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
43 |
`name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
|
|
|
44 |
`folder` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
45 |
`author` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
|
|
|
46 |
`description` text COLLATE utf8_unicode_ci,
|
|
|
47 |
`version` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
|
|
|
48 |
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
|
|
|
49 |
`status` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
50 |
`installed` tinyint(1) NOT NULL DEFAULT '0',
|
|
|
51 |
PRIMARY KEY (`id`)
|
|
|
52 |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
|
|
|
53 |
|
|
|
54 |
--
|
|
|
55 |
-- Dumping data for table `themes`
|
|
|
56 |
--
|
|
|
57 |
|
|
|
58 |
INSERT INTO `themes` (`id`, `name`, `folder`, `author`, `description`, `version`, `website`, `status`, `installed`) VALUES
|
|
|
59 |
(1, 'Classic', 'classic', 'Geo Varghese', 'Classic theme of Seo Panel', '1.0.0', 'http://www.seopanel.in/theme/l/1/classic/', 1, 1),
|
|
|
60 |
(2, 'Simple', 'simple', 'Geo Varghese', 'Simple theme of Seo Panel', '1.0.0', 'http://www.seopanel.in/theme/l/2/simple/', 0, 1);
|