I'm attempting to make this work with SSL and port 4443 (as opposed to 443) and running into a few snags.
Uploads 'just worked' out of the box. GREAT! Downloads are giving me grief.
I updated download.php as follows
where there was just one $link file, I've replaced the line with...
if ($_SERVER["HTTPS"] == "on")
$link = "https:// . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . $foo;
else
$link = "http:// . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . $foo;
I don't have a quick and easy way to find out if this change will still work on normal setups, but, at least, now the dl/*.db files are written with the correct link in them. However, downloads are still failing. Any ideas where else the system may have http:// or a port number hard coded?