Log in

View Full Version : ecDownloads 3.2 Legacy


Pages : 1 2 [3] 4

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 (http://www.vbadvanced.com/forum/forumdisplay.php?f=22)
See example - Ship Modeling Forum - Portal (http://shipmodeling.net/cmps_index.php?), 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.

* emtee clicks Install!

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/images/upload/vdownloads1.jpg

http://www.3dpoder.com/foro3dpoder/images/upload/vdownloads2.jpg :squareeyed:

xony
05-08-2005, 03:57 PM
Already this, consegui, thanks for this I modulate.

Ron1n
05-10-2005, 10:12 PM
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.

Did a little rework and editing - Screen Shots (http://www.shipmodeling.net/sample/index.htm)

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
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.

if i can add URL it will be awesome hackYou can, so i guess its an awesome hack.

Slave
05-14-2005, 03:20 PM
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:$DB_site->query("CREATE TABLE `" . TABLE_PREFIX . "file_cats` etc-----Instead of this:$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
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.

TheCaver
05-15-2005, 07:10 AM
Any plans in making a "minimum" post count in order to download from downloads section?

Marco van Herwaarden
05-15-2005, 10:17 AM
^ Bump!Maybe it would help if you posted the exact error message you are getting, or at least what you where doing (which script).

If you already posted this somewhere before in the thread, please repeat.

j_86
05-15-2005, 11:12 AM
Maybe it would help if you posted the exact error message you are getting, or at least what you where doing (which script).

If you already posted this somewhere before in the thread, please repeat.

Thank you :)

https://vborg.vbsupport.ru/showthread.php?p=642132&highlight=capn#post642132

Marco van Herwaarden
05-15-2005, 12:00 PM
Ok, try the following:

In file ./includes/dl_functions.php find:
$sqlstring .= " `latest[".($i+1)."]` = '".$array['name'][$i]."', `latestid[".($i+1)."]` = '".$array['id'][$i]."', `latestval[".($i+1)."]` = '".$array['value'][$i]."'";
and replace by:
$sqlstring .= " `latest[".($i+1)."]` = '".addslashes($array['name'][$i])."', `latestid[".($i+1)."]` = '".$array['id'][$i]."', `latestval[".($i+1)."]` = '".$array['value'][$i]."'";

Find:
$sqlstring .= " `popular[".($i+1)."]` = '".$array['name'][$i]."', `popularid[".($i+1)."]` = '".$array['id'][$i]."', `popularval[".($i+1)."]` = '".$array['value'][$i]."'";
Replace by:
$sqlstring .= " `popular[".($i+1)."]` = '".addslashes($array['name'][$i])."', `popularid[".($i+1)."]` = '".$array['id'][$i]."', `popularval[".($i+1)."]` = '".$array['value'][$i]."'";
Find:
$sqlstring .= " `contrib[".($i+1)."]` = '".$array['name'][$i]."', `contribid[".($i+1)."]` = '".$array['id'][$i]."', `contribval[".($i+1)."]` = '".$array['value'][$i]."'";
Replace by:
$sqlstring .= " `contrib[".($i+1)."]` = '".addslashes($array['name'][$i])."', `contribid[".($i+1)."]` = '".$array['id'][$i]."', `contribval[".($i+1)."]` = '".$array['value'][$i]."'";

Paul M
05-15-2005, 12:04 PM
Soo many fixes to find in this topic - is the zip going to get updated.

j_86
05-15-2005, 12:11 PM
Zip file updated yesterday, so I assume all fixes except for the one posted above by Marco.

Thanks MArco :)

Marco van Herwaarden
05-15-2005, 01:20 PM
Did it help?

I can't test this since i don't have it installed myself.

TheCaver
05-15-2005, 04:12 PM
Any plans in making a "minimum" post count in order to download from downloads section?
Yes, No??

Dark s.s. Trunk
05-17-2005, 07:59 AM
Well I just decided to install this today and well thus far ok however I think I am missing something because after the install was done their is no links in my navbar, and when i type in ./vbforums/downloads.php their is no way to Manage files no links oh and after i added a Catagory I reloaded the downloads.php page and its their so i click on it and it just loads a blank page..

I did not have any of the other version install first time install of new version so do i need something else before this to make it work or is the install Faulty.

memobug
05-17-2005, 09:43 PM
Was this fixed? Version 2.0 - if the title has single quotes in it like "Rock 'n' Roll" you get MySql errors when it tries to insert:

Invalid SQL INSERT INTO file_files ('name',......
VALUES ('Rock 'n' Roll'...

Regards,

Matt

djsydeburnz
05-17-2005, 11:20 PM
is there a way to add something to the permission section for uploading vs. posting a link for the download?

for example:
premium memebers having the capability to upload any files
not premium members having can only add a link to their allready hosted file

djsydeburnz
05-17-2005, 11:22 PM
also, how about being able to add the filesize when posting a link to a file? right now, it appears i have to upload the file for it to get a file size. My files are allready on my server, so I am posting a link. Just another thought.

Ron1n
05-18-2005, 12:39 PM
Any plans in making a "minimum" post count in order to download from downloads section?No. You can do that with user groups and promotions.

Soo many fixes to find in this topic - is the zip going to get updated.In version 3.0 all of the fixes will be fixed :). Right now, no. The fixes do not apply to everyone, and it seems most people get along fine without them. If someone wants to PM me a zip file of problems + fixes I will add it to the files listed in the top post of this thread, but other than that... it will wait until summer.

Well I just decided to install this today and well thus far ok however I think I am missing something because after the install was done their is no links in my navbarEveryone has a different nav bar so I didnt bother adding a link.

and when i type in ./vbforums/downloads.php their is no way to Manage filesBecause you havent given yourself permissions...

no links oh and after i added a Catagory I reloaded the downloads.php page and its their so i click on it and it just loads a blank page..Didnt someone else have this problem? I dont know how they fixed it because it has been so long. What is your category name? If it has a ` or ' in it you might be messing up the query. Other than that I dont know what to say.

[QUOTE=djsydeburnz]is there a way to add something to the permission section for uploading vs. posting a link for the download?Yes, in the admin UG permissions page add one permissions statement (can link to files). Then in the add.php and the add template change it people with link permissions can link to files. Do the same thing with edit.php and the edit template. Then go to the init.php (i think thats the right file) and add the variable you used for your UG there to the bit field. THe last thing you need to do is edit the navbar template and the navbar php code and allow people with link abilities to see that add.php.

djsydeburnz
05-18-2005, 12:48 PM
^^^im pretty sure i have no clue. :)

not really much of a coder over here, but maybe now that Ive mentioned it, someone might thinks its good enough to do it then give step by step direx. GLad to know its possible though!

javo
05-18-2005, 07:57 PM
How big of files can it handle?
I am needing a way to get some 100mb + files to certain usergroups.
Would this work for that?

Ron1n
05-18-2005, 11:02 PM
How big of files can it handle?
I am needing a way to get some 100mb + files to certain usergroups.
Would this work for that?It can handle whatever your server can handle. If you can upload 100 mb files via HTTP, then you will have no problems with the DL section. All limitations are the limitations of your server.

Breaker
05-19-2005, 04:37 PM
any reason i cant see a full install file for download, only upgrade and a cmps module :/

Ron1n
05-19-2005, 10:32 PM
how retarded, ill upload it tomarrow

Dark s.s. Trunk
05-19-2005, 11:24 PM
Where do i set permissions for managing downloads and uploads and stuff.?

Ron1n
05-19-2005, 11:29 PM
admincp->usergroups->permissions

Dark s.s. Trunk
05-19-2005, 11:35 PM
OK thank you that worked but still having problems with blank page, I will search the thread if you locate a way or remember please post it otherwise thank you for the help :)

To see go to http://tas.twistedanimestudios.com:81/vbforums/downloads.php i have the fusion skin from extreme pixels if you wanna see how it looks with that on and maybe you can see if the page loads anyone. well it load just not when you go into programs.

boo.3
05-19-2005, 11:53 PM
where can i download a fresh install?

Dark s.s. Trunk
05-20-2005, 12:04 AM
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.




Same problem as above, just follow my above directions.

I just tryed that I have everything enabled and I am still getting a Blank page for when I go into Catagories anyone else can help anything please I am starting flustered been trying to get this hack to work for days now.

owner
05-20-2005, 01:43 PM
Ok how do u install this hack... i cant find the instructions

Ron1n
05-20-2005, 08:09 PM
try reading some of the last posts ... jesus christ, i said I said yesterday that I would upload it sometime tomorrow"

Ron1n
05-21-2005, 02:59 AM
uploaded

Dark s.s. Trunk
05-21-2005, 03:48 AM
Hullo, well I have tryed to reinstall all files, I checked all Modifications and just even tried to reinstall from the new fresh install and well all works but I still cannot view Catagories, ive checked everything from Permissions and since i am on a winnt server ( Sadly lol ) I dont have to Chmod so well anyway If someone could help me I would be most greatfull.

Personlly I think this hack is kewl and the only thing stopping me is this and its kinda annoying becuase after trying different stuff for over 3-4 days it gets old quick lol..

So anyway yea any help here would be grand.

Edit: Sorry for the last post I must have missed the post that said how to fix it lol my fault it was easy with that darn extra space in the dl_catagory.php file at the end.....

Chrisqo
05-21-2005, 08:24 AM
Just thinking... For a future update could you limit how many downloads a user can have in a certain allotted time (a day or something). This can apply to the usergroups, different usergroups = more/less downloads; more/less downloads available in allotted time. Etc.

Deriel
05-21-2005, 09:50 AM
Greetings,

I just installed the vBDownloads Hacks (actual version) in a vBulletin 3.0.7 and I'm having a Blank Screen when I click in a Category ("Teste" is the only one right now). Can you help me?

http://desenv.valinor.com.br/vb/downloads.php

Dark s.s. Trunk
05-22-2005, 05:02 AM
Greetings,

I just installed the vBDownloads Hacks (actual version) in a vBulletin 3.0.7 and I'm having a Blank Screen when I click in a Category ("Teste" is the only one right now). Can you help me?

http://desenv.valinor.com.br/vb/downloads.php
yea its very easy to fix this problem, god knows it took me long enough lol anyway.

Open up includes/dl_catagories.php and go right to the end of the file look for ?> and make and right after it and before it get ride of the spaces then save upload it back then make sure that permissions in your Control Panel have allowed access then it should work... my aim is twistedshiek i can help ya more their if that doesnt work.

Dark s.s. Trunk
05-22-2005, 06:14 PM
Question when you have sub catagorie which is kewl becuase I can organize better but i was noticing in when you dont put have anything in the main catagore but files in the sub cat is says 0 files on the main page of the downloads area. is their a way to make it so it displays the actualyl number of files and even folders/ sub catagories. that would be kinda nice.

Note I forget who said it but I would deffenitly like the Minimum Posts for download addon when someones figures it out.

liaison
05-22-2005, 09:11 PM
Hi all, i have installed this hack and all has gone well... aprart from the naviagtion.. there are no links showing for the user to upload files ect... does anyone know what i have missed? you can see my downloads area here http://www.nextgen24.com/forum/downloads.php

Dark s.s. Trunk
05-22-2005, 09:34 PM
Hi all, i have installed this hack and all has gone well... aprart from the naviagtion.. there are no links showing for the user to upload files ect... does anyone know what i have missed? you can see my downloads area here http://www.nextgen24.com/forum/downloads.php
go to admincp/ usergroups edit each type ( Admin, Mods, users ) and in their you can edit those options for to see upload, add, and that

liaison
05-22-2005, 10:13 PM
go to admincp/ usergroups edit each type ( Admin, Mods, users ) and in their you can edit those options for to see upload, add, and that

Wow thanks!!! all working now!!!! nice hack! ;)

Dark s.s. Trunk
05-22-2005, 11:10 PM
Wow thanks!!! all working now!!!! nice hack! ;)
Glad i could help, I had alot of problem at the begining but after all got done me happy too...

Deriel
05-23-2005, 11:29 AM
yea its very easy to fix this problem, god knows it took me long enough lol anyway.

Open up includes/dl_catagories.php and go right to the end of the file look for ?> and make and right after it and before it get ride of the spaces then save upload it back then make sure that permissions in your Control Panel have allowed access then it should work... my aim is twistedshiek i can help ya more their if that doesnt work.

You're right. I edited all the .php files eliminating every space and sued the dos2unix too. Working now! So far, so good.

Ron1n
05-23-2005, 01:25 PM
Question when you have sub catagorie which is kewl becuase I can organize better but i was noticing in when you dont put have anything in the main catagore but files in the sub cat is says 0 files on the main page of the downloads area. is their a way to make it so it displays the actualyl number of files and even folders/ sub catagories. that would be kinda nice.This is one of the many things that has been brought up already... It was just a minor bug that I have already fixed in my own version.

Note I forget who said it but I would deffenitly like the Minimum Posts for download addon when someones figures it out.Never. I said this before: If you want a min post requirement add it yourself or make a usergroup that gets promoted after x min posts that has permissions in the dl section.

caimakale
05-24-2005, 02:45 AM
I installed this hack on my board today, everthing with the vbdownloads hack works fine. But the cmps module is giving me problems. I have successfully uploaded files into vbdownloads, they show up and can be downloaded via the downloads page, but on my CMPS page, I can see the headers for "» Latest Uploaded Files:" and "» Most Downloaded Files:" but no files are showing up underneather the headers. I know files exist and have been downloaded.

Any suggestions???

Beermonster
05-24-2005, 11:16 AM
How do I change it so I don't have to apporve each upload from a member?

Ron1n
05-24-2005, 02:15 PM
How do I change it so I don't have to apporve each upload from a member?give them managment permissions

I run a website that has served over 110,000 downloads with this system and has hundreds of files. Believe me, you need to monitor what your users upload and the way I designed the system,it is very easy to approve files in bulk. Just do it once every few days or give everyone managment permissions.

Bhuwan
05-25-2005, 12:25 AM
gr8 hack! any way to import links from "FILES AND LINKS"

Bhuwan
05-25-2005, 12:27 AM
Ron1n - great job :). But there seems to be a b ug which makes the "hidden" links no longer hidden, unfortunately.

Ron1n
05-25-2005, 01:01 AM
gr8 hack! any way to import links from "FILES AND LINKS"Nope... sorry.

Ron1n - great job :). But there seems to be a b ug which makes the "hidden" links no longer hidden, unfortunately.I am not sure what your talking about. You mean unapproved files appear to be approved? I havent heard of that error before, could you please tell me how it happened?

N8
05-25-2005, 02:54 AM
I was testing this out, and usernames with " ' " in them create errors when injecting the name into the database when they download a file.

jpt62089
05-25-2005, 11:00 PM
*Fixed... left one file modification out*

WarriorDL
05-27-2005, 12:55 AM
Ron1n, above you say - Images (next release.. finished but not included (skin issues)) What issues are you having with that?

I'd sure love to have thumbs/image previews of the downloads available.

sticker-
05-27-2005, 02:59 AM
First off, I must say this is such a great hack, I love it and so do my members. I primarily use this to host movies, lots of my users have been requesting a comment system, is this been thought of as a feature in an upcoming version? If so, that would be great!

I was testing this out, and usernames with " ' " in them create errors when injecting the name into the database when they download a file.

Also when trying to use file names with " ' " in them you also get an sql error. Not sure if that's already been posted.

jpt62089
05-28-2005, 04:39 AM
Is there a way this mod could have unlimited subforums or at least a second level of subbies? I need that second level... <_<

cricex
05-28-2005, 01:52 PM
Alright, I have been using VBDownloads or quite some time. Unfortuneately I have a lot of files now. A lack of a search feature is really hurting me.

I just upgraded to the lastest version only to be disapointed in not having a fixed search page.

I havent had time to go through 40ish pages and see if anyone has a hacked a search page in... So, has anyone? And if so, can you link me to the post that shows me how to do it?

Also, whats the easiest way to change the max file size? It wont let me upload files larger than 3mb and I cant find it anywhere in the downloads section of my admincp.

Thanks guys.

memobug
05-31-2005, 01:33 AM
I found I was unable to edit links. When I go to manage files there is no method to change the target URL. I had to go into phpMyAdmin and tweak it manually.

I don't know which version I have, but I have been using it about 2 months. Maybe the version could be added to the admin template for vbdownloads or perhaps the release dates could appear next to the version ids on the first post?

Regards,

Matt

Ron1n
05-31-2005, 12:33 PM
I found I was unable to edit links. When I go to manage files there is no method to change the target URL. I had to go into phpMyAdmin and tweak it manually.

good call.

I don't know which version I have, but I have been using it about 2 months. Maybe the version could be added to the admin template for vbdownloads or perhaps the release dates could appear next to the version ids on the first post?Your version is stated in every file you have on your server and on every txt file you used to install it. In addition, the MAJOR version shows up on the bottom of every page.

I havent had time to go through 40ish pages and see if anyone has a hacked a search page in... So, has anyone? And if so, can you link me to the post that shows me how to do it?Soon.

Also, whats the easiest way to change the max file size? It wont let me upload files larger than 3mb and I cant find it anywhere in the downloads section of my admincp.THe downloads are only limited by your HTTP and PHP configs.

Is there a way this mod could have unlimited subforums or at least a second level of subbies? I need that second level... <_<
Yes.. but performance would suffer. I want to find a way to do it without hurting performance before i include it.

cricex
06-02-2005, 10:15 PM
good call.

Your version is stated in every file you have on your server and on every txt file you used to install it. In addition, the MAJOR version shows up on the bottom of every page.

Soon.

THe downloads are only limited by your HTTP and PHP configs.


Yes.. but performance would suffer. I want to find a way to do it without hurting performance before i include it.
awesome, thanks.

platnum
06-03-2005, 10:54 AM
awesome, thanks.
Everything is going great.. good job on it Ron1n...

I have one problem though.. When I goto upload something I get this error :( :( :(

EXT: .rar
Warning: Invalid argument supplied for foreach() in /includes/dl_add.php on line 53

Clanshosting
06-03-2005, 02:41 PM
Hey, something is messed up here.

Parse error: parse error, unexpected T_IF, expecting ']' in /home/bf2350/public_html/admincp/index.php on line 567

What's wrong? I entered it correctly.

LINE 567:

construct_nav_group($vbphrase[ if (can_administer('canadminsettings'))'vba_cmps']);

Ron1n
06-03-2005, 08:19 PM
Warning: Invalid argument supplied for foreach() in /includes/dl_add.php on line 53Add one more acceptable file type and it will be ok.

Parse error: parse error, unexpected T_IF, expecting ']' in /home/bf2350/public_html/admincp/index.php on line 567What file are you talking about...

cosmin
06-04-2005, 01:12 PM
--
just quickly asking, perhaps there is a post in this thread and i havent seen it, but:

How do I fix to show how many files are in a TOP CATEGORY? I have 4 main top categories and in each top category about 2-4 sub-categories. Those sub-categories show how many files are.. but when you look at the main page of the downloads, the TOP categories appear to have '0 downloads' ... this is confusing to members as it appears like there are no files in the categories when they first come to the main download page. :(

.. any answers?

Ron1n
06-04-2005, 02:12 PM
--
just quickly asking, perhaps there is a post in this thread and i havent seen it, but:

How do I fix to show how many files are in a TOP CATEGORY? I have 4 main top categories and in each top category about 2-4 sub-categories. Those sub-categories show how many files are.. but when you look at the main page of the downloads, the TOP categories appear to have '0 downloads' ... this is confusing to members as it appears like there are no files in the categories when they first come to the main download page. :(

.. any answers?I forget.

cosmin
06-04-2005, 02:38 PM
I forget.--
how can we juke your memory?! :) ... anyone know the answer? someone else should be having this issue if they are using sub-categories as well.

.. i just cleanly installed vbDownloads 2.0 and 'out-of-the-box' its been like this. :disappointed:

contrai
06-05-2005, 01:51 PM
Hello,

I installed this hack seems right but on the navigation all is see is WELCOME. How do i add files?

contrai
06-05-2005, 03:37 PM
sorry about the double post. but i just set the usergroup permission and its working fine now. that didnt mention on the instruction :speechless:

can anybody tell me what's the original path for download and upload url on the admincp setting? i changed around and now i seems can't upload...

Warning: move_uploaded_file(/downloads/ fdgdf fdgd [88577].jpg): failed to open stream: No such file or directory in /includes/dl_add.php on line 69

Warning: move_uploaded_file(): Unable to move '/tmp/phpPn8Rsq' to '/downloads/ fdgdf fdgd [88577].jpg' in /includes/dl_add.php on line 69

Redirecting...

Eventhough it say successfully uploaded but when i click download it doesnt work..

Do i have to create a downloads folder on my forums directory?

sorry if this issue already answered, i might just go n read page by page on this thread to find the answer

Ron1n
06-06-2005, 01:09 AM
Hello,

I installed this hack seems right but on the navigation all is see is WELCOME. How do i add files?
just give yourself permission in the admincp

d2sector
06-06-2005, 08:24 AM
How do you get it to update the File numbers when you have sub categories.. If I have 13 files for example in the subs it still shows 0... instead of 13

One Files 0
> Sub 1 File 3
> Sub 2 Files 10

:ermm:

korg
06-06-2005, 09:56 AM
Thanks for such a great code.

cosmin
06-06-2005, 07:23 PM
How do you get it to update the File numbers when you have sub categories.. If I have 13 files for example in the subs it still shows 0... instead of 13

One Files 0
> Sub 1 File 3
> Sub 2 Files 10

:ermm:--
i am having the same problem... but noone seems to know the fix ... yet :tired:

jaks
06-06-2005, 11:44 PM
Great addon,
"Clicked install"

OK I read through about the last ten pages of posts and didn't see this anywhere.

I can set permissions for admin but for registered users there is no settings that I can see. Is there something I missed?

Jaks

T3MEDIA
06-07-2005, 12:01 PM
Great addon,
"Clicked install"

OK I read through about the last ten pages of posts and didn't see this anywhere.

I can set permissions for admin but for registered users there is no settings that I can see. Is there something I missed?

JaksLook in the usergroups.

T3MEDIA
06-07-2005, 12:21 PM
OK thank you that worked but still having problems with blank page, I will search the thread if you locate a way or remember please post it otherwise thank you for the help :)

To see go to http://tas.twistedanimestudios.com:81/vbforums/downloads.php i have the fusion skin from extreme pixels if you wanna see how it looks with that on and maybe you can see if the page loads anyone. well it load just not when you go into programs.The file admincp/index.php change the code to:

// ###### ELITECODERS DOWNLOAD HACK ######
construct_nav_option("Settings", 'downloadadmin.php?do=settings', '<br />');
construct_nav_option("Categories", 'downloadadmin.php?do=category', '<br />');
construct_nav_group("Downloads", '<hr />');
// ###### ELITECODERS DOWNLOAD HACK ######

They word catagories was spelled wrong.... Maybe that is your issue.

Ron1n
06-07-2005, 02:47 PM
// ###### ELITECODERS DOWNLOAD HACK ######
construct_nav_option("Settings", 'downloadadmin.php?do=settings', '<br />');
construct_nav_option("Categories", 'downloadadmin.php?do=category', '<br />');
construct_nav_group("Downloads", '<hr />');
// ###### ELITECODERS DOWNLOAD HACK ######The file admincp/index.php change the code to:

They word catagories was spelled wrong.... Maybe that is your issue.There is no such word as "catagories"... it IS spelled categories.

Also, don't ever post in this thread again. Your a lier, a cheater, and a theif. I don't ever want to come in contact with the name T3MEDIA again.

jaks
06-07-2005, 06:07 PM
Hmmm.. The problem here isn't where to look. The setting are not there for registered users. They are there for all my other groups. Not only that but now when I add a new group it doesn't show up in the usergroup manager list. I can not edit any usergroups either. I don't get any errors at anytime. It shows everything i do in the log. The new usergroups do show in the Promotion list of usergroups.

I'm not saying it is this hack Ronin. It must be something I messed up do the edits but I looked and can't see where I went wrong. If you could just guide me where I should look that would be a good start.

Thanks Jaks

T3MEDIA
06-07-2005, 08:36 PM
There is no such word as "catagories"... it IS spelled categories.

Also, don't ever post in this thread again. Your a lier, a cheater, and a theif. I don't ever want to come in contact with the name T3MEDIA again.Listen punk catagories is a common error I am trying to help someone that would have that issue of a white page.
I dont need to rob you kid. Finish school why dont you. I'll post anywhere. I wasnt talking to your decrepid self. Unless you speak of something that actually happend... you make some crap up about me again and see how far I go with it.

Isnt cartoons on? I beg of you to try and slander my name... PLEASE try again.

Brad
06-09-2005, 04:29 AM
T3MEDIA and Ron1n,

If you two have a personal dispute please keep it in private.

T3MEDIA
06-09-2005, 03:33 PM
T3MEDIA and Ron1n,

If you two have a personal dispute please keep it in private.Do not... put this in some way like I have a problem I was not talking to this guy and I dont even know this fool. So if you read the thread you see he attacked me.
dont get it twisted.

Marco van Herwaarden
06-09-2005, 03:43 PM
Do not... put this in some way like I have a problem I was not talking to this guy and I dont even know this fool. So if you read the thread you see he attacked me.
dont get it twisted.He was talking to both of you. The one that feels addressed by the request should take notice. If you think it don't aplly to you, there is no need to reply, or start calling people a fool.

djsydeburnz
06-10-2005, 12:14 AM
OK...forgive me...but i have to ask.

The latest file donwlaods, they all seem stuck at 6. I have added the cronjob like the picture, except my server says 'crotab' and doesnt have a space to put the name of the job. Is that ok? I did a '*' for everything except the command ./includes/cron/dl_stats.php

How do I tell which version i have...there have been a few bugs you have fixed, i would like to attempt an upgrade, but think i have just 2.0 as that is what it says on the downloads page.

Is there a known reason the dowloads hack would not work with geeks banner system? at first, banners broke the downloads, now that i try it again to tell you what it does, i cant even get them to show up now. argh

anyways, great script...i just need some help tweaking!

thanks in advance.

djsydeburnz
06-10-2005, 01:41 AM
oh, also...the box that displays the user permissions...'you are logged in as, you cannot...'

you know, the box on the upper left of the page, well, the click here to register doesnt have a clickable link...at least mine doesnt.

jluerken
06-11-2005, 03:06 PM
Will you port it over to vB 3.5 ?

d2sector
06-12-2005, 12:05 PM
Will you port it over to vB 3.5 ?
Also interested to know if you will.

kafi
06-12-2005, 06:52 PM
Great hack here! Thanks a lot for this.

* emtee clicks Install!


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
Nice hack! Installed!

Can't wait for additional features as search, thumbnails, copyright verification, phrases.
Can be search as a part of main forum search too?

BTW> I am having same stat problem emtee (BUG).

kafi
06-12-2005, 07:33 PM
When I translated "Submit" button, I couldn't edit... I mean I couldn't submit whatever I changed in "edit".

Marco van Herwaarden
06-12-2005, 07:45 PM
You maybe have changed the buttons name instead of the text.

d2sector
06-14-2005, 01:59 AM
I've set guests (Unregistered / Not Logged In) as being able to download... yet you still have to be logged in to download? How do i fix that.

bspiller82
06-14-2005, 07:53 AM
I've set guests (Unregistered / Not Logged In) as being able to download... yet you still have to be logged in to download? How do i fix that.

Same issue here as well. It still wants you to log in. Please help :)

Ron1n
06-16-2005, 04:37 AM
Well, the users are actually alowed to upload.. they just *yawn* cant see the links. You can edit that via the templates I think.

T3MEDIA
06-17-2005, 10:46 AM
Can someone post the upload template please and thank you.

bspiller82
06-17-2005, 10:24 PM
any update on the unregged issues?

xtreme-mobile
06-19-2005, 09:41 PM
every time i attempt to install this it always says.....

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@extreme-mobile.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.


Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


--------------------------------------------------------------------------------

Apache/1.3.33 Server at www.extreme-mobile.com Port 80

any ideas?

memobug
06-20-2005, 06:18 AM
every time i attempt to install this it always says.....

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@extreme-mobile.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.


Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


--------------------------------------------------------------------------------

Apache/1.3.33 Server at www.extreme-mobile.com (http://www.extreme-mobile.com/) Port 80

any ideas?

You may need to get into your server error log as the message says and see what the specific error was.

You might try going into the PHP files in the hack and removing any spaces or blank lines after the closing "?>"

I think there is one hanging out in download_config.php

... but that probably isn't the problem.

Regards,

Matt

Ron1n
06-20-2005, 07:21 PM
https://vborg.vbsupport.ru/external/2005/06/2.jpg

https://vborg.vbsupport.ru/external/2005/06/2.jpg

Some screenshots of version 3.0 (unlimited subcats).

The new version is faster, more reliable, easier to use, and has all of the bug fixes. In addition, it requires 0 code changes and everything is automated.

Paul M
06-20-2005, 09:07 PM
http://img67.echo.cx/my.php?image=screen11qm.jpg

http://img67.echo.cx/my.php?image=screen21mp.jpg

Some screenshots of version 3.0 (unlimited subcats).

The new version is faster, more reliable, easier to use, and has all of the bug fixes. In addition, it requires 0 code changes and everything is automated.Is it for 3.0.7 or 3.5.0 ?

Ron1n
06-20-2005, 09:32 PM
it is for 3.5.0, but it might be converted back to 3.0.7

Ron1n
06-20-2005, 11:40 PM
to fix the problem with users not being able to download files even though guests are allowed to ...

go to dl_files.php, search for if ($bbuserinfo['userid']) {
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';
}
else {
$download = 'You must be logged in to download files';
}


replace with
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';

bspiller82
06-21-2005, 12:11 AM
to fix the problem with users not being able to download files even though guests are allowed to ...

go to dl_files.php, search for if ($bbuserinfo['userid']) {
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';
}
else {
$download = 'You must be logged in to download files';
}


replace with
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';


Added that but now it shows the Download File link but when you click it nothin happens. It however downloads just fine if your logged in. When not logged in the download does nothing...
http://www.247xtreme.com/forums/downloads.php?do=file&id=13

cosmin
06-21-2005, 11:38 AM
How do you get it to update the File numbers when you have sub categories.. If I have 13 files for example in the subs it still shows 0... instead of 13

One Files 0
> Sub 1 File 3
> Sub 2 Files 10

:ermm:--
i am still having this problem along with others... what is the solution for this? noone else having this problem?

Ron1n
06-21-2005, 01:30 PM
--
i am still having this problem along with others... what is the solution for this? noone else having this problem?this has been brought up several times... there is no fix for that this version. I should be done with the version for 3.5 within 1 week. Then someone can get it working again on 3.0.x

Ron1n
06-21-2005, 01:40 PM
Also do the following:

Change:if (($_GET['act'] == 'down') && ($bbuserinfo['userid'] > 0)) {
To: if (($_GET['act'] == 'down') && ($bbuserinfo['userid'] > 0)) {

If that doesnt fix it, I'm not going to bother. Just wait until the next version is released. I'm seriously almost 90% done with the upgrade to 3.5. It shouldnt be hard to move it back again.

c0d3x
06-22-2005, 08:38 PM
i can't wait anymore ^^

Ron1n
06-22-2005, 08:45 PM
3.0 will be released tonight

Blue Steel
06-23-2005, 03:37 PM
waiting ;) with an.... tisipation... LOL

c0d3x
06-23-2005, 04:24 PM
you're the best Ron1n :D ;)

Ron1n
06-23-2005, 09:10 PM
i decided to make the best installer ever seen, so it will take me a day or two more...

trust me, this installer will kick ass.

Ron1n
06-24-2005, 05:53 AM
Lots of people's installers have problems and such, but the installer I am making will be - flawless.

I attached an image of part of the MySQL installer/manager for vBDownloads 3.0. Templates, phrases, hooks, and files also have similar installers.

So what are you looking at in that image? It is a display of the mysql tables and columns. Rows that should be there but have an inproper format are yellow, rows that should not be there are red, and rows that need to be added are green. In order to change a row, you click on it - and it is done!

I think this will help cut down on some errors with upgrading etc because everything to instal can be done in one step (or two). Just run the installer from the admincp and the rest of the work is done for you. If you have errors, you can easily solve them in a graphic environment rather than figuring out how to modify the mysql tables/templates/phrases on your own.

Though the hack is done, im having a lot of fun making the installer and I dont wanna release an update without the installer.

Blue Steel
06-24-2005, 11:57 AM
plz say it'll support screenshots / thumbnails

ThomasR
06-24-2005, 03:02 PM
Ron1n : Do you have posted a feature list of vbdownloads 3.0 ? I don't completly look all the full thread (too much pages :), but as far as I search, I didn't find anything.

By the way, I hope you will support vb tags to insert pictures in the comments (impossible in the vBdownloads 2.0, it prints the code itself...)

And thanks again for this great hack !

c0d3x
06-27-2005, 12:05 PM
any news?

Ron1n
06-28-2005, 06:22 AM
sorry guys, personal issues - i havent had time

XrayHead
06-28-2005, 09:05 AM
Hi All

Did anyone fix the SQL thing? Or are you all waiting on version 3.0?

Only ask as I have the same problems, plus more on my test install.

Xrayhead.

cosmin
06-28-2005, 11:21 AM
this has been brought up several times... there is no fix for that this version. I should be done with the version for 3.5 within 1 week. Then someone can get it working again on 3.0.x--
great! .... looking forward to version 3.5 .... cant wait! :D

Suomi
06-28-2005, 01:55 PM
Is there a way to create a subcategory of a subcatefory? Has anybody changed the code, so that would be possible?

XenaHosting
06-28-2005, 02:00 PM
Everything seemed to be installed okay, because I am not getting any errors..
One question...
1. How do I add it to my nav bar? There doesnt seem to be any instructions..

Ron1n
06-28-2005, 05:20 PM
Everything seemed to be installed okay, because I am not getting any errors..
One question...
1. How do I add it to my nav bar? There doesnt seem to be any instructions..yea, I dont add instructions for the nav bar. just open up another hack you have used to add a link to the nav bar and then copy that code but change the filename. its just a simple template edit, but since everyone's skin is different... i just let ppl do it themselves.


Here is another screenshot of the installer for 3.0 :D

kafi
06-29-2005, 11:48 AM
This is very interesting hack for me. I like your job Ronln.
If you would like to hear some suggestion for next version, pleas read mine:

- when I hit "action" and do not check any file it shows php error message plus message that moved succesfully (although nothing was moved)
- downloads managment doesn't show info in which category was file uploaded (i need to know it before I aprove it)
- file info should show category in which it belongs (you can only see this in navigation bar)

- Search is crucial ! Would be possible to integrate search for documents (downloads) into vbulletin forum search? When I search in forum it will show additional table with search result in documents (downloads).

- it is broader then vb forum...
- in Downloads managemnt page i filter parent category and I am not getting any document, although there are files in child category...
- in parent category (if you have tree categorization) stat is not showing how many files it contain (you can see it in child category)
- would be nice to have file extension in file description
- if I want to check file I can not download it sooner than i aprove it (quick preview would be nice in downloads management page)
- comments by another users
- warning system, because of copyrights

Ron1n
06-29-2005, 05:33 PM
- when I hit "action" and do not check any file it shows php error message plus message that moved succesfully (although nothing was moved)Well, your just asking for trouble there. It should give you a "moved successfull" message because everthing you asked it to move was moved OK (it didnt throw any errors). I might add, and probably will add, some anti-dumb user features to prevent people from seeing that message.- downloads managment doesn't show info in which category was file uploaded (i need to know it before I aprove it)Well, you should actually look at the individual file, see the content, download it, and scan it for viri before approving it, but I think some more file information might be doable.- file info should show category in which it belongs (you can only see this in navigation bar)I dont plan to change this.- Search is crucial ! Would be possible to integrate search for documents (downloads) into vbulletin forum search? When I search in forum it will show additional table with search result in documents (downloads).exists in 3.0- it is broader then vb forum...Not sure what your talking about.- in Downloads managemnt page i filter parent category and I am not getting any document, although there are files in child category...Again, not sure what you mean. Screenshots are helpful.- in parent category (if you have tree categorization) stat is not showing how many files it contain (you can see it in child category)Thanks captain obvious.- would be nice to have file extension in file descriptionI might add it in a later version.- if I want to check file I can not download it sooner than i aprove it (quick preview would be nice in downloads management page)learn to read.- comments by another userslearn to read.- warning system, because of copyrightshuh? how would that warning system work?

yahoooh
06-29-2005, 06:14 PM
i hope the next version will work to 3.0.6 and 3.0.7 because i will not upgrade to 3.5

jugo
06-29-2005, 06:20 PM
I might add, and probably will add, some anti-dumb user features to prevent people from seeing that message.


LMFAO!!! Ron1n ...you are one of a kind bro!!!!

yoyoyoyo
06-29-2005, 06:22 PM
Thanks for the updated version. This is a great download system, but I noticed one small typo in the hack: 'Recomended' should be 'Recommended'

Thanks again!

XenaHosting
06-30-2005, 04:18 AM
yea, I dont add instructions for the nav bar. just open up another hack you have used to add a link to the nav bar and then copy that code but change the filename. its just a simple template edit, but since everyone's skin is different... i just let ppl do it themselves.


Here is another screenshot of the installer for 3.0 :D
Okay I did what you said, and well I had tried that before except nothing shows up, this is what I have as the code..

<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>
<td class="vbmenu_control"><a href="downloads.php?$session[sessionurl]">$vbphrase[downloads]</a></td>
Obviously this is in navbar. Could the reason that its not showing up be because I have so many hacks already on the navbar?

lttegutt
07-01-2005, 12:24 PM
Can someone help me with step 2.

"2 - create two new templates (copy the content from in the included templates folder:
A - downloads_portal_bit (added to the downloads template group - besure to edit line 4 (xxxxx) to your forums directory folder)
B - adv_portal_downloads (added to the adv_portal group)
C - (Optional downloads_portal_bit template - splits "Latest Uploaded Files" and "Most Downloaded Files" into separate modules)"

I dont understand this.

wirewolf
07-01-2005, 01:19 PM
Can someone help me with step 2.

"2 - create two new templates (copy the content from in the included templates folder:
A - downloads_portal_bit (added to the downloads template group - besure to edit line 4 (xxxxx) to your forums directory folder)
B - adv_portal_downloads (added to the adv_portal group)
C - (Optional downloads_portal_bit template - splits "Latest Uploaded Files" and "Most Downloaded Files" into separate modules)"

I dont understand this.
What exactly don't you understand? Not being factious, just trying to help.

Ron1n
07-02-2005, 01:48 AM
i hope the next version will work to 3.0.6 and 3.0.7 because i will not upgrade to 3.5before you make that claim, how about talking with the morons who decided they wouldnt upgrade to 3.0 from 2.x?

skokarl
07-02-2005, 04:30 AM
works it on localhost ?

when I try to upload, and press the upload button, there is only a blank screen ??

yahoooh
07-02-2005, 09:16 AM
before you make that claim, how about talking with the morons who decided they wouldnt upgrade to 3.0 from 2.x?

before u make this insult , do u know what is the duration between first try in publick 3.0.0 beta and the gold one?


sorry for myself that i be down to your level , i think that i talk about download script not talk to down level

BrB :ermm:

lttcoder
07-03-2005, 10:17 PM
Ron1n hey man. Nice release, keep up the good work.
Do you know when next version is out?? the search function is vital for me, i really need it as I have a huge download database!!!

and btw dont care about the people who say that you rip.

Mozokas
07-04-2005, 12:17 PM
need help,, I think my templates may be fubared,,, I only get a blank screen when trying to access http://ampsquad.us/forums/downloads.php?. Is there a fix. I followed installation instructions to the letter.

Mozokas
07-04-2005, 01:05 PM
disregard,, just removed the addon, and reinstalled it now works

Confusion
07-05-2005, 12:45 AM
Hi,

Is there a way to automatically fill in the author box when you go to upload a file (to save users time since they're just gonna put their name in).

Also, is there a way to make it so that you can click a link next to the authors name to give them reputation?

Thanks!

ThomasR
07-05-2005, 11:38 AM
Ron1n : is their a way to include a picture in the comment of the file, with a HTML tag or vbulletin tag like https://vborg.vbsupport.ru/ hosted somewhere else (I don't need an upload addition or anything else, only include an image :)

Also, is their a way to add a texte somewhere on the home of the download page with some instructions ?

Ron1n
07-06-2005, 01:42 AM
@ThomaS: yea - in the next version

@everyone: i released it... https://vborg.vbsupport.ru/showthread.php?t=91696

lange
07-06-2005, 08:43 AM
Thanks.

Ron1n
07-06-2005, 01:17 PM
Is there a way to automatically fill in the author box when you go to upload a file (to save users time since they're just gonna put their name in).I didnt think of that because a lot of people upload things by say... google or microsoft. However, its a good idea and I will use it.

Also, is there a way to make it so that you can click a link next to the authors name to give them reputation?Yes, another good idea. I will add that too.

By the way: EXPECT A 3.0 for 3.0.7 by this weekend. I still need beta testers for this version so please MSN ronin@elitecoders.org if you want to help out. Dont PM me or email me becuase I usually dont have time to read either mailbox.

kafi
07-07-2005, 08:02 PM
Sorry Ron1n, my english wasn't clear at all, so let me explain some of my notes in more detail.

Well, you should actually look at the individual file, see the content, download it, and scan it for viri before approving it, but I think some more file information might be doable.
Before approval I am not able to check the file, since I can not download it. (maybe my configuration is wrong, please correct me if I am wrong)

Originally Posted by kafi
- in Downloads management page i filter parent category and I am not getting any document, although there are files in child category...
Again, not sure what you mean. Screenshots are helpful.

I mean: if you have tree categorizations (parent and child catagories).... for example

- Medal of Honor (Parent category)
-- MOH (Break Through)

Go to Manage Files and filter "Medal of Honor" category and you won't see any files from --MOH (Break Through) child category

learn to read. My apology, but I do not know what you mean by that...

Originally Posted by kafi
- comments by another users
Another user should be able to leave comment for file/document. Sort of review..



Originally Posted by kafi
- warning system, because of copyrights
huh? how would that warning system work?
I wanted something simple, like announcement or "I agree" check box (or I declare).... something that will inform user that he should be aware of copyrights etc...


P.S. I will gladly install 3.0 ASAP and get search and another features you already made

lttcoder
07-09-2005, 04:32 PM
In downloads main page, the file counter say I have 0 files while I atleast have 20 but in sub-category. Will this be fixed in vbdownloads 3.0 (3.0.7) ?

Rids
07-09-2005, 05:18 PM
Main thing I'd like to get working is the stats, they show 0 downloads for every day for the last 112 days which is odd as the total downloads shows 17517. This is the only thing that has steadfastly refused to work since upgrading from v1.0

T3MEDIA
07-10-2005, 12:39 PM
Anyone has the upload template? I installed this on a clients site and the upload html is not correct after upgrading. (----- instead of cat. names)

Gio~Logist
07-10-2005, 04:56 PM
Ron1n,
Seeing that vb3.5 is still in beta stage i believe and it also has very few hacks that have been ported, i was wondering if you can update the hack but leave it at vb3.0.7. Does the hack for vb3.0.7 include comments for downloads already? Because that is ALL i need!

lttcoder
07-10-2005, 07:56 PM
Ron1n,
Seeing that vb3.5 is still in beta stage i believe and it also has very few hacks that have been ported, i was wondering if you can update the hack but leave it at vb3.0.7. Does the hack for vb3.0.7 include comments for downloads already? Because that is ALL i need!


same here Ron1n

Corvette
07-11-2005, 11:07 PM
How would you add the links to the bavbars?

c0d3x
07-13-2005, 07:59 AM
news?

Kagami Kyoji
07-13-2005, 10:26 PM
Anyone know how to link the downloads? I have a bunch of downloads on another server...anyway I can link them? The reason I do this is because the site and downloads are so big that this prevents a crsh from too many people downloading shutting the site down. If anyone knows anything abut how I might be able to link say something like... www.server2.com/files/something.zip to the downloads directory that would really help me. If this is not installed in the hack it could be an idea since many sites do this. Thanks for your help =]

lttcoder
07-16-2005, 02:21 PM
news?

bhxtyrant
07-18-2005, 02:40 AM
I am having a problem with this hack.I followed all directions and successfully installed it on a test install of vB (glad i didnt use my real vB forum yet) everything seems to be working fine everything shows up in admin CP,i can add,edit,delete downloads ect.but when i go to the actual forum to the download manager and click a catagory it doesnt do anything but go to a blank white page.anyone else had this problem or know what could be causing it?

http://img343.imageshack.us/img343/3066/test18ea.th.jpg (http://img343.imageshack.us/my.php?image=test18ea.jpg)
When i click the links to the catagories....

all i get is this.....
http://img343.imageshack.us/img343/4718/test25nz.th.jpg (http://img343.imageshack.us/my.php?image=test25nz.jpg)

note all that shows up in the page source with the blank page is

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>

also note i already tryed completely removing and reinstalling it as well.I use vB 3.0.7

lttcoder
07-18-2005, 04:56 PM
where is Ron1n, I need the version 3.0 urgently!

bhxtyrant
07-18-2005, 10:10 PM
I think he must be busy.i attempted to contact him via msn as posted on a previous page as i was interested in beta testing for the new 3.0 and also reguarding my problem but he wouldnt reply back.

By the way a freind told me the script may not work because the server is a windows server instead of linux.anyone know if this could be true?

Kent100
07-19-2005, 11:52 AM
http://www.sweta.net/forum/downloads.php?do=cat&id=3

Blank Page :confused:

bhxtyrant
07-19-2005, 01:54 PM
Update-I finally got this script working,warning to all users.It seems this script will not work on windows servers.I tried installing it on my server space and kept getting blank pages but when moved to our new server which runs on linux it works perfectly fine.

:EDIT:Also i have a request/idea that i think would be a nice added feature for future released.

It should have a sort of import option.for example say you have already uploaded a folder of JPG's to your server and want to add them into this download manager.It should allow you to bulk import all files from that folder into your download manager listing.Would be really nice :)

yahoooh
07-21-2005, 04:28 AM
is version 3 releazed for 3.0.7?

lttcoder
07-21-2005, 08:11 PM
bah!! where is he. i need version 3 for 3.0.7!!

bhxtyrant
07-21-2005, 10:11 PM
agreed...

xhybrid
07-23-2005, 03:53 PM
HI folks,

i have a big Problem with vbDownloads!

-> http://www.r32-club.de/index.php?page=?=dload

I cant open my categorys :( evertyime i click at a category i became only a white site in IE :-/

i re-installed vbDownloads many times, but i have everytime the same problem.

can someboda help me?

greetz&thx

bhxtyrant
07-23-2005, 06:46 PM
HI folks,

i have a big Problem with vbDownloads!

-> http://www.r32-club.de/index.php?page=?=dload

I cant open my categorys :( evertyime i click at a category i became only a white site in IE :-/

i re-installed vbDownloads many times, but i have everytime the same problem.

can someboda help me?

greetz&thx

Are you on a Windows server or Linux?If you are on windows this could be caused by improper settings for certain permissions.I had the exact same problem but once i tested it on the linux server it works fine.

cdonger
07-24-2005, 04:42 AM
Hi,

I installed your mod v2.0 and it works like a charm. However, the category does not show the number of correct files inside it.

It will show the number of correct files if it is CATEGORY --> FILES
It will not show the number of correct files if it is CATEGORY --> SUB-CATEGORIES --> FILES. It shows that I have zero file when indeed I have more than that.

xhybrid
07-24-2005, 09:08 AM
Are you on a Windows server or Linux?If you are on windows this could be caused by improper settings for certain permissions.I had the exact same problem but once i tested it on the linux server it works fine.

im on a Linux server. I dont find the problem :-/

lttcoder
07-24-2005, 09:49 PM
Hi,

I installed your mod v2.0 and it works like a charm. However, the category does not show the number of correct files inside it.

It will show the number of correct files if it is CATEGORY --> FILES
It will not show the number of correct files if it is CATEGORY --> SUB-CATEGORIES --> FILES. It shows that I have zero file when indeed I have more than that.

I have the same problem, it will be fixed in version 3.0. But where is it??

cdonger
07-24-2005, 10:37 PM
I have the same problem, it will be fixed in version 3.0. But where is it??
What do you mean by where is it?

bhxtyrant
07-25-2005, 12:59 AM
What do you mean by where is it?

I assume he means vBdownload 3.0 thats compatible with vB3.0.7 because Ron1n posted this on page 43-44 and that was back on July 6th

EXPECT A 3.0 for 3.0.7 by this weekend

joeMJ
07-25-2005, 03:45 AM
BTW... xhybrid - greetings to "pierre" ;-) when will I be able to drive one of those HGP-Golfs :D

Seems that this "hack" is a little bit buggy - hey? uninstaller even didn't edit mysql tables right way - did this manually to get this out of my system.

on my production systems it does not work at all (all windows(!)) :disappointed: - seems that there is no way of getting this to run on windows systems. question: who runs this script working on windows/ IIS6 ? fun anyone? i'd like to try again if someone has it running - but i don't believe... on my test system (lamp) it runs - but lack of documentation made me even more mad - oops - sorry - but someone like me (n00b) could save time in stead of testing this out. no critics - i like people spend lots of their time doing thinks like this one here - but I prefere havin' status "beta" on top of this post/ modification.

my problem is - there is no real alternative...

logofreax
07-25-2005, 05:44 AM
After several Hours I installed this great Hack.

Now I´ve 2 Questions.

1.) How can I add a new Box for Text between the Head and the Categories? In the Image you can see, what I mean.

2.) Is it possible to add any Subcategorie under a Subcategorie?

For example:

Categorie
- Subcategorie 1
-- Subcategorie 2

Thanx for help.

cu
logofreax

logofreax
07-25-2005, 05:49 PM
Now i´m sitting here allmost 3 days for installing this Hack...

Now I can do everything but I can´t download the Files.

My folder "downloads" have CHMOD 777 and I already integrated the Line:

chmod($INFO['u_url'].$newfilename, 0755);

into my dl_add.php

The File is named "Test" and the Author is named "-".

If I click on the Downloadlink I got this:

You don't have permission to access /forum/downloads/ - JAD [15331].rar on this server.

All Files I add has CHMOD 600??? Why this?

Can anybody help me at this Problem?

cu
logofreax

Confusion
07-25-2005, 10:47 PM
Now i?m sitting here allmost 3 days for installing this Hack...

Now I can do everything but I can?t download the Files.

My folder "downloads" have CHMOD 777 and I already integrated the Line:

chmod($INFO['u_url'].$newfilename, 0755);

into my dl_add.php

The File is named "Test" and the Author is named "-".

If I click on the Downloadlink I got this:

You don't have permission to access /forum/downloads/ - JAD [15331].rar on this server.

All Files I add has CHMOD 600??? Why this?

Can anybody help me at this Problem?

cu
logofreax
I have the same problem :(.

Rids
07-26-2005, 02:49 PM
Have you given given the usergroups permission to download files in the usergroup manager?

logofreax
07-26-2005, 03:08 PM
If you mean, that I give permission to download, upload, manage and rate Files für Admins, registered User an other. Yes they all have these permission.

Is there anonther Place to change something?

I´m thinking the Problem is the CHMOD of the uploaded File, which are 600 an not 750 or 777.

And another Problem ist the Filename. I choose Filename "Test" and Authors Name "-". The File ist packes as an RAR File.

If I upload this File everything ist alright, but if I watch at the Server the File is namend "- Test.rar" with an Space between - and Test. Is this the Problem cause you said there have to be no spaces in Filename.

cu
logofreax

Kirk Y
07-26-2005, 05:08 PM
Are you certain that your downloads folder's CHMOD has been properly set? Some servers don't support it and don't tell you unless you look in the information bar in your FTP Client.

Anyway... I've found a minor bug. I have a Movies category and then a Funny Movies Sub-Category inside of the Movies category. Now... I have 5 movies inside the Funny Movies sub-cat, but whenever I view the Movies Category on the Downloads main page... it says 0 Files. Should the main category not list the number of files contained inside it as well as the number of files in its sub-categories?

logofreax
07-26-2005, 06:03 PM
Here an Screenshot.

cu
logofreax

Kirk Y
07-26-2005, 08:28 PM
Hmm... I'm not sure.. seems like it works, the only thing I can think of is that you must've done a file modification improperly. Have gone back and re-checked your edits?

Rids
07-27-2005, 03:40 PM
Anyway... I've found a minor bug. I have a Movies category and then a Funny Movies Sub-Category inside of the Movies category. Now... I have 5 movies inside the Funny Movies sub-cat, but whenever I view the Movies Category on the Downloads main page... it says 0 Files. Should the main category not list the number of files contained inside it as well as the number of files in its sub-categories?

I think its always behaved like that, its the reason I don't use subcats

xhybrid
07-27-2005, 04:41 PM
HI folks,

i have a big Problem with vbDownloads!

-> http://www.r32-club.de/index.php?page=?=dload

I cant open my categorys :( evertyime i click at a category i became only a white site in IE :-/

i re-installed vbDownloads many times, but i have everytime the same problem.

can someboda help me?

greetz&thx

nobody can halp me ??? :disappointed:

@Ron1n: any idea for my problem ???

greetz

saff1
07-27-2005, 06:16 PM
Also do the following:

Change:if (($_GET['act'] == 'down') && ($bbuserinfo['userid'] > 0)) {
To: if (($_GET['act'] == 'down') && ($bbuserinfo['userid'] > 0)) {

If that doesnt fix it, I'm not going to bother. Just wait until the next version is released. I'm seriously almost 90% done with the upgrade to 3.5. It shouldnt be hard to move it back again.

both codes are just alike , I don't know change what to what !! :disappointed:

lttcoder
07-27-2005, 07:10 PM
ronin
Last Activity: Today 19:52
Viewing Portal @ 19:52

it was for some minutes ago. why isnt he giving us news about the vbdownloads?

Alan @ CIT
07-27-2005, 07:29 PM
He posted in his other thread that he wouldn't be doing any more work on vBDownloads until vB 3.5 goes final as his licence has expired.

xhybrid
07-27-2005, 08:33 PM
He posted in his other thread that he wouldn't be doing any more work on vBDownloads until vB 3.5 goes final as his licence has expired.

:ermm: :ermm: :ermm:

and 2.0f is still not working on my server :disappointed:

bhxtyrant
07-28-2005, 03:10 AM
I would recommend checking out This Thread (https://vborg.vbsupport.ru/showthread.php?p=743551#post743551) I just installed it with no problems and it actually works 100% so far :) didnt even have to manually edit a single file (except template files if you want it custom as i did) hope it helps you guys.

sketch42
07-31-2005, 08:13 PM
/me clickity clicks Install

great hack

sketch42
08-01-2005, 04:00 AM
having a problem uploading a file larger than 1mb
it seems as if its added however when i view the file it says the filesize is 0 and when i click the dl link it brings me to a page cannot be displayed error

is there anyway to increase the filesize ? is anyone else having this problem?

Gutspiller
08-01-2005, 03:25 PM
What exactly is meant by "Semi-antileech protection"? How much or how little protection is there?

Rids
08-02-2005, 05:06 PM
I would recommend checking out This Thread (https://vborg.vbsupport.ru/showthread.php?p=743551#post743551) I just installed it with no problems and it actually works 100% so far :) didnt even have to manually edit a single file (except template files if you want it custom as i did) hope it helps you guys.

Yes but that's just for links and downloads, it doesn't (and won't) have any upload facility at all.

bhxtyrant
08-02-2005, 06:54 PM
Yes but that's just for links and downloads, it doesn't (and won't) have any upload facility at all.

True but not every single person needs or uses the upload option :) i really didnt need that otpions because the files i had to upload were pretty large in size so i always used FTP to upload.I know that mod may not be good for everyone but im sure it will help a few at least until ron1n gets back with some info of 3.0.

aggiefan
08-02-2005, 10:42 PM
I installed this and have set my registered users to not be able to download (I want it to only work for paid subscriptions). However, even though the admincp has it set as registered users can't DL, they still can.

How can I fix this? Is it in the php file somewhere?

aggiefan
08-03-2005, 01:46 AM
Ok, I figured out how to make it restrict access based on usergroups. If you want to know, how I did it, let me know. I'll be glad to share.

tekram
08-03-2005, 11:27 AM
Sorry is there a way to show the download stats about this thinks:

Categories: 6
Files: 12
Posts: 0
Downloads: 140
Diskspace: 1,72 MB

looks like the gallery stats some one include in the portal stats

payamix1
08-03-2005, 12:41 PM
Ive upgraded from 3.0.7 to 3.0.8 , but VBDownload doesnt work anymore! what can I do ??

mikaelweb
08-03-2005, 01:47 PM
have you made upgrade to VBDownload test to make template upgrade to it

payamix1
08-03-2005, 03:53 PM
ops! I forgot to re-run downloadinstall.php ...
thank you my freind ;)

KuJi
08-08-2005, 04:40 AM
First post on the new update..installing it now :-)

Ron1n
08-08-2005, 04:51 AM
Ill stick around for 30 min in case of errors - then im off to bed.

Confusion
08-08-2005, 06:35 AM
Ill stick around for 30 min in case of errors - then im off to bed.
Thanks for releasing this by the way... But I encountered a problem after upgrading. It seems like there's something wrong with the downloadadmin.php page. I followed all the directions included in the install text file but when I try to go to the settings I get a blank page.

Any suggestions?

BTW, I'm running vB version 3.0.7

Thanks.

Confusion
08-08-2005, 06:41 AM
Thanks for releasing this by the way... But I encountered a problem after upgrading. It seems like there's something wrong with the downloadadmin.php page. I followed all the directions included in the install text file but when I try to go to the settings I get a blank page.

Any suggestions?

BTW, I'm running vB version 3.0.7

Thanks.
Also, I just tried looking at the stats from the downloads.php page and received this error:

Warning: Division by zero in /includes/functions.php on line 1861

Here's what the line looks like:

$totalpages = ceil($results / $perpage);

Confusion
08-08-2005, 06:43 AM
Also, I just tried looking at the stats from the downloads.php page and received this error:

Warning: Division by zero in /includes/functions.php on line 1861

Here's what the line looks like:

$totalpages = ceil($results / $perpage);
It's me again LOL...

I just tried updating usergroup permissions and I received this error:

mysql error: Unknown column 'canmanagepurgatory' in 'field list'

mysql error number: 1054

Spikeh
08-08-2005, 09:01 AM
I get a blank page for the settings section as well.

lttcoder
08-08-2005, 10:37 AM
this is for 3.0.8 not 3.0.7.
I havent tested this yet as people get blank page. I will wait till ron1n can confirm this, or fixes the bug.

T3MEDIA
08-08-2005, 10:43 AM
Ok, I figured out how to make it restrict access based on usergroups. If you want to know, how I did it, let me know. I'll be glad to share.Can you just post it so people can see?

yahoooh
08-08-2005, 12:35 PM
i use vb 3.0.6 .. any one test it with this version?

Ron1n
08-08-2005, 01:42 PM
Thanks for releasing this by the way... But I encountered a problem after upgrading. It seems like there's something wrong with the downloadadmin.php page. I followed all the directions included in the install text file but when I try to go to the settings I get a blank page.

Any suggestions?

BTW, I'm running vB version 3.0.7

Thanks.YOu need to do the admincp edits. - i forgot to put the correct link in, added a fix file

Also, I just tried looking at the stats from the downloads.php page and received this error:

Warning: Division by zero in /includes/functions.php on line 1861

Here's what the line looks like:

$totalpages = ceil($results / $perpage);Try going to your settings and saving perpage as a numerical value higher than zero. I do not get this error and cannot see another possibility as of yet. Maybe more information would help if the problem persists.

It's me again LOL...

I just tried updating usergroup permissions and I received this error:

mysql error: Unknown column 'canmanagepurgatory' in 'field list'

mysql error number: 1054

Fixed.


i use vb 3.0.6 .. any one test it with this version?

It works on 3.0.0 -> 3.0.8

gyutae
08-08-2005, 05:51 PM
I get this when editing user group permissions

Database error in vBulletin 3.0.7:

Invalid SQL: UPDATE usergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
title = 'Administrator',
description = '',
usertitle = 'Administrator',
opentag = '<b>',
closetag = '</b>',
passwordexpires = '0',
passwordhistory = '0',
attachlimit = '0',
avatarmaxwidth = '80',
avatarmaxheight = '80',
avatarmaxsize = '20000',
profilepicmaxwidth = '100',
profilepicmaxheight = '100',
profilepicmaxsize = '65535',
pmquota = '1000',
pmsendmax = '5',
uttstore_discount = '0',
forumpermissions = '393215',
pmpermissions = '3',
calendarpermissions = '31',
wolpermissions = '31',
adminpermissions = '3',
genericpermissions = '20971519',
genericoptions = '24',
journalpermissions = '2047',
arcadepermissions = '31',
vbarticlespermissions = '15',
vbreviewspermissions = '15',
vbtabspermissions = '15',
downloadpermissions = '1'
WHERE usergroupid=6
mysql error: Unknown column 'downloadpermissions' in 'field list'

mysql error number: 1054

xfaethorx
08-08-2005, 07:55 PM
I get this when editing user group permissions

Database error in vBulletin 3.0.7:

Invalid SQL: UPDATE usergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
title = 'Administrator',
description = '',
usertitle = 'Administrator',
opentag = '<b>',
closetag = '</b>',
passwordexpires = '0',
passwordhistory = '0',
attachlimit = '0',
avatarmaxwidth = '80',
avatarmaxheight = '80',
avatarmaxsize = '20000',
profilepicmaxwidth = '100',
profilepicmaxheight = '100',
profilepicmaxsize = '65535',
pmquota = '1000',
pmsendmax = '5',
uttstore_discount = '0',
forumpermissions = '393215',
pmpermissions = '3',
calendarpermissions = '31',
wolpermissions = '31',
adminpermissions = '3',
genericpermissions = '20971519',
genericoptions = '24',
journalpermissions = '2047',
arcadepermissions = '31',
vbarticlespermissions = '15',
vbreviewspermissions = '15',
vbtabspermissions = '15',
downloadpermissions = '1'
WHERE usergroupid=6
mysql error: Unknown column 'downloadpermissions' in 'field list'

mysql error number: 1054


I'm getting the self same error! along with missing 2 phrases and

Invalid SQL: SELECT * FROM dl_files WHERE `purgatory` = '0' AND `category` = '1' ORDER BY `pin` DESC, `date` DESC LIMIT 0,
mysql error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1

mysql error number: 1064

its totally farked my board :s

xfaethorx
08-08-2005, 08:12 PM
AH FOUND IT AND FIXED IT!

go into init.php and replace.

// ###### ELITECODERS DOWNLOAD HACK ######
$_BITFIELD['usergroup']['downloadpermissions'] = array(
'canviewfiles' => 1,
'candownloadfiles' => 2,
'canratefiles' => 4,
'canuploadimages' => 8,
'canlinktofiles' => 16,
'canuploadfiles' => 32,
'canavoidpurgatory' => 64,
'canmanagepurgatory' => 128,
'caneditownfiles' => 256,
'caneditallfiles' => 512,
'canviewdisabled' => 1024
);
// ###### ELITECODERS DOWNLOAD HACK ######

// ###### ELITECODERS DOWNLOAD HACK ######
$_BITFIELD['usergroup']['ecdownloadpermissions'] = array(
'canviewfiles' => 1,
'candownloadfiles' => 2,
'canratefiles' => 4,
'canuploadimages' => 8,
'canlinktofiles' => 16,
'canuploadfiles' => 32,
'canavoidpurgatory' => 64,
'canmanagepurgatory' => 128,
'caneditownfiles' => 256,
'caneditallfiles' => 512,
'canviewdisabled' => 1024
);
// ###### ELITECODERS DOWNLOAD HACK ######

that'll fix the usergroups bug your having!

xfaethorx
08-08-2005, 08:21 PM
the divide by zero error piddle off after you upload your first file...

HOWEVER i've noticed something wrong when i try to upload a file with the wrong extension type it DOESNT tell me the supported extension types. Also can someone tell me what the 2 missing phrases are at the BOTTOM of the usergroup permission block, all are there but those 2! :( if someone can tell me I'll add the phrases by hand.

Ron1n
08-08-2005, 08:48 PM
// ###### ELITECODERS DOWNLOAD HACK ######
$_BITFIELD['usergroup']['ecdownloadpermissions'] = array(
'canviewfiles' => 1,
'candownloadfiles' => 2,
'canratefiles' => 4,
'canuploadimages' => 8,
'canlinktofiles' => 16,
'canuploadfiles' => 32,
'canavoidpurgatory' => 64,
'canmanagepurgatory' => 128,
'caneditownfiles' => 256,
'caneditallfiles' => 512,
'canviewdisabled' => 1024
);
// ###### ELITECODERS DOWNLOAD HACK ######Fsk, yeak I reverted BACK to the old one when I added the fix :(.

the divide by zero error piddle off after you upload your first file...

HOWEVER i've noticed something wrong when i try to upload a file with the wrong extension type it DOESNT tell me the supported extension types. Also can someone tell me what the 2 missing phrases are at the BOTTOM of the usergroup permission block, all are there but those 2! :( if someone can tell me I'll add the phrases by hand.
ecdownloads_can_edit_all_files and ecdownloads_can_view_disabled

KTBleeding
08-08-2005, 09:03 PM
Question:

If I install this on 3.0.8, is there an easy upgrade available for the 3.5 version for when I do upgrade my vBulletin? Or would I be better off waiting until after I upgrade to vB3.5 to install ecD?

Confusion
08-08-2005, 10:05 PM
Try going to your settings and saving perpage as a numerical value higher than zero. I do not get this error and cannot see another possibility as of yet. Maybe more information would help if the problem persists.
Thanks for the response. After editing the admincp/index.php and functions/init.php file (which fixed the other problems I was having) as noted in your fix file, I'm still having a problem with the stats page. I'll let this screen shot do the talking:

https://vborg.vbsupport.ru/ (http://xs41.xs.to/pics/05322/statscreen.gif)

Is this normal? Or did I totally screw up LOL?

Thanks again.

Confusion
08-08-2005, 10:15 PM
ecdownloads_can_edit_all_files and ecdownloads_can_view_disabled
I was wondering about these too. Are these permissions phrases?

Thank you.

Confusion
08-08-2005, 10:26 PM
One more LOL...

I'm getting a "403 Forbidden by Web Configuration" error when I try to download a file I upload. I can see it in my FTP but I'm unable to retrieve it by clicking the Download Here link after I upload it. I set the folders permissions at 777. Any suggestions?

Thank you.

Ron1n
08-08-2005, 11:20 PM
Thanks for the response. After editing the admincp/index.php and functions/init.php file (which fixed the other problems I was having) as noted in your fix file, I'm still having a problem with the stats page. I'll let this screen shot do the talking:

http://xs41.xs.to/pics/05322/statscreen.gif.xs.jpg (http://xs41.xs.to/pics/05322/statscreen.gif)

Is this normal? Or did I totally screw up LOL?

Thanks again.

Oh right. You have to empty your dl_stats thing. LOL. Sorry about that.

I was wondering about these too. Are these permissions phrases?

Thank you.

Yes.


Question:

If I install this on 3.0.8, is there an easy upgrade available for the 3.5 version for when I do upgrade my vBulletin? Or would I be better off waiting until after I upgrade to vB3.5 to install ecD?They are the same thing, just with different files. So you should be able to change from one to the other with no problem at all.

One more LOL...

I'm getting a "403 Forbidden by Web Configuration" error when I try to download a file I upload. I can see it in my FTP but I'm unable to retrieve it by clicking the Download Here link after I upload it. I set the folders permissions at 777. Any suggestions?

Thank you.

Are you using microsoft bimbows?

Drago912
08-08-2005, 11:57 PM
Oh right. You have to empty your dl_stats thing. LOL. Sorry about that.



Yes.


They are the same thing, just with different files. So you should be able to change from one to the other with no problem at all.



Are you using microsoft bimbows?

I dunno, I've tried everything.....I made all the fixes but still get a blank page when trying to access the download settings in the admincp.

Drago912
08-09-2005, 12:10 AM
I can go into the categories no problem but just a blank page when accessing the settings..... :disappointed:

Ron1n
08-09-2005, 12:23 AM
I can go into the categories no problem but just a blank page when accessing the settings..... :disappointed:You didnt do all of the fixes because there is a fix for this problem. Just reopen the fix list and search for Settings, then you should see the fix. When your done please click install. :D

Drago912
08-09-2005, 12:39 AM
I have done everything in the fix list.....the only thing that struck me was you say :

Find in downloadadmin.php:

// ###### ELITECODERS DOWNLOAD HACK ######
construct_nav_option("Settings", 'downloadadmin.php?do=settings', '<br />');
construct_nav_option("Categories", 'downloadadmin.php?do=category', '<br />');
construct_nav_group("Downloads", '<hr />');
// ###### ELITECODERS DOWNLOAD HACK ######


Replace with:


// ###### ELITECODERS DOWNLOAD HACK ######
construct_nav_option("Settings", 'options.php?do=options&dogroup=ecdownloads', '<br />');
construct_nav_option("Categories", 'downloadadmin.php?do=category', '<br />');
construct_nav_group("Downloads", '<hr />');
// ###### ELITECODERS DOWNLOAD HACK ######




This isnt in the admindownload.php, its in the index.php.......all changes have been made and still same result.

Drago912
08-09-2005, 12:43 AM
I got it so I could access the settings by putting the downloadadmin.php from version2.0 in the admincp directory.....all is good now, just gotta get the uploads and downloads directory working........ :squareeyed:

bspiller82
08-09-2005, 01:08 AM
Your query in the bottom of the changes file does not seem to work..

DELETE FROM <PREFIX>dl_stats WHERE 1

Error
SQL-query:

DELETE FROM < PREFIX > dl_stats WHERE 1
MySQL said:

#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '<PREFIX>dl_stats WHERE 1' at line 1

bspiller82
08-09-2005, 01:35 AM
In the user permisison in the CP it doesn't show the information I attached a screenshot. Also the downloads aren't showing anything Examples can be found here http://www.247xtreme.com/forums/downloads.php. Notice how it shows that there is files in the catogory? When you click it it doesn't show them.

Confusion
08-09-2005, 06:52 AM
Are you using microsoft bimbows?
LOL yes...

Confusion
08-09-2005, 06:56 AM
Also, I had suggested that the abiblity to add to ones reputation would be a great feature and you said you'd add it but I'm not seein' it. Is this somethin' I could put together by using code from the postbit_legacy template or would it be too complex?

BTW, I'll have screenshots for everyone as soon as the last problem is fixed :).

logofreax
08-09-2005, 07:06 AM
Hi, I will Update from vBdownloads 2.0f to new Version and got this Error Message at clicking "Install":

Datenbankfehler in vBulletin 3.0.6:

Ungueltige SQL-Abfrage: INSERT INTO `vb3_phrase` (`languageid`,`varname`,`text`,`phrasetypeid`) VALUES (-1, 0x73657474696e6767726f75705f6563646f776e6c6f616473 , 'ec Download Options', 5000)
mysql error: Duplicate entry 'settinggroup_ecdownloads--1-5000' for key 2

mysql error number: 1062

Datum: 09.08.2005 09:57:52
Skript: http://www.handy-faq.de/forum/admincp/downloadinstaller.php?do=install
Referer: http://www.handy-faq.de/forum/admincp/downloadinstaller.php
Benutzername: logofreax
IP-Adresse: 84.170.221.93


I think is the missing of my Pr?fix vb3_

How can I fix it?

Where I have to put the Pr?fix?

Thanx f?r help
logofreax

bspiller82
08-09-2005, 07:15 AM
In the user permisison in the CP it doesn't show the information I attached a screenshot. Also the downloads aren't showing anything Examples can be found here http://www.247xtreme.com/forums/downloads.php. Notice how it shows that there is files in the catogory? When you click it it doesn't show them.

Ideas?

The download|upload| and what ever other links there was are also missing... This craps all borked. I did a fresh install and the same thing.
All you see is | | | and you can't anywhere...

Morrus
08-09-2005, 04:14 PM
I installed this, but can't get it working.

Originally I installed it without the fix list (I assumed the fixes were updated in the ZIP package!). Realising my mistake, I clicked uninstall to start again. Now, when I try to install, I get:

Database error in vBulletin 3.0.7:

Invalid SQL: INSERT INTO `phrase` (`languageid`,`varname`,`text`,`phrasetypeid`) VALUES (-1, 0x73657474696e6767726f75705f6563646f776e6c6f616473 , 'ec Download Options', 5000)
mysql error: Duplicate entry 'settinggroup_ecdownloads--1-5000' for key 2

mysql error number: 1062

Date: Tuesday 09th of August 2005 01:09:35 PM
Script: http://www.enworld.org/admincp/downloadinstaller.php?do=install
Referer: http://www.enworld.org/admincp/downloadinstaller.php?do=uninstall
Username: Morrus
IP Address: 84.66.185.172


Note also that the "rebuild language" option resulted in an error (cannot connect to database), whereas the rebuild styles option worked fine, originally.

Any help would be appreciated!

xtreme-mobile
08-09-2005, 05:04 PM
i get just a white screen when i click settings in admin cp any ideas? any ideas?

regards

dean

Morrus
08-09-2005, 05:14 PM
i get just a white screen when i click settings in admin cp any ideas? any ideas?

regards

dean

Even I can figure that one out. You didn't download and apply the changes in the "fix" file.

xtreme-mobile
08-09-2005, 05:17 PM
ok ill try that would that be causing a mysql eror aswell?

i assumed the author would have put the fixes in the zip

ill report back once done

xtreme-mobile
08-09-2005, 05:20 PM
// ###### ELITECODERS DOWNLOAD HACK ######

looking for that in the downloadadmin and it dont exist

where is it?

xtreme-mobile
08-09-2005, 05:29 PM
ok i can now see the settings page BUT

i get a error when i try to go into the category on the actuall page

http://www.extreme-mobile.com/forums/downloads.php


also it shows an error when i try to run the query
any ideas?

many thanks

dean

org
08-09-2005, 05:34 PM
// ###### ELITECODERS DOWNLOAD HACK ######

looking for that in the downloadadmin and it dont exist

where is it?

Its not there, the Fix instructions are wrong. They refer to the admincp/index.php.

I cant seem to see anything what so ever after this install, how do you display the hack? Should be http://.....forums/download.php right? :ermm:

xtreme-mobile
08-09-2005, 06:00 PM
downloads.php

mine is http://www.extreme-mobile.com/forums/downloads.php

how do you upload files??????

bspiller82
08-09-2005, 06:08 PM
// ###### ELITECODERS DOWNLOAD HACK ######

looking for that in the downloadadmin and it dont exist

where is it?

That change goes in the admincp/index.php file.

bspiller82
08-09-2005, 06:09 PM
ok i can now see the settings page BUT

i get a error when i try to go into the category on the actuall page

http://www.extreme-mobile.com/forums/downloads.php


also it shows an error when i try to run the query
any ideas?

many thanks

dean

Looks like yours is missing the links between the | | | | | as well.....

org
08-09-2005, 06:10 PM
downloads.php

mine is http://www.extreme-mobile.com/forums/downloads.php

how do you upload files??????

Ok thanks. I still just get a blank page, and thats after installing the fix.
So I dont really know how to upload yet, as I dont get it to work at all.

MyPHPadmin wont let me run the query described in the fix. Something is wrong with it. My errormsg:

#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '<PREFIX>dl_stats WHERE 1' at line 1

What is the correct query? Supplied in the "fix" it says:

DELETE FROM <PREFIX>dl_stats WHERE 1

xtreme-mobile
08-09-2005, 06:12 PM
Looks like yours is missing the links between the | | | | | as well.....

any ideas how to fix?

many thanks

dean

Drago912
08-09-2005, 06:39 PM
Try puting this in the admincp directory.....this is the downloads.php from v2. This is the only way I could get the settings to show.

Confusion
08-09-2005, 07:10 PM
Is anyone else having problems retrieving the files you upload?

Ron1n
08-09-2005, 10:42 PM
My god, I have never seen so much spam in just one day. Ok, I will try to hack away at it.

Try puting this in the admincp directory.....this is the downloads.php from v2. This is the only way I could get the settings to show.That is NOT smart. I told you before, make the edits. If you still cant get it to work, go to your forum/acmindp/options.php and select ecdownloads.

Is anyone else having problems retrieving the files you upload?Only if they are using windows like you, now stop bumping your question - it just adds to the confusion. I will deal with questions in the order i see fit, and therefore I will address issues that apply to everyone rather than one person. That being said, try searching for 'windows' in this thread, someone had a similar error to you and was using windows. I dont know if they fixed it, maybe they did. I dont use windows as a webserver so unless you provide a URL i cant test it.

http://www.extreme-mobile.com/forums/downloads.phpYour missing the phrases, you must rebuild your language. That way you will be able to see the links (such as "ADD FILE")

Its not there, the Fix instructions are wrong. They refer to the admincp/index.php.Yup, thanks.

I cant seem to see anything what so ever after this install, how do you display the hack? Should be http://.....forums/download.php right? :ermm:You need to rebuild styles and languages. Thats a must. It isnt unique to this hack, it applies to all of them.

Ideas?

The download|upload| and what ever other links there was are also missing... This craps all borked. I did a fresh install and the same thing.
All you see is | | | and you can't anywhere...
Rebuild your styles and languages.

Note also that the "rebuild language" option resulted in an error (cannot connect to database), whereas the rebuild styles option worked fine, originally.

Any help would be appreciated!I dont think thats my error - i cant be sure though. I rebuild styles and langauges by using the vbulletin functions (i just direct you to their URL). Does anyone see an actual ERROR MESSAGE?

i get just a white screen when i click settings in admin cp any ideas? any ideas?

regards

dean
Rebuild styles and languages.

Detomah
08-09-2005, 11:42 PM
Not wanting to sound like a smart a** or pre-empt a whole load of bugs jumping out at me here, but superb, perfect install first time, without a single error. :)

I had a previous version installed and had to manually delete it as I had moved server and some files got a bit mixed up, so I then installed the new version fresh and not a single problem.

Tis a superb hack, thanks a lot. :)

*already pressed install button*

Drago912
08-10-2005, 12:01 AM
That is NOT smart. I told you before, make the edits. If you still cant get it to work, go to your forum/acmindp/options.php and select ecdownloads.

Not smart eh.....was the only way it would work and I have done every edit you supplied...........I'll do something real smart then and uninstall the mod......thats for your help.

Detomah
08-10-2005, 12:18 AM
Never mind.