MODs: Nein
Dein Wissensstand: Einsteiger
Link zu Deinem Forum: [url]http://[/url]
PHP Version:
MySQL Version:
Was hast Du gemacht, bevor das Problem aufgetreten ist?
Was hast Du bereits versucht um das Problem zu lösen?
Fehlerbeschreibung und Nachricht
CrackerTracker Installation Abweichungen...
Ich habe Abweichungen zwischen dem Install Code und den was bei mir steht.
1.
In der Page_tail.php
Das soll gefinden werden:
Code: Alles auswählen
//
// Show the overall footer.
//
$admin_link = ( $userdata['user_level'] == ADMIN ) ? '<a href="admin/index.' . $phpEx . '?sid=' . $userdata['session_id'] . '">' . $lang['Admin_panel'] . '</a><br /><br />' : '';
Code: Alles auswählen
//
// Show the overall footer.
//
include_once($phpbb_root_path . 'includes/functions_jr_admin.' . $phpEx);
$admin_link = jr_admin_make_admin_link();
Code: Alles auswählen
#
#-----[ AFTER, ADD ]------------------------------------------
#
// Do we need the CTracker Counter File?
if (($ctrack_footerm == 3) or ($ctrack_footerm == 4))
{
$countername = $phpbb_root_path . "ctracker/counter.txt";
$count_value1 = @file_get_contents($countername);
}
if ($ctrack_footerm == 1)
{
// Button
$pubview = '<a href="http://www.cback.de" target="_blank"><img src="' . $phpbb_root_path . 'ctracker/images/ct_protect_button.gif" alt="CBACK.DE CrackerTracker" border="0"></a>';
}
else if ($ctrack_footerm == 2)
{
// Minibutton
$pubview = '<a href="http://www.cback.de" target="_blank"><img src="' . $phpbb_root_path . 'ctracker/images/ct_protect_small.gif" alt="CBACK.DE CrackerTracker" border="0"></a>';
}
else if ($ctrack_footerm == 3)
{
// Minibutton with Statistic
$pubview = '<a href="http://www.cback.de" target="_blank"><img src="' . $phpbb_root_path . 'ctracker/images/ct_protect_small.gif" alt="CBACK.DE CrackerTracker" border="0"></a><br><br>
<b>' . $count_value1 . '</b> blocked attacks<br>';
}
else if ($ctrack_footerm == 4)
{
// Textlink with Statistic
$pubview = 'Protected by <a href="http://www.cback.de" target="_blank">CBACK.DE CrackerTracker</a> and <a href="http://www.phpbb2.de" target="_blank">phpBB2.de</a>.<br><br>
<b>' . $count_value1 . '</b> blocked attacks<br>';
}
else
{
// Textlink
$pubview = 'Protected by <a href="http://www.cback.de" target="_blank">CBACK.DE CrackerTracker</a> and <a href="http://www.phpbb2.de" target="_blank">phpBB2.de</a>.';
}
_____________________________________
2.
In der fisubsilversh/overall_footer.tpl
soll ich das finden:
Code: Alles auswählen
Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> © 2001, 2005 phpBB Group<br />{TRANSLATION_INFO}</span></div>
##############
#
#-----[ IN-LINE FIND ]------------------------------------------
#
{TRANSLATION_INFO}
#######################################
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
<br /><br /><span class="gensmall">{CTRACKER_PUBLIC}</span><br />
####################################
Code: Alles auswählen
Powered by <a href="http://www.phpbb2.de/" target="_phpbb">phpBB2 Plus {PLUS_VERSION}</a> based on <a href="http://www.phpbb.com/" target="_phpbb">phpBB</a>
© 2001, 2005 phpBB Group :: <a href="http://www.forumimages.com/" target="_blank">FI Theme</a> :: <a href="{U_CREDITS}">{L_CREDITS}</a></td>
Code: Alles auswählen
Powered by <a href="http://www.phpbb2.de/" target="_phpbb">phpBB2 Plus {PLUS_VERSION}</a> and <a href="http://www.stylesdb.de/" target="_phpbb">Stylesdatabase</a> based on <a href="http://www.phpbb.com/" target="_phpbb">phpBB</a> {PHPBB_VERSION}
© 2001, 2002 phpBB Group :: <a href="http://www.forumimages.com/" target="_blank">FI Theme</a> :: <a href="{U_CREDITS}">{L_CREDITS}</a></td>
{TRANSLATION_INFO} ist in beiden Dateien nicht zu finden.
Viele Grüße
Diggi