Wer war mit welchem Browser on - Gesamtstatistik
Verfasst: 13.09.2005 21:47
Gibt's für den ACP ne kleine Statstik, wieviele User mit welchen Browsern so auf der Seite waren?
Danke für die Hilfe
Danke für die Hilfe
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
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
Code: Alles auswählen
define("_BBC_PAGE_NAME", "SEITEN_NAME");
define("_BBCLONE_DIR", "bbclone/");
define("COUNTER", _BBCLONE_DIR."mark_page.php");
if (is_readable(COUNTER)) include_once(COUNTER);