vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   ecDownloads 3.2 Legacy (https://vborg.vbsupport.ru/showthread.php?t=75198)

KaiSan 04-24-2005 09:32 AM

Quote:

Originally Posted by acidburn0520
Go into your ACP, Usergroups, and make sure that you've enabled the Downloads page for whichever Usergroups you'd like to be able to view it. I had the same thing happen to me, it'd be nice if a little TXT File was included with some brief information on running the hack.


I agree. Thats Fixed it, thanks alot! :D

mfacer 04-26-2005 09:06 AM

just installed this hack - it's brilliant!
http://www.helpeducation.com/forum/downloads.php
works a treat!! Thanks.. looking forward to the next version to try out too!!

mfacer 04-26-2005 09:21 AM

I'm trying to make a script so that I can count how many files have been placed in the categories... how do I go about doing this? What's the SQL?

I need to get the parent category, then drill down to the sub category and count the files in that... any ideas?

Slave 04-26-2005 06:01 PM

Hi Ron1n :)

Just installed this to have a play and I've got some suggestions for your consideration ..

Create a CMPS module (Please!!)
When adding a link to a file allow the input of the file size
Have the system show the max upload, as per the servers config files
When editing a file that's a link, show the link in the "Link to File" box
Allow people to create their own "File Information" entry boxes within the admin area
Give an option to choose the amount of Latest and Popular files shown
When a file/link is deleted take it off the persons "Top Contributors" ranking
Allow files to be uploaded via FTP and then listed without having to use the link option
Have the User Info, Latest Files and Most Popular Files sections on the left on the front page to keep consistency

Some of these might of been suggested before but I'm brainstorming here! :p

The Stats page seems to be buggered for my install .. not sure if this is a bug or something on my forums. Anyone else got a problem?

kevinrstruck 04-27-2005 02:20 PM

I got this hack working easily and quickly...nice job.

One suggestion, we like to link to the download on the owners site rather than upload gigs of files to our server. Some of the extensions of those downloads look like this:

.download.asp?fileid=95

Or something similar. Unless I put that entire phrase in the "Allowed Extensions" area in the admincp, it will not work. I suggest allowing any type of extension in the link area if that is possible.

Other than that, great job!

Installed at: http://thephotostation.net/forums/downloads.php?

ZGeek 04-27-2005 10:53 PM

Im having a problem uploading files. I fill out the form and get a java alert saying "The document contains no data"

Can anyone help?

wirewolf 04-28-2005 05:02 PM

Did a little rework and editing - Screen Shots

Slave 04-29-2005 07:51 AM

Can you / Are you going to release those changes and the CMPS module wirewolf?

(Please please please :))

wirewolf 04-29-2005 12:30 PM

Quote:

Originally Posted by Slave
Can you / Are you going to release those changes and the CMPS module wirewolf?

(Please please please :))

I'd release the changes, but lets' wait to see what version 3 looks like. All of my changes may have to be corrected for version 3.
I've removed the file till I hear from Ron1n. Sorry
John

Slave 04-29-2005 03:56 PM

Quote:

Originally Posted by wirewolf
I'd release the changes, but lets' wait to see what version 3 looks like. All of my changes may have to be corrected for version 3.
But here's the CMPS Module for this version. It's small and easy.

Thanks for the module .. it works just as it says on the tin! ..

:)

wirewolf 04-29-2005 06:18 PM

Your welcome Slave. Got a link so we can see?
I've added a few more items:
Added Email notification and write to file in dl_file.php, with an Admin switch in the Download Settings. Check out the Screen Shots again.
John

Slave 04-29-2005 08:06 PM

www.savageforums.com is where I'm adding all this stuff :)

Slave 04-29-2005 08:14 PM

Oh .. by the way ..

Any chance you can add the category abbreviation to the module? Or tell us how to do it?

:)

turkforum 04-30-2005 07:59 AM

First of all, thanks to ronin and vb community for this great hack..
I haven't install the hack yet because I want my users to upload and download files from my other server where my vb forum is not installed..I have some reasonable excuses to think like this..

So, is it possible to let my users to u/d files to another outside server with this great hack?

mfacer 05-03-2005 11:25 AM

just finished customising my installation...

http://www.helpeducation.com/forum/downloads.php

main changes include:

- windows style folder browsing
- bread crumb navigation
- layouts all use the "top wrapper"
- user menu added under user options instead of the user info
- icons for uploads such as images, pdf, word etc

any comments would be much appreciated!!

c0d3x 05-03-2005 11:38 AM

news on the version 3 ?

rjordan 05-03-2005 12:21 PM

Quote:

Originally Posted by mfacer
just finished customising my installation...

http://www.helpeducation.com/forum/downloads.php

main changes include:

- windows style folder browsing
- bread crumb navigation
- layouts all use the "top wrapper"
- user menu added under user options instead of the user info
- icons for uploads such as images, pdf, word etc

any comments would be much appreciated!!

I glanced at it and am impressed. Nice job of the category navigation!

Rob Locke 05-03-2005 01:33 PM

Quote:

Originally Posted by mfacer
just finished customising my installation...

http://www.helpeducation.com/forum/downloads.php

main changes include:

- windows style folder browsing
- bread crumb navigation
- layouts all use the "top wrapper"
- user menu added under user options instead of the user info
- icons for uploads such as images, pdf, word etc

any comments would be much appreciated!!

Fantastic. How did you do it? I'd love to do something similar.

mfacer 05-03-2005 02:02 PM

Quote:

Originally Posted by Rob Locke
Fantastic. How did you do it? I'd love to do something similar.

quite easily actually....

in dl_category.php I added

Code:

if ($x == 0) {
                //start a new TR
                $startLine = true;
        } else {
                $startLine = false;
        }
       
        if ($x >= 7) {
                $endLine = true;
                $x = 0;
        } else {
                $endLine = false;
                $x++;
        }

which will put 8 columns across the page, these are then used to display the file icon..... then in the template "downloads_main_catbit" I Put

Code:

<if condition="$startLine">
<!-- draw a new TR -->
  <tr>
</if>


<td>
<<< icon and info here >>>
</td>


<if condition="$endLine">
<!-- draw end TR -->
  </tr>
</if>

and changing the downloads main to

Code:

<table cellpadding="5" cellspacing="0" border="0" class="tborder" width="$stylevar[tablewidth]" align="center" style="background:#ffffff">

$catbits
               
</table>

I just used the same code in the dl_files and templates....
The extension can be easily worked out then you just use an image based on the extension, eg: "swf.gif" or "doc.gif" :)

kevinrstruck 05-03-2005 07:27 PM

NVRMND

Sweet Evil 05-04-2005 07:32 AM

Yes please release the vbadvanced mod!

skokarl 05-04-2005 02:05 PM

I wait for 3.0 ...anything news ?

wirewolf 05-05-2005 02:16 AM

This module will work for Version: 2.0f, vbulletin v3.0.7 (and I assume earlier versions), and vBadvanced - CMPS v1.0.0
See example - Ship Modeling Forum - Portal, right side, middle of page (Latest Uploaded Files).
Zip file (about 3k) includes:
1 - lastest_downloads.php file
2 - adv_portal_downloads - template file
(with an optional adv_portal_downloads template that splits to two smaller modules. One for Latest, and one for Popular.
3 - downloads_portal_bit - template file
4 - edit_line4.txt file
5 - readme.txt file

John

PS; The original coding for the lastest_downloads.php file is from Ron1n's downloads add on. I just reworked some of his code and created two templates.

egn 05-06-2005 05:50 AM

Great script, can I suggest for the next version that you allow more child catergories instead, for instance Ringtones>Wavs>Rap . Now I can only do Ringtones>Rap.
Also fix the file name problem and one more thing that would be nice is just to allow the parent catergorie to just be a categorie and still show how many files are listed under it's children catergories, I have 5 files uploaded but it is under a child catergorie and on the parent catergorie it says I have 0. Other than that, GREAT HACK!

emtee 05-06-2005 11:32 AM

Great hack here! Thanks a lot for this.

[high]* emtee clicks Install!
[/high]

One question though: why the Top Contributors are the first four registered member (userid = 1, 2, 3, 4) ??? Is it a little bug?

I'm also waiting for version 3... :D Keep up the good work Ron1n! :D

xony 05-07-2005 04:46 PM

How to change language to spanish? please

Marky 05-08-2005 11:36 AM

is there any new news with version 3?

xony 05-08-2005 02:56 PM

I have been able to translate everything, less two things, are these two imagenes, to see if somebody can help me please.


http://www.3dpoder.com/foro3dpoder/i...downloads1.jpg

http://www.3dpoder.com/foro3dpoder/i...downloads2.jpg :squareeyed:

xony 05-08-2005 03:57 PM

Already this, consegui, thanks for this I modulate.

Ron1n 05-10-2005 10:12 PM

Quote:

Originally Posted by mfacer
just finished customising my installation...

http://www.helpeducation.com/forum/downloads.php

main changes include:

- windows style folder browsing
- bread crumb navigation
- layouts all use the "top wrapper"
- user menu added under user options instead of the user info
- icons for uploads such as images, pdf, word etc

any comments would be much appreciated!!

Very nice work - i like it.

Quote:

Originally Posted by wirewolf
Did a little rework and editing - Screen Shots

Thanks for making the vBCMPS module. I like your additions, but I would suggest using the mysql database for the log (all downloads are already logged - for future use/recounting stats).


I was really impressed with everyones work, looks great. I am very sorry about the delay but my schoolwork is too demanding to spend time programming. Summer will be better.

j_86 05-11-2005 11:56 AM

Any fixes for having the ` symbol in a username?

Slave 05-11-2005 12:22 PM

Can't remember if I've mentioned this .. but my Stats page is buggered ..

Anyone elses look like mine?

Any idea's on how to fix it?

One-Team 05-12-2005 05:15 PM

if i can add URL it will be awesome hack

Ron1n 05-14-2005 12:54 PM

Quote:

Originally Posted by Slave
Can't remember if I've mentioned this .. but my Stats page is buggered ..

Anyone elses look like mine?

Any idea's on how to fix it?

Look at the top post, the fix has been posted for several months.

Quote:

Originally Posted by One-Team
if i can add URL it will be awesome hack

You can, so i guess its an awesome hack.

Slave 05-14-2005 03:20 PM

Quote:

Originally Posted by Ron1n
Look at the top post, the fix has been posted for several months.

Ahh .. cool, thanks. Didn't see that :p

SHARKY 05-14-2005 09:22 PM

got it all installed but when i ran the sql queries it put my table prefix twice for some reason

like

alienxc_alienxc_file_downloads
alienxc_alienxc_file_files
alienxc_alienxc_file_main
alienxc_alienxc_file_stats
alienxc_alienxc_file_votes
the alienxc should only be there once

how do i fix it because it doesnt recognize the tables that way

wirewolf 05-14-2005 09:52 PM

Unless Ron1n has updated the install file, find in downinstall.php, look for all instances (about 18) of -
" . TABLE_PREFIX . "" . TABLE_PREFIX . "

and delete one " . TABLE_PREFIX . " for each instance.

Be careful not to delete the quotes (") at the beginning and end.

A typical new line should look like this when done:
PHP Code:

$DB_site->query("CREATE TABLE `" TABLE_PREFIX "file_cats` etc----- 

Instead of this:
PHP Code:

$DB_site->query("CREATE TABLE `" TABLE_PREFIX "" TABLE_PREFIX "file_cats` etc----- 

They're doubled up.

John

j_86 05-14-2005 11:10 PM

Quote:

Originally Posted by JimpsEd
Any fixes for having the ` symbol in a username?

^ Bump!

cinq 05-14-2005 11:28 PM

You mean ' symbols get stripped ?
Or causes database errors ?

j_86 05-15-2005 12:17 AM

They cause DB errors when it goes through the userlist.


All times are GMT. The time now is 12:26 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.02268 seconds
  • Memory Usage 1,839KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete