29.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

04-20-2017, 10:41 PM
Post: #11
RE: [GET] - Mp3OraXtr - PHP Mp3 Search Engine v2.0.1
Yes you are right rlsper99 + 1rep
04-21-2017, 02:22 AM
Post: #12
RE: [GET] - Mp3OraXtr - PHP Mp3 Search Engine v2.0.1
Why you post here if you need money?? :D :D
[Image: bbhflogo2018.png]
04-21-2017, 03:51 AM
Post: #13
RE: [GET] - Mp3OraXtr - PHP Mp3 Search Engine v2.0.1
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
04-21-2017, 04:00 AM
Post: #14
RE: [GET] - Mp3OraXtr - PHP Mp3 Search Engine v2.0.1
upload mp3ora.sql
04-21-2017, 07:11 PM
Post: #15
RE: [GET] - Mp3OraXtr - PHP Mp3 Search Engine v2.0.1
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
11.gif




34.gif