Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
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
  #362  
Old 03-25-2005, 08:01 PM
Maximum Fu Maximum Fu is offline
 
Join Date: Jan 2005
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am trying to modify the panels across the top with the user info, the latest file info, and the most popular files info.

The template downloads_panel_top seems to create each of the fieldsets that contains all the info.

But, within each of the fieldsets, they reference what sounds like it is in another template.

Does anyone know where the templates are for the following:

$panel_user_bit
$panel_latest_bits
$panel_popular_bits
Reply With Quote
  #363  
Old 03-25-2005, 08:18 PM
Maximum Fu Maximum Fu is offline
 
Join Date: Jan 2005
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

On a similar topic, where can I access the nav links?
Reply With Quote
  #364  
Old 03-25-2005, 08:25 PM
mikaelweb's Avatar
mikaelweb mikaelweb is offline
 
Join Date: Feb 2003
Location: Sweden
Posts: 122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in includes/dl_panel.php $panel_user_bit
PHP Code:
    $panel_user_bit "    <div>Your logged in as $bbuserinfo[username]</div>
                    <div>Files downloaded: 
$bbuserinfo[downloads] files</div>
                    <div>Files submitted: 
$bbuserinfo[uploads] files</div>
                    <div>Last File: 
$last</div>
                    <div>Downloaded On: 
$date</div>";
} else {
    
$panel_user_bit "    <div>You are <b>not</b> currently logged in.</div>
                    <div>You <b>cannot</b> download files</div>
                    <div>You <b>cannot</b> upload files</div>
                    <div>You <b>cannot</b> post comments</div>"
;

in includes/dl_panel.php $panel_latest_bits
PHP Code:
// --------------------------------------------------------------------
//    Construct the Latest File Bits
// --------------------------------------------------------------------

for($i 1$i <= 4$i++) {
    
$name $main['latest['.$i.']'];
    
$id $main['latestid['.$i.']'];
    
//$value = vbdate($vboptions['dateformat'],$main['latestval['.$i.']'],true);
    
eval('$panel_latest_bits .= "' fetch_template('downloads_panel_bit') . '";'); 
in includes/dl_panel.php $panel_popular_bits
PHP Code:
// --------------------------------------------------------------------
//    Construct the Popular File Bits
// --------------------------------------------------------------------

for($i 1$i <= 4$i++) {
    
$name $main['popular['.$i.']'];
    
$id $main['popularid['.$i.']'];
    
$value $main['popularval['.$i.']'];
    eval(
'$panel_popular_bits .= "' fetch_template('downloads_panel_bit') . '";');

in includes/dl_panel.php nav links
PHP Code:
// --------------------------------------------------------------------
//    Construct the Navigation Bit
// --------------------------------------------------------------------
$panel_links 'Welcome';

if (
$permissions['downloadpermissions'] & CANDOWNLOADFILES) {
    
$panel_links '<a href="downloads.php?">Main</a>';
}
if (
$permissions['downloadpermissions'] & CANUPLOADFILES) {
    
$panel_links .=  ' | <a href="downloads.php?do=add">Add</a> | <a href="downloads.php?do=util&act=my">My Files</a>';
}
if (
$permissions['downloadpermissions'] & CANMANAGEFILES) {
    
$panel_links .= ' | <a href="downloads.php?do=man&act=viewfile">Manage Files</a>';

l
Reply With Quote
  #365  
Old 03-25-2005, 08:26 PM
Maximum Fu Maximum Fu is offline
 
Join Date: Jan 2005
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I thank you kindly. I will give this a whirl!
Reply With Quote
  #366  
Old 03-25-2005, 11:13 PM
BamaStangGuy's Avatar
BamaStangGuy BamaStangGuy is offline
 
Join Date: Mar 2004
Location: Alabama
Posts: 521
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Maximum Fu
I thank you kindly. I will give this a whirl!
If you get this can you tell me what you did to the templates?
Reply With Quote
  #367  
Old 03-26-2005, 01:44 AM
banuchi2 banuchi2 is offline
 
Join Date: Nov 2004
Location: Boca Raton, FL
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will this work on vb 3.6
Reply With Quote
  #368  
Old 03-26-2005, 10:24 AM
memobug memobug is offline
 
Join Date: Jun 2002
Posts: 418
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have probably done something wrong. However, I can't figure it out. I can see the top level of the download categories but when I browse into any of the categories I get a blank page.

1. I ran downloadinstall.php
2. I uploaded the files
3. I have made the required changes to the files and checked them.
4. I put the download directory under /forum like /forum/downloads
5. I have made the permissions changes
6. I created the cron job.
5. I can see and create categories and they show up when I browse the top level. I can see also phrases and templates
BUT:
6. If I click any category nothing shows up, just a blank page.

I think it might have to do with the paths?

I tried leaving them as-is
./downloads/
./downloads/

and I tried putting in the correct absolute server path and http:// address to same. But the results weren't any different.

I think the instructions are a little vague on this point as they seem to use the terms "path" and "URL" interchangeably; asking for a "full path" and then specifying a relative path "./downloads/"; asking for a "web path" or URL and then specifying a relative path "./downloads/"

Regards,

Matt
Reply With Quote
  #369  
Old 03-26-2005, 01:55 PM
Ron1n Ron1n is offline
 
Join Date: Jun 2004
Posts: 373
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by banuchi2
Will this work on vb 3.6
Read the features list

Quote:
Originally Posted by memobug
I have probably done something wrong. However, I can't figure it out. I can see the top level of the download categories but when I browse into any of the categories I get a blank page.
The only thing I can think of is that your side panel template isnt working/showing up. The main page is run off of a vertical alignment, but the rest are run off of a standard header-sidebar-content alignment. This is all I can think of for the moment. If you know a little about php or even html try some testing and see if the side panel template is called. If you dont, try reinstalling the templates (dont need to wory about the others) but remember to uninstall first. I know i built it in to overwrite, but sometimes it doesnt work. If you still have problems, I will try to help you again so that you dont have to do a complete reinstall. I could just have you insert a couple echo statements in the category view.

Quote:
Originally Posted by BrentWilson
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?
I tried sorting by different things and didnt have that problem. If you want I will look at your setup and try it on your board... that might help me figure out whats wrong. On my demo board it works fine though.

Quote:
Originally Posted by Juanito
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
I dont think that a . in the filename would cause any problems, but a - might. I will go see what I do to linked files in a few minutes and try to fix it later today if I find any problems like that. Check back around 5-6pm.

Quote:
Originally Posted by phreak420
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
I know your file uploads are supposedly going to the correct directory, but the only thing that could cause this problem that I have thought of is if you are uploading to a different directory. Double check that your settings are correct.

Quote:
Originally Posted by rjordan
Minor modification request:

When clicking on the download button, can you make it so it opens the link in a new window?
Yes, i can do that. (or at least make it an option in settings)
Reply With Quote
  #370  
Old 03-26-2005, 02:20 PM
bluetrain bluetrain is offline
 
Join Date: Mar 2005
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is either a stupid question or I did something wrong with the installation. I've triple check the installation instruction, cmod folder, but I can't see any thing such as Manage, Add Files and such. Please help me, I have spent half an hour before posting this question.
Reply With Quote
  #371  
Old 03-26-2005, 02:24 PM
SupraT's Avatar
SupraT SupraT is offline
 
Join Date: Mar 2003
Location: Phoenix
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bluetrain
This is either a stupid question or I did something wrong with the installation. I've triple check the installation instruction, cmod folder, but I can't see any thing such as Manage, Add Files and such. Please help me, I have spent half an hour before posting this question.
You need to go to the permissions for each user group and the ability to add and change etc. You can control which group gets access to view, download, add and manage.

You should find this in the cp ---> usergroups
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 02:47 PM.


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.02977 seconds
  • Memory Usage 2,337KB
  • 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_php
  • (8)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