Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
ecDownloads 3.2 Legacy Details »»
ecDownloads 3.2 Legacy
Version: 3.2 Legacy, by Ron1n Ron1n is offline
Developer Last Online: Jun 2008 Show Printable Version Email this Page

Version: 3.0.8 Rating:
Released: 01-26-2005 Last Update: 08-09-2005 Installs: 195
DB Changes Template Edits
Code Changes Additional Files  
No support by the author.

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

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

Comments
  #202  
Old 02-15-2005, 04:50 PM
Viks Viks is offline
 
Join Date: Sep 2004
Location: Toronto
Posts: 295
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If anyone here is interested to do this and has the time...An addon for vBAdvanced CMPS will be really appreicated with this mod.
Reply With Quote
  #203  
Old 02-15-2005, 06:10 PM
webnx webnx is offline
 
Join Date: Jan 2005
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

after some work, it looks like I can get all 4,000 movies / files from pafiledb into this script. I like the script, its fast and works well with vb. one question. is there any plans to ad Subcategories of Subcategories there are some sections that are a few deep on PAfiledb. if not, would you be willing to add it for a fee? thanks

Dan
Vwsport.com
Reply With Quote
  #204  
Old 02-16-2005, 05:43 PM
Xtrm2Matt Xtrm2Matt is offline
 
Join Date: Aug 2002
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi there,

I can't be bothered to trail through 14 pages, but I've gone through the last 3 or 4 and I've noticed 1 thing about the extensions. If you want to upload different extensions other than .rar, .zip and .gz, simply do a search for ".rar" in the following files and you'll see this:

if ($lext != ".rar" && $lext != ".zip" && $lext != ".gz") {

$errors['message'] .= '<center>You may only upload .rar, .zip, and .gz</center><br>';

You can simply add more extensions by adding $lext != ".EXTENSION". Remember, add $lext != ".EXTENSION" && if your adding more than 1 extension.

:: Files To Edit ::
dl_add.php
dl_edit.php

As a future release, would it be possible to edit these in the AdminCP rather than have to manually edit files?

I've had no problems installing this at all. However, when I upload the files.. no files are uploaded. It basically "makes" a 0kb file in the downloads dir.

A request: I have a number of files which are around 700MB each. Instead of uploading this via your "uploader" (this will be impossible anyway, it will simply timeout), I'm requesting the ability to link to the file but still be able to do the same as you can now (e.g. description, author etc), and also keep the URL still hidden.

An Error: You can simply not download. I get this error when I try downloading:

CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers.


I'm sorry to be rude, great plugin, but it seems you've put too little effort into releasing something that we can install straight away. You say the phrases arn't needed? How can you even think about releasing a plugin without releasing the phrases as well? Some people may not mind, but I certainly do. I'd rather see a nice message saying "Thank you, your categorie has been added" rather than "Error: The phrase 'categorie_added' cannot be found because the author was to lazy to release it so please don't complain"..

Again, I hope my last comment didn't sound rude, it was intended to.

Cheers,

Matt
Reply With Quote
  #205  
Old 02-16-2005, 09:45 PM
Durtay Durtay is offline
 
Join Date: Feb 2004
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Xtrm2Matt
Hi there,

I can't be bothered to trail through 14 pages, but I've gone through the last 3 or 4 and I've noticed 1 thing about the extensions. If you want to upload different extensions other than .rar, .zip and .gz, simply do a search for ".rar" in the following files and you'll see this:

if ($lext != ".rar" && $lext != ".zip" && $lext != ".gz") {

$errors['message'] .= '<center>You may only upload .rar, .zip, and .gz</center><br>';

You can simply add more extensions by adding $lext != ".EXTENSION". Remember, add $lext != ".EXTENSION" && if your adding more than 1 extension.

:: Files To Edit ::
dl_add.php
dl_edit.php
Thanks... I was just renaming my files to .jpg.zip so they'd be uploaded and then in the file title named the author .jpg so when they downloaded it, it read .jpg.zip :lick:
Reply With Quote
  #206  
Old 02-16-2005, 10:38 PM
Socomjunky.com Socomjunky.com is offline
 
Join Date: Aug 2004
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

man this hack is bed because ron1n isn't even here to help i got two problems with it. and when i asked question. no one helped me. but i like the look of it. i would love to install this but no one helps around here. so i have to install another hack. so thats why i dont like it
Reply With Quote
  #207  
Old 02-17-2005, 06:35 AM
Xtrm2Matt Xtrm2Matt is offline
 
Join Date: Aug 2002
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Socomjunky.com
man this hack is bed because ron1n isn't even here to help i got two problems with it. and when i asked question. no one helped me. but i like the look of it. i would love to install this but no one helps around here. so i have to install another hack. so thats why i dont like it
What is/was your problem?
Reply With Quote
  #208  
Old 02-17-2005, 07:29 AM
Socomjunky.com Socomjunky.com is offline
 
Join Date: Aug 2004
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Socomjunky.com
Warning: move_uploaded_file(): open_basedir restriction in effect. File(/home/user/html/downloads/ Edition TEST AGAIN [].zip) is not within the allowed path(s): (/home2/digital1/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home2/digital1/public_html/forums/includes/dl_add.php on line 54

Whats wronge with it. its make the file but when i click on it to download. it brings wronge page

There u go thats the problem
Reply With Quote
  #209  
Old 02-17-2005, 07:52 AM
Xtrm2Matt Xtrm2Matt is offline
 
Join Date: Aug 2002
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Did you chmod the download dir to 777 and also did you make sure the paths are correct?
Reply With Quote
  #210  
Old 02-17-2005, 08:05 PM
Socomjunky.com Socomjunky.com is offline
 
Join Date: Aug 2004
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Xtrm2Matt
Did you chmod the download dir to 777 and also did you make sure the paths are correct?

yea i did the chmod. but i didn't add any path or paths. it doesn't say nothing in inctruction
Reply With Quote
  #211  
Old 02-17-2005, 10:13 PM
Xtrm2Matt Xtrm2Matt is offline
 
Join Date: Aug 2002
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey,

open_basedir has to be OFF in php.ini also

Matt
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 12:26 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06949 seconds
  • Memory Usage 2,317KB
  • Queries Executed 25 (?)
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
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete