Best Blackhat Forum

Full Version: [GET] - Mp3OraXtr - PHP Mp3 Search Engine v2.0.1
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Yes you are right rlsper99 + 1rep
Why you post here if you need money?? :D :D
20 USD!!
That script sold for $23 (Regular License)

Here is Mysql schema go ahead and use it, if you know what to do

mp3ora.sql
Code:
CREATE TABLE IF NOT EXISTS `search` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `tag` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;

CREATE TABLE IF NOT EXISTS `download` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `vid_id` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

CREATE TABLE IF NOT EXISTS `dmca` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `dmca` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

INSERT INTO `search` (`tag`) VALUES
('test');



OR

Replace 'install/install.php' with this file
Code:
http://www19.zippyshare.com/v/vmY8CY4S/file.html

[warn]: this script have bugs and some functions not work at all
upload mp3ora.sql
PHP Code:
CREATE TABLE IF NOT EXISTS `download` (
`
idint(10unsigned NOT NULL AUTO_INCREMENT,
`
titlevarchar(255) DEFAULT NULL,
`
bitsvarchar(100) DEFAULT NULL,
`
durationvarchar(10) DEFAULT NULL,
`
milisecint(10unsigned DEFAULT NULL,
`
uploadervarchar(150) DEFAULT NULL,
`
covervarchar(255) DEFAULT NULL,
`
cover_largevarchar(255) DEFAULT NULL,
`
vid_idvarchar(255) DEFAULT NULL,
`
likevarchar(15) DEFAULT NULL,
`
sizevarchar(15) DEFAULT NULL,
PRIMARY KEY (`id`)
ENGINE=InnoDB AUTO_INCREMENT=DEFAULT CHARSET=utf8;


CREATE TABLE IF NOT EXISTS `search` (
`
idint(10unsigned NOT NULL AUTO_INCREMENT,
`
tagtext,
PRIMARY KEY (`id`)
ENGINE=InnoDB AUTO_INCREMENT=DEFAULT CHARSET=utf8
Pages: 1 2
Reference URL's