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
  #1162  
Old 01-05-2011, 08:28 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

RK KINGKONG file size is set in the php.ini
you will have to ask your host to increase the max upload
and post so you will be able to upload those size files....
default is 2 and 8 megs...
Reply With Quote
  #1163  
Old 01-05-2011, 11:36 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RK KINGKONG View Post
wow this is crazy well i have ti all running and well now images,files categories ETC.... now i followed the links here for the file max upload .. :

memory_limit = 128M
post_max_size = 300M
file_uploads = On
upload_max_filesize = 500M
max_execution_time = 3600
max_input_time = 1700

and GODADDY.com tells me that should change it , but still when i try to upload a file thats 191 MB in size its telling me :
The uploaded file is too big. The file size may be maximum 86.29 MB.

I NOTICE RS_JELLE HAS FILES AS BIG 370MB , I almost passed out , being though it wont let me do bigger than 86 MB

I also seen somewhere that you have to restart your server or something for the difference to take place but GODADDY says though im on an unlimited plan , im also on a shared plan so they cant just restart the server .. what can i do please ?

also rs_jelle method to create a .htaccess file with the following and adjust the numbers :
You need to create a file named .htaccess (note the period in front of the name). Put the following two lines into the file:
Code:
php_value upload_max_filesize 30M
php_value post_max_size 30M

that doesnt work for me cause once i drop that .htaccess into the root of my ftp , then it gives me a fatal error like the site wont load unless i take that out of there ................
found this on a google search to help explain it a little for you

Most of the web servers are configured such a way that a user can only upload the maximum file size of 2MB. So there might be the problem for the people who wants to upload the .zip files of size around 150MB.
increse the maximum upload file size limit by using .htaccess file.


upload such a large file using file field of the form and move_uploaded_file() function in PHP.

1) Create a .htaccess file in the root folder of web server.

2) Put the following code in side the .htaccess file and save it.

php_value upload_max_filesize 200M
php_value post_max_size 200M
php_value max_execution_time 200
php_value max_input_time 200
Now you can upload the file-size up-to 200MB in a simple way using file field in your html form and move_uploaded_file() function available in PHP. In the above .htaccess file, uploading capability is increased by the four parameter first one is maximum file size for uploading, second one is maximum size of the post data , third one is maximum time in seconds a script is allowed to run before it is terminated by the parser and last one is maximum time in seconds a script is allowed to parse input data such as like file uploads, POST and GET data.

You can change the above parameter to upload the bigger file size than 200MB.
Reply With Quote
  #1164  
Old 01-06-2011, 01:47 AM
TeknoSounds TeknoSounds is offline
 
Join Date: Nov 2006
Location: TX
Posts: 435
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you look in his post, hes already changed it to appropriate sizes and his phpinfo page is reflecting that.
Reply With Quote
  #1165  
Old 01-06-2011, 08:01 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

TeknoSounds
This was only for the htaccess issue he mentioned..
about not being able to access his site after adding .htaccess
htaccess does not work.. with out the dot.

maybe he made the file wrong or missed something simple..
Just trying to help as you are..
Reply With Quote
  #1166  
Old 01-06-2011, 09:41 PM
TeknoSounds TeknoSounds is offline
 
Join Date: Nov 2006
Location: TX
Posts: 435
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

oh no hippy don't mistake me, I'm not trying to come down on you or anything just pointed out he had changed it...its saying he did in his phpinfo file and godaddy is telling him the same. The only reason you need to modify the htaccess file is whenever you can't change your php.ini file.

RK KingKong: I'm curious in seeing 1) your phpinfo page to verify these changes are made and 2) WHERE is the error appearing saying you can't upload the file because its too big. Is it showing you in DownloadsII or are you getting a timeout page or something in your browser?
Reply With Quote
  #1167  
Old 01-06-2011, 10:30 PM
RK KINGKONG RK KINGKONG is offline
 
Join Date: May 2010
Location: NEW JERSEY
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I seriously appreciate the help ppl have been trying to give me but , creating a .htaccess file isnt helping no matter where i put it , i have tried in the main root , and also within the downloads folder .. neither works..
I only have a php5.ini in my root , i have set the settings to show increased sizes within the php info n php5.ini .
which shows this:
PHP Code:
memory_limit 128M
post_max_size 
501M
file_uploads 
On
upload_max_filesize 
500M
max_execution_time 
3600

register_globals 
off
allow_url_fopen 
off

[mail function]
sendmail_path = /usr/sbin/sendmail -t
sendmail_from 
automated@righteouskings.com

expose_php 
Off
max_input_time 
3600
variables_order 
"EGPCS"
extension_dir = ./
upload_tmp_dir = /tmp
precision 
12
SMTP 
relay-hosting.secureserver.net
url_rewriter
.tags "a=href,area=href,frame=src,input=src,form=,fieldset="

[Zend]
zend_extension=/usr/local/zo/ZendExtensionManager.so
zend_extension
=/usr/local/zo/4_3/ZendOptimizer.so 
I have also tried creating my own php.ini file without the 5 and putting it into my root .. ive been on the phone with GODADDY numerous time all they can say is , if its changing in your php info it should make the change the restarting of the server isnt possible cause im on a shared plan but also not needed .....
Im at a stand still with this unless i wind up getting some expert to help me with it .. I know someone out there can pin point whats happening , im sure im not the only one who has had this problem..
this is where i lack the experience . i just started working with this whole website and VB thing overnight ...

further more i have a download on my site right now that was allowed
437 Styles for Photoshop : (153.82 MB)
but when i try one that 191.mb is tells me my max is only 86.mb im loosing sleep over this i swear
Reply With Quote
  #1168  
Old 01-06-2011, 10:45 PM
RK KINGKONG RK KINGKONG is offline
 
Join Date: May 2010
Location: NEW JERSEY
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ill show you here
is the phpinfo

here is my FTP and GODADDY PHP5.INI side by side :

so it shows the changes have been made ..
the error comes from within the downloads mod page on my site , so for example i go to add a file , then i choose the file add it .. it starts what seems to be the upload with the percentage showing in the bottom left hand corner .. once it reaches 100% it refreshes and tells me that the file is to big and that my limit is only like 86.MB

Quote:
Originally Posted by TeknoSounds View Post
oh no hippy don't mistake me, I'm not trying to come down on you or anything just pointed out he had changed it...its saying he did in his phpinfo file and godaddy is telling him the same. The only reason you need to modify the htaccess file is whenever you can't change your php.ini file.

RK KingKong: I'm curious in seeing 1) your phpinfo page to verify these changes are made and 2) WHERE is the error appearing saying you can't upload the file because its too big. Is it showing you in DownloadsII or are you getting a timeout page or something in your browser?
Attached Images
File Type: jpg PHPINFO.jpg (62.1 KB, 0 views)
File Type: jpg PHPINFO2.jpg (127.7 KB, 0 views)
Reply With Quote
  #1169  
Old 01-07-2011, 12:16 AM
TeknoSounds TeknoSounds is offline
 
Join Date: Nov 2006
Location: TX
Posts: 435
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

okay awesome. you can take those down if you want

The issue is def within the usergroup settings, try increasing the max upload size limit there. There's an issue I've noticed where the filesize you put in ends up limiting you lower.

This setting here: This is the maximum MB that a user can upload. Set this to -1 for there to be NO limit.

I would try setting that to -1 for testing purposes. Then try increasing the limit until it gives you the actual number you desire.

Btw, RS_Jelle....bug in the usergroup filesize limit settings. :-/
Reply With Quote
  #1170  
Old 01-07-2011, 12:51 AM
RK KINGKONG RK KINGKONG is offline
 
Join Date: May 2010
Location: NEW JERSEY
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the correct setting was already in there :

so still i dont know what to do

Quote:
Originally Posted by TeknoSounds View Post
okay awesome. you can take those down if you want

The issue is def within the usergroup settings, try increasing the max upload size limit there. There's an issue I've noticed where the filesize you put in ends up limiting you lower.

This setting here: This is the maximum MB that a user can upload. Set this to -1 for there to be NO limit.

I would try setting that to -1 for testing purposes. Then try increasing the limit until it gives you the actual number you desire.

Btw, RS_Jelle....bug in the usergroup filesize limit settings. :-/
Reply With Quote
  #1171  
Old 01-07-2011, 01:48 AM
TeknoSounds TeknoSounds is offline
 
Join Date: Nov 2006
Location: TX
Posts: 435
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh silly me.

What about in your Extensions settings? Whats the max file size there? That's the one you'll prolly have to play with, not the usergroup settings. My apologies, I got them confused.
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 02:14 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.06471 seconds
  • Memory Usage 2,391KB
  • 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
  • (1)bbcode_php
  • (3)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
  • (10)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