Best Blackhat Forum

Full Version: [GET] PHP Video Search Engine
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
[Image: di-R030.png]

PHP Video Search Engine is an advanced video search engine based on
YouTube’s Search API it’s a powerful tool for searching for videos, it
includes a series of filters and two types of displaying the results
which are list and grid, also it’s Adsense Ready (3 ad spots).

Features:
Code:
Video Search Engine (YouTube API )
Playing videos without going on external link (FancyBox included)
Two display types: grid and list
8 Filters, Sort by and Upload Date
Sort By: Relevancy, Date, rating, View Count
Upload Date: Today, This Week, This Month, All time
ToolTips included
and more…

Demo:
Code:
http://codecanyon.net/item/php-video-search-engine/3123910

Download:
Code:
http://fileband.com/y3233nts3vol.html
mirror please. Mediafire or dropbox.
Thanks Brother....
Mirror:

[hide]http://www.mediafire.com/?czmxca5s1r9sxij[/hide]
Thank a lot everyone!
user and password for administrator is not working..
change it in the database

default pass is

pricop2008@yahoo.com

user is admin

btw i made a simple script to get the most searched word in the last1 on google and post the startpage videos about that keyword:


PHP Code:
<?php
require_once('./includes/config.php');
mysql_connect($conf['host'], $conf['user'], $conf['pass']);
mysql_query('SET NAMES utf8');
mysql_select_db($conf['name']);
$trends = new ggltrends();
$keywords $trends->fetch_trends();
class 
ggltrends {
private 
$trendsurl 'http://www.google.com/trends/hottrends/atom/hourly';

    public function 
fetch_trends()
    {
        
$c curl_init($this->trendsurl);
        
curl_setopt($cCURLOPT_RETURNTRANSFER1);
        
$responsedata curl_exec($c);
        
curl_close($c);
        return 
$this->parse_trend_feed$responsedata );
    }

    private function 
parse_trend_feed$data ){
        
preg_match_all('/.+?<a href=".+?">(.+?)<\/a>.+?/',$data,$matches);
        return 
$matches[1];
    }
}
echo 
$keywords[0];
$sql "UPDATE settings SET app = \"".$keywords[0]."\"";
 
$insert mysql_query($sql);
    return 
$insert;
mysql_close();
?>

you can set cron to run that every hour at XX:01 :)
(01-25-2013 04:45 AM)x00001 Wrote: [ -> ]change it in the database

default pass is

pricop2008@yahoo.com

user is admin

btw i made a simple script to get the most searched word in the last1 on google and post the startpage videos about that keyword:


PHP Code:
(.+?)<\/a>.+?/',$data,$matches);
        return $matches[1];
    }
}
echo $keywords[0];
$sql = "UPDATE settings SET app = \"".$keywords[0]."\"";
 $insert = mysql_query($sql);
    return $insert;
mysql_close();
?>

you can set cron to run that every hour at XX:01 :)

I have change user/pass in dbase, also test with default but its still not working. Btw, how to install this script?
have you checked Documentation.html thats included in the package?
the password in the database have to be md5
(01-25-2013 05:24 AM)x00001 Wrote: [ -> ]have you checked Documentation.html thats included in the package?
the password in the database have to be md5
Yes, i have read it all. And i know the database password change like md5, but when i read on demo page, its says must be installed first, is there link to install it?
Pages: 1 2
Reference URL's