das hast du doch mit bbclone...

yep, und wenn du, wie gesagt, den code in alle 'aufrufbaren' seiten einfügst, bekommst du wirklich gute statistiken. auch über die verwendeten browser, betriebssysteme, provider, herkunftsländer etc. etc. pp.~fReAk~TroNiC~ hat geschrieben:der is echt geil hihi
rabbit hat geschrieben:der link zum counter ist bei mir ganz oben im acp, wo man auch zum index kommt. hier die anleitung zum link erstellen:Code: Alles auswählen
############################################### ## Hack Title: Adding link in ACP ## Hack Version: 1.0.0 ## Author: Kipper ## Description: This hack adds a new link into your ACP which can link to anywhere you wish. ## Compatibility: 2.0.6 ## ## Installation Level: Easy ## Installation Time: 3 minutes ## Files To Edit: 3 ## admin/index.php ## language/lang_english/lang_admin.php ## templates/subSilver/admin/index_navigate.tpl ## ## History: ## 4th Jan 04:1.0.0:First Release - All in working order ## ## Authors Notes: ## Where you find NEW_LINK_NAME please change to the name you wish the link to be named. (Extra NOTE: Use '_' to seperate the words, and keep the same on every appearance) ## Where you find NEW_LINK_HERE please change to the URL you wish the link to link to. (Extra NOTE: Use '_' to seperate the words, and keep the same on every appearance) ## ## ## Support: http://www.phpbbsupport.co.uk ## Copyright: ©2004 Adding link in ACP 1.0.0 - Kipper ## ############################################### ## ############################################### ## This program is free software; you can redistribute it and/or ## modify it under the terms of the GNU General Public License ## as published by the Free Software Foundation; either version 2 ## of the License, or (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## http://www.gnu.org/copyleft/gpl.html ############################################### # #-----[ OPEN ]------------------------------------------ # admin/index.php # #-----[ FIND ]------------------------------------------ # "U_ADMIN_INDEX" => append_sid("index.$phpEx?pane=right"), # #-----[ ADD, AFTER ]------------------------------------------ # "U_NEW_LINK_NAME" => append_sid("NEW_LINK_HERE"), # #-----[ FIND ]-------------------------- # "L_PREVIEW_FORUM" => $lang['Preview_forum']) # #-----[ REPLACE WITH ]-------------------------- # "L_PREVIEW_FORUM" => $lang['Preview_forum'], # #-----[ ADD, AFTER ]-------------------------- # "L_NEW_LINK_NAME" => $lang['NEW_LINK_NAME']) # #-----[ OPEN ]-------------------------- # language/lang_english/lang_admin.php # #-----[ FIND ]-------------------------- # $lang['Preview_forum'] = 'Preview Forum'; # #-----[ ADD, AFTER ]-------------------------- # $lang['NEW_LINK_NAME'] = 'NEW_LINK_NAME'; # #-----[ OPEN ]-------------------------- # templates/subSilver/admin/index_navigate.tpl # #-----[ FIND ]-------------------------- # <tr> <td class="row1"><a href="{U_FORUM_INDEX}" target="main" class="genmed">{L_PREVIEW_FORUM}</a></td> </tr> # #-----[ ADD, AFTER ]-------------------------- # <tr> <td class="row1"><a href="{U_NEW_LINK_NAME}" target="main" class="genmed">{L_NEW_LINK_NAME}</a></td> </tr> # #-----[ SAVE & CLOSE ALL FILES ]-------------------------- # #End of Hack