Seite 1 von 1

download hack problem in admin panel

Verfasst: Mi 07.Jan, 2004 03:22
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

Re: download hack problem in admin panel

Verfasst: Di 13.Jan, 2004 01:04
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