It is a download database that integrates into vBulletin. It allows you to upload files, create folders, link to external files - and more. It is very flexible and has many options. Sorry, no screenshots. Maybe if someone is nice they will provide a link to the latest version of ecDownloads for everyone to view it.
Changes in 3.2
- Too many to list... its a whole new world
Known Bugs:
- Missing phrase in add file (on nav bar)
- No file protection, add it here if you want: https://vborg.vbsupport.ru/showpost....&postcount=174
- Missing phrases (ecdownloads_can_edit_all and ecdownloads_can_view_disabled) in admincp
Install
Make the file edits in ecDownloads.txt
Upload the contents of 'upload' to your forum directory
Run the downloadinstaller.php file in the admincp (install/rebuild styles and phrases)
Create a directory called 'downloads' (or whatever you put in your settings) and make it writeable and executable
to fix the problem with users not being able to download files even though guests are allowed to ...
go to dl_files.php, search for
Code:
if ($bbuserinfo['userid']) {
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';
}
else {
$download = 'You must be logged in to download files';
}
replace with
Code:
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';
to fix the problem with users not being able to download files even though guests are allowed to ...
go to dl_files.php, search for
Code:
if ($bbuserinfo['userid']) {
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';
}
else {
$download = 'You must be logged in to download files';
}
replace with
Code:
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';
Added that but now it shows the Download File link but when you click it nothin happens. It however downloads just fine if your logged in. When not logged in the download does nothing... http://www.247xtreme.com/forums/down...?do=file&id=13
How do you get it to update the File numbers when you have sub categories.. If I have 13 files for example in the subs it still shows 0... instead of 13
One Files 0
> Sub 1 File 3
> Sub 2 Files 10
:ermm:
--
i am still having this problem along with others... what is the solution for this? noone else having this problem?
--
i am still having this problem along with others... what is the solution for this? noone else having this problem?
this has been brought up several times... there is no fix for that this version. I should be done with the version for 3.5 within 1 week. Then someone can get it working again on 3.0.x
if (($_GET['act'] == 'down') && ($bbuserinfo['userid'] > 0)) {
To:
Code:
if (($_GET['act'] == 'down') && ($bbuserinfo['userid'] > 0)) {
If that doesnt fix it, I'm not going to bother. Just wait until the next version is released. I'm seriously almost 90% done with the upgrade to 3.5. It shouldnt be hard to move it back again.