Hi,
I'm trying to pass on the size of a certain file for the download manager.... Until now the size is always unknown over ftp.
I'm using this code:
$size = filesize($url);
header("Content-Length: $size");
Is there anything wrong? Because it's still "unknown".
TIA