Quote:
Originally Posted by RS_Jelle
The images are using the same path, so it's a known problem (that's why we don't recommend it at this moment) 
You can fix it by modifying downloads.php. Find $dl->url in it and replace them (but not all) with the correct site url to the images.
You don't need to change for example:
PHP Code:
if (!is_dir($dl->url))
Only the images (img html tag), for example:
PHP Code:
<img src="'.$dl->url.$thumb_x['thumb'].'"
Change this example to (or something like that):
PHP Code:
<img src="/downloads/'.$thumb_x['thumb'].'"
Your second problem is also a known one, we need to built in an option that creates directories to seperate the files so you don't get such large directories.
|
Jelle et al,
Also, any plans for large uploads via ftp or something similar?
Thanks again!
-Jason