Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
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
  #2302  
Old 12-21-2014, 05:21 PM
karabaja3's Avatar
karabaja3 karabaja3 is offline
 
Join Date: Jan 2008
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by squidsk View Post
What's the content of your downloads2_wrapper_side and downloads2_panel_side templates?
I reverted to my backup and did everything again. I have done everything like in Readme.txt for upgrade. Everything same again. Something is very worng with the template. I do not even see "Manage Files" in downloads section.

Now I cheked and saw any of downloads_ templates did not upgrade. All template dates are from 2006.-2009.

And downloads2_wrapper_side looks like this:

Code:
<div id="content_container">
	<div id="content">
		<div id="pagetitle">
			<h1>{vb:rawphrase downloads2}<vb:if condition="$dlcustomtitle">: {vb:raw dlcustomtitle}</vb:if></h1>
		</div>
		{vb:raw dmain_jr}
	</div>
</div>
<div id="sidebar_container">
	<ul id="sidebar">
		{vb:raw dpanel}
		<vb:if condition="$vboptions['dl2disclaimer']">
		<li>
			<div class="block smaller">
				<blockquote class="restore">
					{vb:raw vboptions.dl2disclaimer}
				</blockquote>
			</div>
		</li>
		</vb:if>
	</ul>
</div>
<div class="cleardiv"></div>
downloads2_panel_side

Code:
<vb:if condition="$vboptions['dl2maxlatestfiles'] > 0">
<li>
	<div class="block smaller">
		<h4 class="blocksubhead">
			<a href="#top" id="collapse_dl2_latest" class="collapse"><img src="{vb:stylevar imgdir_button}/collapse_40b.png" alt="" /></a>
			{vb:rawphrase dl2_latest_files}
		</h4>
		<div class="blockbody" id="dl2_latest">
			<ul class="nobullets blockrow">
			{vb:raw dlstats.latestall}
			</ul>

		</div>
	</div>
	<div class="underblock"></div>
</li>
</vb:if>
<vb:if condition="$vboptions['dl2maxmostpopularfiles'] > 0">
<li>
	<div class="block smaller">
		<h4 class="blocksubhead">
			<a href="#top" id="collapse_dl2_popular" class="collapse"><img src="{vb:stylevar imgdir_button}/collapse_40b.png" alt="" /></a>
			{vb:rawphrase dl2_most_popular_files}
		</h4>
		<div class="blockbody" id="dl2_popular">
			<ol class="nobullets blockrow">
			{vb:raw dlstats.popularall}
			</ol>

		</div>
	</div>
	<div class="underblock"></div>
</li>
</vb:if>
<vb:if condition="$vboptions['dl2maxtopcontributors'] > 0">
<li>
	<div class="block smaller">
		<h4 class="blocksubhead">
			<a href="#top" id="collapse_dl2_contrib" class="collapse"><img src="{vb:stylevar imgdir_button}/collapse_40b.png" alt="" /></a>
			{vb:rawphrase dl2_top_contributors}
		</h4>
		<div class="blockbody" id="dl2_contrib">
			<ul class="nobullets blockrow">
			{vb:raw dlstats.contriball}
			</ul>

		</div>
	</div>
	<div class="underblock"></div>
</li>
</vb:if>
EDIT: I did a fresh install on my test site and compared with upgraded. All CSS files and templates are identical.
I do not know why it does not display properly on the upgraded site.
Reply With Quote
  #2303  
Old 01-09-2015, 01:51 PM
Semlyen IT Semlyen IT is offline
 
Join Date: Sep 2010
Location: York (UK)
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

We moved a vBulletin 4.1 installation to a new server and upgraded to v4.2.2; everything works fine but all the links to DownloadsII have disappeared. That doesn't make much sense to me.

I've tried reverting templates and disabling/reenabling but it hasn't made any difference. It's as if all the hooks that were previously being used have disappeared. I can get to the system by going directly to /downloads.php but the navigation and profile links have all gone.

It's the latest version of Downloads II, 6.0.9.

The new server is running Suhosin but there's nothing in the logs suggesting that anything on this site has been blocked by it. All the settings in the control panel for DownloadsII seem normal. I've searched through all PHP files and the entire DB looking for any incorrect server paths, found nothing. Any ideas what could have done this?
Reply With Quote
  #2304  
Old 01-09-2015, 02:03 PM
squidsk's Avatar
squidsk squidsk is offline
 
Join Date: Nov 2010
Posts: 969
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Starting with vb4.2 there's a new navigation manager, and the old method of adding tabs no longers works. Go to the navigation manager in admincp (acp->settings->navigation manager) and add in a tab to the downloads page.
Reply With Quote
  #2305  
Old 01-12-2015, 08:16 AM
Semlyen IT Semlyen IT is offline
 
Join Date: Sep 2010
Location: York (UK)
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's useful - thanks. But didn't there used to be hooks into the Profile templates and the What's Going On?, showing details of each user's uploads and recent uploads and so on? Did I imagine that?
Reply With Quote
  #2306  
Old 01-31-2015, 04:38 PM
glennybee glennybee is offline
 
Join Date: Feb 2008
Location: Scotland
Posts: 329
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does anyone know if the standard vbulletin XML sitemap generator includes this Downloads II mod?

Or do I need to install an addon or modify some code?
Reply With Quote
  #2307  
Old 02-23-2015, 01:01 AM
Toorak Times's Avatar
Toorak Times Toorak Times is offline
 
Join Date: Jan 2011
Posts: 436
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

My musician members want to sell their downloads of their songs and albums, is there a monetised version of this mod?
Reply With Quote
  #2308  
Old 03-04-2015, 02:08 AM
DesignMVD DesignMVD is offline
 
Join Date: Jul 2014
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hello

Ships to vbulletin 5?

Thank You!
Reply With Quote
  #2309  
Old 03-04-2015, 04:36 AM
squidsk's Avatar
squidsk squidsk is offline
 
Join Date: Nov 2010
Posts: 969
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nope, and not likely to ever happen.
Reply With Quote
  #2310  
Old 03-04-2015, 09:42 PM
DesignMVD DesignMVD is offline
 
Join Date: Jul 2014
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by squidsk View Post
Nope, and not likely to ever happen.
What a pity

Still not there anything that fulfills this function?
Reply With Quote
  #2311  
Old 03-04-2015, 09:46 PM
squidsk's Avatar
squidsk squidsk is offline
 
Join Date: Nov 2010
Posts: 969
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nope, vb5 has basically no mods since when they developed vb5 they removed the hook system that is used by virtually all complex mods for vb3/vb4 so they can't be ported to vb5 without making changes to the core code.
Reply With Quote
Reply

Thread Tools

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 11:10 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.06853 seconds
  • Memory Usage 2,372KB
  • 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
  • (2)bbcode_code
  • (2)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
  • (3)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
  • (8)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