problem with file listing.
There is a bug with listing the file size.
If the file is bigger then 4GB that it's showing strange file size.
File is 7,56GB but only showing 3,13GB ???
On php.net they say to just this formula!
$myfilesize = sprintf("%u", filesize("c:/xx/xx/xx.xx"));
echo"<p>$myfilesize</p>";
if($myfilesize >= 1073741824) {
$myyfilesize = number_format($myfilesize/1073741824,2,',','\'');
$myxfilesize = "$myyfilesize GB";
}
else {
...
...
}
...
...