Quote:
Originally Posted by RS_Jelle
It's in downloads.php:
PHP Code:
// check for http on beginning of link or d/l won't work
if (strpos($newfilename, "http://") === false AND strpos($newfilename, "https://") === false AND strpos($newfilename, "ftp://") === false)
{
$newfilename = "http://".$newfilename;
}
.
|
Would it be possible by changing the above to remove the "https://" to make the software call the file from an absolute path - thus allowing files to be stored subroot and linked to?