Quote:
Originally Posted by thecool444
Ah thankyou so much. Also how do i do the optional bits (im a bit new to all this)
|
AdminCP -> Styles & Templates -> Style Manager -> Edit templates (in the dropdown menu of your style) -> Navigation / Breadcrumb Templates (double click on it) -> navbar (double click on it)
Then you can do the edit and save it
Btw: please click the install link in this thread to receive feature update notifications.
Quote:
Originally Posted by yahoooh
is there any temporary fix for : additional query per file ?
i did not use thumbnil!
also i want to show random files under most downloaded files , is there any additional code to make this random files
i suggest adding :
1. related files that show in the page of file
2. captcha for unregistered to prevent hot linking espicially when unregistered useres can download files by permission in usergroup
thanks
|
Enable the "Disable file thumbnails?" DownloadsII setting and you will get rid of the extra query (and thumbnails).
Random files aren't possible by default.
For the suggestions:
- I don't think we are going to add such a feature as this is very database intensive if you have a lot of files. vBulletin has got it for threads and it's one of the first things they suggest you to turn off if you are having performance problems. Also you get sometimes the strangest related results.
- We aren't hotlinking to files. Users will never see the exact file location and we are adding some random characters to the stored file name, so guessing it is very difficult. You can also add .htaccess protection to the downloads folder.
Quote:
Originally Posted by REVHEAD
I have a niggle with some text not lining up here is my code
HTML Code:
<img src="http://www.mysite.com/forums/images/downloadsII_icons/disk.jpg">
<br>
<strong>Important Notice</strong>
<ul>
<li>We are not resposible for any virus you may receive , due to any files you may download. </li>
<li>While we try and make shure all files are scanned before upload, we can not guarantee all files to remain free from Trojans and Virus</li>
<li>To be safe, scan all files before opening.</li>
<li>Use these files at your own risk!</li>
<li>Enjoy</li>
</ul>
and here is my screenshot.
What do I need to change?.
|
That's just normal (X)HTML behaviour: a list (ul) is always indenting by default.
Try using
HTML Code:
<blockquote><img src="http://www.mysite.com/forums/images/downloadsII_icons/disk.jpg" alt="Disk" />
<br />
<strong>Important Notice</strong></blockquote>
<ul>
<li>We are not resposible for any virus you may receive , due to any files you may download. </li>
<li>While we try and make shure all files are scanned before upload, we can not guarantee all files to remain free from Trojans and Virus</li>
<li>To be safe, scan all files before opening.</li>
<li>Use these files at your own risk!</li>
<li>Enjoy</li>
</ul>
instead. The blockquote tag will also create indenting for the upper text.