Habe in nem Forum gesehen,dass im index unten steht,wie oft der google bot schon da war.des hätt ich auch gerne für mein forum

Code: Alles auswählen
############################################################################
## MOD Ttile : Google Visit Counter
## MOD Author : Dr DLP http://www.web-lapin.levillage.org/forum/
## MOD Description : Adds a google bot visit counter on index
## MOD Version : 1.0.0.
##
## Scripts :
## Google Track : Mojy ( < webmaster@mypsychedelicsite.com > (J.M.)
## http://www.mypsychedelicsite.com ) / Editeur Javascrpit
## Visit Counter : Smartor ( < smartor_xp@hotmail.com > (Hoang Ngoc Tu) http://smartor.is-root.com
##
## Installation level : Easy
## Iinstallation time : 5 Minutes
##
## Files to edit : 3
## -language/lang_french/lang_main.php
## -includes/page_header.php
## -templates/subSilver/index_body.tpl
##
## Files to include : n/a
##
##############################################################
...
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
//
// Parse and show the overall header.
//
$template->set_filenames(array(
'overall_header' => ( empty($gen_simple_header) ) ? 'overall_header.tpl' : 'simple_header.tpl')
);
#
#-----[ BEFORE , ADD ]-------------------------------------
#
//
// Dr DLP's Google Visit Counter MOD
//
$google_visit_counter = $board_config['google_visit_counter'];
$tmp_list = explode(".", $REMOTE_ADDR);
if (($tmp_list[0] == "64" && $tmp_list[1] == "68" && $tmp_list[2] == "82") || ($tmp_list[0] == "216" && $tmp_list[1] == "239" && $tmp_list[2] == "46"))
{
$sql = "UPDATE " . CONFIG_TABLE . "
SET config_value = '" . ($google_visit_counter + 1) . "'
WHERE config_name = 'google_visit_counter'";
if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not update google counter information', '', __LINE__, __FILE__, $sql);
}
$google_visit_counter++;
}
// ------------------------------------
//
...
#
#-----[ SAVE/CLOSE ALL FILES ]-----------
#
# EoM
http://www.phpbbhacks.com ist dein freundleider ist der Download nicht verfügbar. Hast du einen alternativen Link?