CrackFeed.Com
Account Closed
- Impact
- 13
Categorized links database of 100% human reviewed links, no filler. Includes, title, description, keywords, Alexa Rank, Categories and number of links in each category. Keywords filled upon request, some people just search the title and description so I leave blank by default but my compiler auto creates the keywords if I tell it to.
Give me 24 hours after payment to deliver please, I create each database to order so that no 2 are identical. After purchase I will ask you a few questions to personalize your database like how many category tiers you want.
Very fast and optimized databases, very well organized. If you need more links, PM me to arrange bulk pricing. This saves you money! I can deliver up to 2 million links per database. Very large order take more time to compile. I can also customize the schema and table attributes, like the collation.
Example of my databases in use:http://driaconsulting.com/
Price: $49.99 for 50,000+ unique links or $5 for each 5,000
Bonus: Namepros members get a bonus 20,000 links added.
View screenshots from phpmyadmin or purchase.
Features and Attributes:
Links table sample:
Categories table sample:
Give me 24 hours after payment to deliver please, I create each database to order so that no 2 are identical. After purchase I will ask you a few questions to personalize your database like how many category tiers you want.
Very fast and optimized databases, very well organized. If you need more links, PM me to arrange bulk pricing. This saves you money! I can deliver up to 2 million links per database. Very large order take more time to compile. I can also customize the schema and table attributes, like the collation.
Example of my databases in use:http://driaconsulting.com/
Price: $49.99 for 50,000+ unique links or $5 for each 5,000
Bonus: Namepros members get a bonus 20,000 links added.
View screenshots from phpmyadmin or purchase.
Features and Attributes:
- Includes 70,000 Links
- Not scraped data, 100% human reviewed.
- MySQL format
- CSV Format (optional)
- Excell Format (optional)
- Each customer recieves a unique database
- Specify how many levels deep you want your categories up to 5 deep. I recommend no more than 4.
- Speparate database table for links and categories.
Links table sample:
Code:
CREATE TABLE IF NOT EXISTS `links` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`cat_id` int(20) NOT NULL DEFAULT '0',
`cat_name` varchar(180) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'NONE',
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`title` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
`desc` text COLLATE utf8_unicode_ci NOT NULL,
`keywords` text COLLATE utf8_unicode_ci,
`alexaRank` mediumint(8) NOT NULL DEFAULT '0',
`parent` int(20) NOT NULL DEFAULT '0',
`paid` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `url` (`url`),
FULLTEXT KEY `cat_name` (`cat_name`,`url`,`title`,`desc`,`keywords`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=317719 ;
--
-- Dumping data for table `links`
--
INSERT INTO `links` (`id`, `cat_id`, `cat_name`, `url`, `title`, `desc`, `keywords`, `alexaRank`, `parent`, `paid`) VALUES
(2, 998601, 'News and Events', 'http://universe.byu.edu/', 'Daily Universe', 'Student newspaper of Brigham Young University in Provo.', NULL, 5082, 0, 1),
(7, 998601, 'News and Events', 'http://www.wsusignpost.com/', 'The WSU Signpost', 'Thrice-weekly student newspaper of Weber State University in Ogden.', NULL, 3150307, 0, 1),
(32, 998601, 'News and Events', 'http://fairfieldchampion.com.au/', 'Fairfield City Champion', 'With almost 100,000 readers, this weekly paper is distributed free to dozens of suburbs including Abbotsbury, Cabramatta, Edensor Park, Fairfield, Greenfield Park, a', NULL, 2106130, 0, 1);
Categories table sample:
Code:
CREATE TABLE IF NOT EXISTS `categories` (
`cat_id` int(20) NOT NULL AUTO_INCREMENT,
`parent` int(50) NOT NULL,
`cat_name` varchar(180) COLLATE utf8_unicode_ci NOT NULL,
`count` int(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`cat_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1007860 ;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`cat_id`, `parent`, `cat_name`, `count`) VALUES
(442411, 0, 'Home and Garden', 269),
(443545, 443001, 'Baking and Confections', 214),
(815879, 815589, 'Elements', 208),
(274774, 274660, 'Restaurant Chains', 202);
Last edited:





