download hack problem in admin panel

Enthält archivierte Beiträge von Hotschi's Board zum Download MOD.
Posten ist hier nicht möglich, bitte das Supportforum dafür verwenden!
Gesperrt
Anonymous

download hack problem in admin panel

Beitrag von Anonymous »

I am using the download hack 2.0.1 . Per recommendation i downloaded the bcdiv_bcmul zip file and have installed the includes/function_dl_bcmath.php

Code: Alles auswählen

<?php 

/*######################################### 
# 
# bcmath mathematische Nachbildung von bcdiv und bcmul wenn 
# diese nicht vom Provider bereit gestellt werden. 
# 
# Hier können später auch die restlichen Funktionen von bcmath 
# nachgebildet werden. 
# 
# Filename: function_dl_bcmath.php 
# 
# Contact: MARVIN4@web.de 
# Autor: Helmut.S und Karl.T 

#########################################*/ 



function bcmul($a, $b, $scale) 
{ 
$r = $a * $b; 
for ( $i=0; $i < $scale; $i++); 
$r = 10 * $r; 
$r = ((int) $r); 
for ( $i=0; $i < $scale; $i++); 
$r = 0.1 * $r; 
return $r; 
} 

function bcdiv($a, $b, $scale) 
{ 
$r = $a / $b; 
for ( $i=0; $i < $scale; $i++); 
$r = 10 * $r; 
$r = ((int) $r); 
for ( $i=0; $i < $scale; $i++); 
$r = 0.1 * $r; 
return $r; 
} 

?> 
and updated the files
admin/admin_dl_files.php
admin/admin_dl_traffic_all_users.php
admin/admin_dl_traffic_single_user.php
downloads.php
but now in the admin panel when I click on either of the trafic size or the file upload it is blank. any ideas
Anonymous

Re: download hack problem in admin panel

Beitrag von Anonymous »

Mein Deutscher ist nicht zum guten, also benutze ich babelfish. Ich benutze die Downloadkerbe 2.0.1. Pro Empfehlung downloadete ich die bcdiv_bcmul Zip Datei und habe das includes/function_dl_bcmath.php angebracht

/*#########################################
#
# bcmath mathematische Nachbildung von bcdiv und bcmul wenn
# diese nicht vom Provider bereit gestellt werden.
#
# Hier können später auch die restlichen Funktionen von bcmath
# nachgebildet werden.
#
# Filename: function_dl_bcmath.php
#
# Contact: MARVIN4@web.de
# Autor: Helmut.S und Karl.T
#########################################*/



function bcmul($a, $b, $scale)
{
$r = $a * $b;
for ( $i=0; $i < $scale; $i++);
$r = 10 * $r;
$r = ((int) $r);
for ( $i=0; $i < $scale; $i++);
$r = 0.1 * $r;
return $r;
}

function bcdiv($a, $b, $scale)
{
$r = $a / $b;
for ( $i=0; $i < $scale; $i++);
$r = 10 * $r;
$r = ((int) $r);
for ( $i=0; $i < $scale; $i++);
$r = 0.1 * $r;
return $r;
}

?> [/code]
und aktualisiert den Akten
  • admin/admin_dl_files.php
  • admin/admin_dl_traffic_all_users.php
  • admin/admin_dl_traffic_single_user.php
  • downloads.php
aber jetzt in der admin Verkleidung, wenn ich an entweder von der trafic Größe oder von der Akte Antriebskraft klicke,IST es leer. irgendwelche Ideen
Gesperrt