GIDForums  

Go Back   GIDForums > Computer Programming Forums > MySQL / PHP Forum
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #1  
Old 11-Mar-2003, 10:39
jrobbio's Avatar
jrobbio jrobbio is offline
Regular Member
 
Join Date: Jan 2003
Location: Loughborough, England
Posts: 840
jrobbio will become famous soon enough

PHP script to show last referrer url and top referrer to your site


I am trying to implement to the following script into my site but I get the following error. Something like:
mysql_fetch_array is not a mySQL request. What is wrong? Have I just not followed the instructions correctly or is it the mySQL version? Cheers
jrobbio

PHP Code:

<?php

//problems? suggestions? email the author!
//
// [email]nathan@ncyoung.com[/email]

//get most linked to pages on site
//select count(visitURL) as count, visitURL from referer_visitLog group by visitURL order by count desc

mysql_connect("dbHost", "dbUser", "dbPass");
mysql_select_db("dbName");

if ($refererList){
print "referers:
";
$ar = refererList($refererList,"global");
print join("
",$ar);
}
if ($topRefererList){
print join("
",topRefererList($topRefererList,"global"));
}

function logReferer(){


$currentURL = $_SERVER['REQUEST_URI'];
$fullCurrentURL = "http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];

$ref = getenv('HTTP_REFERER');

if (!$ref){
dbg("no referer");
return;
}

if ($ref != strip_tags($ref)){
//then they have tried something funny,
//putting HTML or PHP into the HTTP_REFERER
dbg("bad char in referer");
return;
}

$ignore = Array(
'your domain',
'http://www.myelin.co.nz/ecosystem/bot.php',
'http://radio.xmlstoragesystem.com/rcsPublic/',
'http://blogdex.media.mit.edu//',
'http://subhonker6.userland.com/rcsPublic/',
'mastadonte.com',

);
foreach ($ignore as $site){
if (stristr($ref, $site)){
dbg("referer ignored");
return;
}
}

$doubleCheckReferers = 0;

if ($doubleCheckReferers){

dbg("loading referering page");

//this is so that the page up until the call to
//logReferer will get shown before it tries to check
//back against the refering URL.
flush();

$goodReferer = 0;
$fp = @fopen ($ref, "r");
if ($fp){
//timeout after 5 seconds
socket_set_timeout($fp, 5);
while (!feof ($fp)) {
$page .= trim(fgets($fp));
}
if (strstr($page,$fullCurrentURL)){
dbg("found current url in page");
$goodReferer = 1;
}
}

if(!$goodReferer){
dbg("did not find \n\n:$fullCurrentURL:\n in \n\n\n :$page: \n\n\n");
return;
}

}



$anchor = preg_replace("/http:\/\//i", "", $ref);
$anchor = preg_replace("/^www\./i", "", $anchor);
$anchor = preg_replace("/\/.*/i", "", $anchor);

$sql ="insert into referer_visitLog (referingURL,baseDomain,visitURL) values ('$ref','$anchor','$currentURL')";

//print $sql;

mysql_query($sql);

}



function refererList ($howMany=5,$visitURL=""){

$i=2;

$ret = Array();

//if no visitURL, will show links to current page.
//if url given, will show links to that page.
//if url="global" will show links to all pages
if (!$visitURL){

$visitURL = $_SERVER['REQUEST_URI'];

}

if ($visitURL == "global"){
$sqr_recentReferer = mysql_query("select * from referer_visitLog order by visitID desc");
}
else {
$sqr_recentReferer = mysql_query("select * from referer_visitLog where visitURL = '$visitURL' order by visitID desc");
}



while($result_row = mysql_fetch_array($sqr_recentReferer)){

$fullUrl = $result_row['referingURL'];
$domain = $result_row['baseDomain'];
if (!$domain){
continue;
}

if ($last[$domain]){
continue;
}
$last[$domain] = 1;


$temp = "$domain";
array_push($ret,$temp);

if ($i++ > $howMany){
break;
}

}
return $ret;
}


function topRefererList ($howMany=5,$visitURL=""){


$i=2;

$ret = Array();


//see refererList() for notes.
if (!$visitURL){
$visitURL = $_SERVER['REQUEST_URI'];
}

if ($visitURL == "global"){
$sqr_recentReferer = mysql_query("select Count(referer_visitLog.baseDomain) as totalHits, referer_visitLog.baseDomain from referer_visitLog group by referer_visitLog.baseDomain order by totalHits desc limit $howMany");
}
else {
$sqr_recentReferer = mysql_query("select Count(referer_visitLog.baseDomain) as totalHits, referer_visitLog.baseDomain from referer_visitLog where visitURL = '$visitURL' group by referer_visitLog.baseDomain order by totalHits desc limit $howMany");
}

while($result_row = mysql_fetch_array($sqr_recentReferer)){

$count = $result_row['totalHits'];
$domain = $result_row['baseDomain'];

$uSet = mysql_query("select * from referer_visitLog where baseDomain = '$domain' order by visitID desc");
$uRow = mysql_fetch_array($uSet);
$latestUrl = $uRow["referingURL"];

$temp = "$domain ($count)";
array_push($ret,$temp);

if ($i++ > $howMany){
break;
}

}
return $ret;
}

function dbg($string){
//print $string . "\n";
}


if ($createTable){
print "Creating table:
";
mysql_query("
create table referer_visitLog (
visitID int auto_increment,
primary key (visitID),
visitTime timestamp,
visitURL char(250),
referingURL char(250),
baseDomain char(250)
)
") or print "could not create table, might it exist?";
}




/*

Usage:

You must include the library in order to use it. Issue the include statement once on each page in which you want to use this library, before you call any of the functions. A typical include statement would be:

include("refererLib.php");

To log the referers visiting a given page, place this code on the page:

logReferer();


To show a list of 5 pages that link to the current page (ordered by most recent visit) place this code:

$list = refererList(5);
foreach ($list as $link){
print "$link
";
}

To show a list of the outside links most commonly used to get to the current page:

$list = topRefererList(5);
foreach ($list as $link){
print "$link
";
}

In both cases, you can ask for a global list, i.e. a list of recent or top referers for all pages on your site that log referers:

$list = refererList(5,"global");
foreach ($list as $link){
print "$link
";
}

Or:

$list = topRefererList(5,"global");
foreach ($list as $link){
print "$link
";
}

*/
?>

  #2  
Old 13-Mar-2003, 07:53
jrobbio's Avatar
jrobbio jrobbio is offline
Regular Member
 
Join Date: Jan 2003
Location: Loughborough, England
Posts: 840
jrobbio will become famous soon enough
It turned out that you have to make the mySQL table yourself and then it works very nicely.
  #3  
Old 29-Mar-2004, 08:59
t94xr t94xr is offline
New Member
 
Join Date: Mar 2004
Posts: 1
t94xr is on a distinguished road
Quote:
Originally Posted by jrobbio
It turned out that you have to make the mySQL table yourself and then it works very nicely.
Whats the MySQL code to make the table?
  #4  
Old 23-Jul-2004, 07:48
jrobbio's Avatar
jrobbio jrobbio is offline
Regular Member
 
Join Date: Jan 2003
Location: Loughborough, England
Posts: 840
jrobbio will become famous soon enough
Quote:
Originally Posted by t94xr
Whats the MySQL code to make the table?
do you use phpmyadmin? its just a matter of creating the tables the rest will be done for you.

Rob
  #5  
Old 14-May-2006, 06:10
J S J S is offline
New Member
 
Join Date: May 2006
Posts: 1
J S is on a distinguished road

Re: PHP script to show last referrer url and top referrer to your site


Well, just take a look at the file you show us and you`ll see the mysql.


Code:
create table referer_visitLog ( visitID int auto_increment, primary key (visitID), visitTime timestamp, visitURL char(250), referingURL char(250), baseDomain char(250) )

Open up you phpmyadmin, select your database and run that query, and you`re done!
  #6  
Old 21-May-2006, 23:08
webserverzone webserverzone is offline
New Member
 
Join Date: May 2006
Posts: 2
webserverzone is on a distinguished road

Re: PHP script to show last referrer url and top referrer to your site


Been looking for some flash tutorials for clients. On how to use phpmyadmin.

Does anyone know of any.
  #7  
Old 22-May-2006, 01:06
tanmoy_serscopl tanmoy_serscopl is offline
New Member
 
Join Date: May 2006
Posts: 1
tanmoy_serscopl is on a distinguished road

Re: PHP script to show last referrer url and top referrer to your site


I faced a problem. I didnt get the reffer url like google or yahoo everytime a user hits the url from google or yahoo. How can i get the refferer.
 
 

Recent GIDBlogFirst week of IA training by crystalattice

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 07:01.


vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.