download hack problem in admin panel
Verfasst: Mi 07.Jan, 2004 03:22
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
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
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;
}
?> 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