04-20-2017, 10:41 PM
Pages: 1 2
04-21-2017, 02:22 AM
Why you post here if you need money?? :D :D
04-21-2017, 03:51 AM
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
OR
Replace 'install/install.php' with this file
[warn]: this script have bugs and some functions not work at all
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
04-21-2017, 04:00 AM
upload mp3ora.sql
04-21-2017, 07:11 PM
PHP Code:
CREATE TABLE IF NOT EXISTS `download` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`bits` varchar(100) DEFAULT NULL,
`duration` varchar(10) DEFAULT NULL,
`milisec` int(10) unsigned DEFAULT NULL,
`uploader` varchar(150) DEFAULT NULL,
`cover` varchar(255) DEFAULT NULL,
`cover_large` varchar(255) DEFAULT NULL,
`vid_id` varchar(255) DEFAULT NULL,
`like` varchar(15) DEFAULT NULL,
`size` varchar(15) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `search` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tag` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
Pages: 1 2