53.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")

10-23-2012, 08:36 AM (This post was last modified: 10-23-2012 08:37 AM by freelancheru.)
Post: #1
[GET] PHP Video Search Engine
[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
10-24-2012, 04:27 AM
Post: #2
RE:
mirror please. Mediafire or dropbox.
01-16-2013, 01:54 PM
Post: #3
RE:
Thanks Brother....
A +Rep is always appreciated. Cool
01-16-2013, 02:55 PM
Post: #4
RE:
Mirror:

[hide]http://www.mediafire.com/?czmxca5s1r9sxij[/hide]
A +Rep is always appreciated. Cool
01-18-2013, 11:18 AM
Post: #5
RE:
Thank a lot everyone!
63.gif
01-25-2013, 04:02 AM
Post: #6
RE:
user and password for administrator is not working..
01-25-2013, 04:45 AM (This post was last modified: 01-25-2013 04:54 AM by x00001.)
Post: #7
RE:
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, 05:14 AM
Post: #8
RE:
(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?
01-25-2013, 05:24 AM
Post: #9
RE:
have you checked Documentation.html thats included in the package?
the password in the database have to be md5
01-25-2013, 05:42 AM
Post: #10
RE:
(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?
85.gif




31.gif