Count filedownloads with AWstats

Submitting your vote...
Not rated yet. Be the first who rates this item!
Click the rating bar to rate this item.

Add following extra section to typo3conf/ext/cc_awstats/awstats/awstats.conf

 

ExtraSectionName1="Top Downloads"

ExtraSectionCodeFilter1="200"

ExtraSectionCondition1="URL,\.(pdf|doc|zip|xls|ppt|csv|jpg)$"

ExtraSectionFirstColumnTitle1="URL"

ExtraSectionFirstColumnValues1="URL,(.*)"

ExtraSectionStatTypes1=PHB

MaxNbOfExtra1=100

MinHitExtra1=1

 

 

Add to your typoscript setup following for the content type text

 

tt_content.text.20.parseFunc.tags {
  link.stripNL = 0
  link = PHP_SCRIPT 
  link.file = fileadmin/scripts/tags.php
   
}

 

 

file file leadmin/scripts/tags.php, rewrites all links to fileadmin

<?

$GLOBALS["TSFE"]->set_no_cache();

$params=explode(' ',$this->parameters['allParams']);

$link['parameter']=$params[0];

$link['target']=$params[1];

$this->linkCounter++;

if(substr($params[0],0,10)=='fileadmin/'){

$link['parameter']='fileadmin/count.php?f='.urlencode($params[0]);;

}

$content.=$this->typolink($this->getCurrentVal(),$link);

?>

 

 

file fileadmin/count.php, writes download to log file. logFile is the same as the file in config.stat_apache_logfile.

<?

$logFile='stat_apache.log';

$fileName=urldecode($_GET['f']);

$referer=getEnv('HTTP_REFERER');

$ua=getEnv('HTTP_USER_AGENT');

$remoteHost=getEnv('REMOTE_HOST')?getEnv('REMOTE_HOST'):getEnv('REMOTE_ADDR');

$LogLine = $remoteHost.' - - '.Date('[d/M/Y:H:i:s +0000]').' "GET /'.$fileName.' HTTP/1.1" 200 '.filesize('../'.$fileName);

$LogLine.= ' "'.$referer.'" "'.$ua.'"';

$logfilehandle = fopen($logFile, 'a');

fputs($logfilehandle, $LogLine."\n");

@fclose($logfilehandle);

header("Location:".$fileName);

?>

more informations

Awstats Dokumentation

Typoscript by Example - Userdefined tags

TSRef tags

TSRef parseFunc

 


Top 10 Updates

Using lightbox without extension geändert am  13-Jun-2008 14:20:51
Custom field for GMENU alt text geändert am  13-Jun-2008 13:58:07
Extending typoscript properties with stdWrap geändert am  13-Jun-2008 13:54:32
Create menus using data from other tables than "pages" V2  geändert am  24-Mar-2008 13:02:09
Login geändert am  17-Mar-2008 12:47:52
Forum geändert am  17-Mar-2008 10:07:47
Who is Typo3wizard.com geändert am  26-Dec-2007 16:07:32
Menu as un-nested lists (iphone navigation) geändert am  29-Oct-2007 15:05:53
IF Conditions with AND and OR operators geändert am  16-Oct-2007 19:16:04
UserFunc to fix problems with HMENU type "special=updated"  geändert am  16-Oct-2007 18:58:40
Deutsch
Search: