The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
ecDownloads 3.2 Legacy Details »» | |||||||||||||||||||||||||
ecDownloads 3.2 Legacy (vBDownloads) is available for vBulletin 3.0.x
Talk about 3.2 here: https://vborg.vbsupport.ru/showthread.php?p=751766 What is ecDownloads? 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 Time: 5-6 Min Addons vBAdvanced Module: https://vborg.vbsupport.ru/showthread.php?t=93771 Want another addon? Request it. Giving Back Have you installed this mod? Click install. Do you like this mod? Rate me 5/5. Do you want to donate? Go to www.unicef.org and be generous! To the community Thanks for all your support, I hope you enjoy this. It will have 1-2 minor bugs, but nothing major. Have fun, and make suggestions. IMPORTANT NOTICES - Upgraders should remove the CRON that they originally set up - Look at the fix list to the right -> see if it has been updated since you downloaded Show Your Support
|
Comments |
#352
|
||||
|
||||
I understood the error and came to the same conclusion. IT could not delete what was not there. Just bringing it up.
Perhaps the off-site linking can be solved by only looking for the extension of what follows the last slash in the URL... lol ... Oh, yeah ... I only link with permission! Thanks for looking into it! |
#353
|
|||
|
|||
OFFSITE LINK FIX
Find in dl_add.php (45) and dl_edit.php (38): Code:
if ($_FILES['upload']['name'] != '') strstr($_FILES['upload']['name'], '.'); else strstr($_POST['link'], '.'); Code:
if ($_FILES['upload']['name'] != '') $ext = substr($_FILES['upload']['name'], strrpos($_FILES['upload']['name'], '.')); else $ext = substr($_POST['link'], strrpos($_POST['link'], '.')); Find in dl_manage.php (139): Code:
$url = $DB_site->query_result("SELECT url FROM " . TABLE_PREFIX . "file_files WHERE id='".$_GET['id']."'"); $DB_site->query("DELETE FROM " . TABLE_PREFIX . "file_files WHERE id='".$_GET['id']."'"); unlink($INFO['uurl'].$url); Code:
$file = $DB_site->query_first("SELECT * FROM " . TABLE_PREFIX . "file_files WHERE id='".$_GET['id']."'"); $DB_site->query("DELETE FROM " . TABLE_PREFIX . "file_files WHERE id='".$_GET['id']."'"); if (!$file['link']) unlink($INFO['uurl'].$file['url']); Code:
foreach($_POST['id'] as $id => $value) { $url = $DB_site->query_result("SELECT url FROM " . TABLE_PREFIX . "file_files WHERE id='$id'"); $DB_site->query("DELETE FROM " . TABLE_PREFIX . "file_files WHERE id='$id'"); unlink($INFO['uurl'].$url); } Code:
foreach($_POST['id'] as $id => $value) { $file = $DB_site->query_first("SELECT * FROM " . TABLE_PREFIX . "file_files WHERE id='$id'"); $DB_site->query("DELETE FROM " . TABLE_PREFIX . "file_files WHERE id='$id'"); if (!$file['link']) unlink($INFO['uurl'].$file['url']); } |
#354
|
|||
|
|||
i still have problems with it...i still have to go in to ftp...change the filename to whatever it changes it to...then i also have to upload the file because it doesnt upload the file anywhere
|
#355
|
|||
|
|||
Quote:
You might want to check some of your server settings and chmod the directory you upload to correctly. Good luck |
#356
|
||||
|
||||
No matter what I try it will not order my categories via what I put into the admincp Categories section... It is inseting it into the database but it is not sorting by what is in the database. Can anyone else confirm this?
|
#357
|
|||
|
|||
I tried this but I still can't link urls, only works when I put in local "/directory/filename"...
But! I can upload files when they have no characters like "-" or "." in the filename... At least it starts to be funcionnal to me! Thanks Quote:
|
#358
|
|||
|
|||
what happens is that i click upload...everything works fine from what it looks like....it says file was uploaded...but then when u go to click on download file there is no file there...brings u to the error page...so then i go in...manually upload it through ftp...rename it to the name it gave me and then it works...but i would like it so that everybody can upload files not just me because i have ftp
|
#359
|
||||
|
||||
Minor modification request:
When clicking on the download button, can you make it so it opens the link in a new window? Sounds trivial I know, but I am linking to other posts where the author does not mind downloading, but because it is a beta release he does not want it mirrored yet. As it stands, when I link to a forum post, it is leaving my site. This could also benefit other unknown situations too where you may end up leaving the site by clicking on the download link. I am going to make the change on my site as it is really simple, but thought I would share. The change I made: In includes/dl_file.php (around line 123) change: Code:
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>'; Code:
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down" target="File'.$file['id'].'">Download Here</a>'; |
#360
|
||||
|
||||
What are the upload limits and how do you increase it?
Laters |
#361
|
|||
|
|||
uploads via http/php are limited by 2 settings in your php.ini file (assuming UNIX, I'm sure its the same in Windoze though). By default, max_post_size and max_upload_size are 2M. Increase them to a value you want but also realize that this consumes extra memory and *could* later be used for some random exploit or DoS. None exist that I know of that affect the current versions but potentially someone could attempt to repeatedly post 8MB strings and chew up all your available RAM and swap a lot faster since they use 8MB blocks.
but again, no such evil exists...today. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|