Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
DownloadsII Details »»
DownloadsII
Version: 6.0.9, by RS_Jelle RS_Jelle is offline
Developer Last Online: May 2016 Show Printable Version Email this Page

Category: Major Additions - Version: 4.0.4 Rating:
Released: 12-27-2009 Last Update: 12-01-2011 Installs: 1648
DB Changes Uses Plugins Auto-Templates
Additional Files  
No support by the author.

DownloadsII

DownloadsII is a download database that integrates into vBulletin. It allows you to upload files, add images to them, create categories, link to external files - and more. It is very flexible and has many options.

It's also coded 100% XHTML 1.0 Transitional valid, just like vBulletin itself.



Instructions & Support

Requires vBulletin 4.0.4 or higher. Not fully compatible with lower vB 4 versions.
It works fine with both the new editor in vB 4.1.4 or higher and the old one in previous vB versions.

Read the instructions in the next two posts before installing/upgrading this mod!

You can find an installation/upgrade manual in the zip package (Readme.txt).

I try to answer most questions asked in this thread. Please don't send any pm's if I don't ask for them. Don't forget to click the install link, so you will receive important update notifications.

Screenshots & Live demo

At the bottom of this post, you can find some screenshots of the front-end and back-end (AdminCP part) of the DownloadsII software.

You can find a live demo on my own site: Minatica.be Downloads (Dutch).
Though keep in mind that we are running a restyled and modified version of it.

Changelog (version 6.0.9)

Jelle
  • Added support for vB 4.1.8 bit processing with 'each' construct (backwards compatible)
  • Fixed comma listing for vB 4.1.8 (using "old" method)
Older changelogs are included in the zip package.

Help!!! I can't upload large files??

This is probably the most asked question. It's mostly caused by some default PHP settings: check "PHP Max Post Size" and "PHP Maximum Upload Size" at your AdminCP home.

Then have a look at this post for the solution to up these values.
Also have a look at this post at vB.com (but ignore the MySQL part as DownloadsII is only using the file system).

Add-ons

There are currently no official add-ons. Unofficial add-ons are listed below.

Download Now

File Type: zip DownloadsII-6.0.9 vB 4.zip (506.6 KB, 4455 views)

Screenshots

File Type: jpg DownloadsII_v6_Main.jpg (74.2 KB, 0 views)
File Type: jpg DownloadsII_v6_Category.jpg (96.7 KB, 0 views)
File Type: jpg DownloadsII_v6_File.jpg (75.3 KB, 0 views)
File Type: jpg DownloadsII_v6_Add_File.jpg (58.3 KB, 0 views)
File Type: jpg DownloadsII_v6_Search.jpg (72.2 KB, 0 views)
File Type: jpg DownloadsII_v6_AdminCP_Settings.jpg (84.3 KB, 0 views)
File Type: jpg DownloadsII_v6_AdminCP_Categories.jpg (62.9 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #1282  
Old 03-24-2011, 09:46 PM
Greeksgal Greeksgal is offline
 
Join Date: Jul 2006
Posts: 72
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just recently started having problems with the comments on files. All files are set to "decending". Normally the newest comments are at the top of the comments list, now all of a sudden they're all mixed up and out of order but no settings have been changed. Would anyone happen to know what this could be?

For example, in the image attached, the second comment was posted at 10.33pm and the first comment at 10pm...the second comment should be at the top but isn't...the times aren't in order as they were.
Attached Images
File Type: png Capture.PNG (12.3 KB, 0 views)
Reply With Quote
  #1283  
Old 03-25-2011, 07:25 PM
stationar stationar is offline
 
Join Date: May 2007
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is a little feature I created for my site. It shows all comments, created for the last 24 hours.
Use on your own risk.

1. Edit file download.php: find
PHP Code:
else if ($_GET['do'] == 'manfiles'
Add BEFORE it:
PHP Code:
// LAST COMMENTS
else if ($_GET['do'] == 'lastcomments')
{
$hr "";
$result $vbulletin->db->query_read("SELECT * FROM `" TABLE_PREFIX "dl2_comments` WHERE date  > ". (TIMENOW 86400) . " ORDER BY id DESC");
while (
$query $db->fetch_array($result))
{
$message strip_bbcode($query['message']);
if (
strpbrk($message'*') == false )
{
$hr $hr "<a href=member.php?" $query['authorid'] . ">"$query['author'] . 
"</a>:  <br>" $message " <a href=downloads.php?do=file&id=" $query['fileid'] . "> >> <i>visit file</i> >></a><hr>";
}
}
    eval(
'$dmain_jr .= "' fetch_template('downloads_lastcomments') . '";');

        
$templater vB_Template::create('downloads2_panel_side');
            
$templater->register('dlstats'$dlstats);
        
$dpanel $templater->render();
        
$templater vB_Template::create('downloads2_wrapper_side');
            
$templater->register('dmain_jr'$dmain_jr);
            
$templater->register('dpanel'$dpanel);
        
$dmain $templater->render();
}
// END LAST COMMENTS 
2. Create a template downloads_lastcomments:

PHP Code:
$hr 
That's it. Now to see the last comments, just open *****/downloads.php?do=lastcomments

If you don't want some comments to be visible (moderator's notes), put * in front of it.

Reminder: always back up the file before editing it. I rename it to downloads1.php and do the testing first, then rename it back to downloads.php.
Reply With Quote
  #1284  
Old 03-27-2011, 08:58 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

your using fetch_template, vb4 no longer uses that..

anyway

RS_Jelle
when searching by total comment you get this message

Invalid Category ID.

No sure it has been reported
Reply With Quote
  #1285  
Old 03-28-2011, 12:28 PM
bajrice bajrice is offline
 
Join Date: Dec 2010
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi there,

ahm is it possible to change the Downloads Folder Path to an external (2nd) Root Server ?!
Reply With Quote
  #1286  
Old 03-29-2011, 03:40 AM
maidos maidos is offline
 
Join Date: Jul 2006
Posts: 925
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

my downloadsII have submitted 5000 links that are external and i tried changing those from x to w but when i do that i get syntax error.
any help with this?
Reply With Quote
  #1287  
Old 04-01-2011, 08:35 AM
TZ.'s Avatar
TZ. TZ. is offline
 
Join Date: Sep 2010
Location: Hungary
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Crotan View Post
Where does the side bar grab its color from? As in stylevar or otherwise? Just installed a new theme but the Latest File/Most Popular File sidebar is all white.
I think this is a bug. Missing stylevars using, for example: forum_sidebar_header_color
Reply With Quote
  #1288  
Old 04-01-2011, 02:27 PM
dooch dooch is offline
 
Join Date: Dec 2005
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, excellent mod,

I really want to allow my custom bb code to work on the File Description on the Summary Page.

Can someone explain what i need to do to get this to show, thanks!
Reply With Quote
  #1289  
Old 04-02-2011, 08:29 AM
oldlock oldlock is offline
 
Join Date: Jul 2009
Posts: 69
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any way (even using another mod) to prevent a user from downloading files unless he has uploaded files ?

I'm thinking to prevent people of taking from a system without having given anything to the site in question.

Any suggestions appreciated ?

Thanks
Reply With Quote
  #1290  
Old 04-04-2011, 01:47 PM
NiTRoN NiTRoN is offline
 
Join Date: Dec 2005
Location: Big Ditch
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Feature Request:

Individual Category Permission access options per group/userid's?

I want to enable certain categories for only certain people/groups. This can be expanded and support a recursive (main categories/sub-cat..) permissions or just that category (non-recursive) permission.
Reply With Quote
  #1291  
Old 04-04-2011, 08:21 PM
KPalicz KPalicz is offline
 
Join Date: Jan 2005
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So... it is kind of an awkward question, but does anyone know of a Wordpress plugin that can match the functionality of this? Or even come close?

My site is switching over from vbulletin to Wordpress (despite my best efforts) and I've come to really love the DownloadsII plugin and consider it essential for the site. Is there an equivalent for wordpress?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:33 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05752 seconds
  • Memory Usage 2,393KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (24)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (9)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete