View Full Version : Major Additions - DownloadsII
Pages :
1
2
3
4
5
6
7
[
8]
9
10
Bluetiereign
01-23-2012, 04:18 AM
try this
go to the downloads, click Manage Files and then click the Update Counters button.
I manually added my files and used this to get my filesizes to update the last time using this. However, I cannot get to this page - as this link is not being provided anywhere - even though I have it checked off in DownloadsII's settings.
Can you provide a direct link to the 'Manage Files' please ?
please how can i resolve this probleme
https://vborg.vbsupport.ru/showthread.php?p=2290140&highlight=security+token#post2290140
Luffy-9
01-23-2012, 04:34 AM
I might use it in the future thanks :)
Bluetiereign
01-23-2012, 05:20 AM
I manually added my files and used this to get my filesizes to update the last time using this. However, I cannot get to this page - as this link is not being provided anywhere - even though I have it checked off in DownloadsII's settings.
Can you provide a direct link to the 'Manage Files' please ?
Nevermind about the link... (downloads.php?do=manfiles&act=updatecounters). However, this is not updating the file sizes. Thanks for any help.
Welshy2008
01-23-2012, 09:12 AM
Can anyone confirm this to be working flawless on 4.1.10 please?
sadiq6210
01-23-2012, 11:58 AM
Can anyone confirm this to be working flawless on 4.1.10 please?
Perfect with 4.1.10
Download fails due to missing security token when Downloads are restricted to members. If a guest tries to download he gets the Login form. After succesfull login he is redirected back to Download, but this fails due to missing security token.
My workaround is to redirect the logged in member to the download page for this file where he can start a new download of the file:
find in downloads.php around line 485:
eval(standard_error(fetch_error('security_token_in valid', $vbulletin->options['contactuslink'])));
replace with:
if ($permissions['downloads2permissions'] & $vbulletin->bf_ugp['downloads2permissions']['candownloadfiles'])
{
exec_header_redirect("downloads.php?" . $vbulletin->session->vars['sessionurl'] . "do=file&id=" . $file[id]);
}
else
{
eval(standard_error(fetch_error('security_token_in valid', $vbulletin->options['contactuslink'])));
}
@Jelle: Pleas add this to your repository, thanks :)
Thank you thank you very much.
This solved the issue :)
But a question:
The first line that I search for replace (around line 485) I view that appears in more lines, only need replace the line around 485?
Regards!
Hippy
01-23-2012, 07:52 PM
I manually added my files and used this to get my filesizes to update the last time using this. However, I cannot get to this page - as this link is not being provided anywhere - even though I have it checked off in DownloadsII's settings.
Can you provide a direct link to the 'Manage Files' please ?
your url /downloads.php?do=manfiles
steven s
01-24-2012, 01:17 AM
I haven't had this problem before. I don't know if it's related to v4.1.10.
Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/downloads.php on line 1370
Fatal error: require_once() [function.require]: Failed opening required '/home/username/public_html/includes/functions_wysiwyg.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/username/public_html/downloads.php on line 1370
FIXED: Evidently the file was removed from 4.1.4. I uploaded a copy from 4.1.3.
I can't believe I'm the only one who experienced this unless there is a fix I haven't read.
steven s
01-24-2012, 02:04 AM
Perfect with 4.1.10Really?
You can upload files?
See my post above.
Are you running 6.0.9?
Hippy
01-24-2012, 03:25 AM
Thank you thank you very much.
This solved the issue :)
But a question:
The first line that I search for replace (around line 485) I view that appears in more lines, only need replace the line around 485?
Regards!
turn off Enable/Disable Download Agree
and this is a temp fix for the security token..
not sure yet I haven't looked into it yet
turn off Enable/Disable Download Agree
and this is a temp fix for the security token..
not sure yet I haven't looked into it yet
Yes, but my question was another:
The replaced line, I view that, in the downloads.php file, appears in more lines, my question, is only necessary to replace the first?
Thanks and regards :)
RS_Jelle
01-24-2012, 04:28 PM
I haven't had this problem before. I don't know if it's related to v4.1.10.
Warning: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/downloads.php on line 1370
Fatal error: require_once() [function.require]: Failed opening required '/home/username/public_html/includes/functions_wysiwyg.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/username/public_html/downloads.php on line 1370
FIXED: Evidently the file was removed from 4.1.4. I uploaded a copy from 4.1.3.
I can't believe I'm the only one who experienced this unless there is a fix I haven't read.
Support for the new editor is integrated since 6.0.8, but there's no code like that on line 1370. Do you run any code modifications?
It should be wrapped in a version_compare() conditional to check your vBulletin version, so it can use the old or new editor code accordingly.
steven s
01-24-2012, 10:07 PM
Support for the new editor is integrated since 6.0.8, but there's no code like that on line 1370. Do you run any code modifications?
It should be wrapped in a version_compare() conditional to check your vBulletin version, so it can use the old or new editor code accordingly.It looks like my downloads.php file is 6.0.4 even though plugin manager says 6.0.9 says
I had problems with the CMS widget and kept going back and forth between different version.
Also a lot of security token errors. Perhaps by installing a lower version something got changed.
Hippy
01-24-2012, 10:46 PM
Yes, but my question was another:
The replaced line, I view that, in the downloads.php file, appears in more lines, my question, is only necessary to replace the first?
Thanks and regards :)
I tried it in the first line only like was posted and the downloads wouldn't even load .. some error I fogot what it was so I am not sure RS_Jelle would know better
my question now would be why is it when you turn on Download Agree this error happens when it's off it don't
Scyther
01-25-2012, 03:51 AM
one question.
i tried uninstalling this mod from my forum. Products and plugins are removed.
But i still have the option of 'Downloads' on left panel in Admin CP..!!!
How to remove it?
and the reason why i uninstalled it was because it started causing issues with usergroups!
sadiq6210
01-25-2012, 04:55 AM
one question.
i tried uninstalling this mod from my forum. Products and plugins are removed.
But i still have the option of 'Downloads' on left panel in Admin CP..!!!
How to remove it?
and the reason why i uninstalled it was because it started causing issues with usergroups!
Don't forget to delete all files from your forum folder.
Hippy
01-25-2012, 10:47 AM
It looks like my downloads.php file is 6.0.4 even though plugin manager says 6.0.9 says
I had problems with the CMS widget and kept going back and forth between different version.
Also a lot of security token errors. Perhaps by installing a lower version something got changed.
re upload all the new files and make sure they are overwriting .. re import the xml and allow over write as well do not uninsall..
see if it helps..
Bluetiereign
01-28-2012, 02:17 PM
Thanks Hippy for the reply. But updating the counters did not resolve my issue.
Does anyone know how to get the file size(s) to be recognized and updated without manually entering them ? I did not put in the file sizes when I first started using this mod and transferred one part of my downloads. It updated them itself (a few releases ago). I'm moving the rest of my downloads over and now it won't do it.
ZZealott
01-30-2012, 05:10 PM
updating the counters did not resolve my issue.
Does anyone know how to get the file size(s) to be recognized and updated without manually entering them ? I did not put in the file sizes when I first started using this mod and transferred one part of my downloads. It updated them itself (a few releases ago). I'm moving the rest of my downloads over and now it won't do it.
As far as I can tell there is no built-in way to have it re-calculate missing file sizes. I think the "import" script might calculate them during import, but I've not used that feature myself, so can't speak to that.
PALAZAN
02-03-2012, 05:16 PM
I used to use this mod years ago and i have to say its one of the best mods i have used.
Anyways i have a qestion , is it possable to limit some catagorys to diffrent usergroups?
Bluetiereign
02-04-2012, 09:29 PM
Does anyone tell me where the total number of downloads is stored. While I only have a few more than a 1000 downloads, it keeps bumping that download number (unique ID) to over 5000 when a new one is added. What value do I need to to change to get this number to reflect the actual downloads in the database ?
I've done a search of the database, but the current number or the next is not showing up.
squidsk
02-04-2012, 10:32 PM
The download id is automatically incremented everytime you add something into the download table. So assuming no download has ever been deleted the number will match the total number of downloads. As soon as any download gets deleted the id will no longer match the number of entries in the table. Why do you care if the download id corresponds to the number of downloads? There is no value in having them be equal.
Bluetiereign
02-04-2012, 11:17 PM
there is no 'value' as far as necessary to run it. however, I am manually importing some files, and scripting the import of some. it would make my life easier to start from the actual numbers I have to keep everything straight - including the pictures.
What number is being auto incremented please ? I would like to change that number.
Update: Never mind. I downloaded the data from the database, uninstalled and re installed the MOD and back in business with a normal count. Thanks anyway.
otttto
02-05-2012, 08:11 AM
Hello,
after Update to 4.1.10 all my Downloads is missing in Download 2.
https://vborg.vbsupport.ru/external/2012/02/47.jpg
All Downloads stay in the download Folder.
What can i do ?
thanks otttto
spillage
02-06-2012, 01:37 AM
A couple of pre download/install questions;
Do we have confirmed 4.1.10 compatibility?
Does someone have an English install I can look at?
Does the Comments editor have the Go Advanced option?
linuxbaby
02-07-2012, 12:52 PM
Hello
I hope this is the right forum to ask my question. When not, please dont worry.
At first i say thank you very much for this very good addon.
We take in our Forum the Vers. DownloadsII 6.0.7 with vBulletin 4.1.10.
My question:
is it possible to put a field with the word "version" behind the word "Autor" and "Downloads" (look the picture) or is it possible to rename a static field name to "version"?
https://vborg.vbsupport.ru/external/2012/02/42.jpg
or is it possible to put a column "Version" behind "Kategorie" and "Beschreibung"?
https://vborg.vbsupport.ru/external/2012/02/43.jpg
Thanks for help.
regards,
linuxbaby
squidsk
02-07-2012, 03:12 PM
Its all possible but would require customizing the mod, as currently there's no "version" field in the database, so before a version was entered in the display it would first need a field in the database.
spillage
02-07-2012, 10:16 PM
I agree with linuxbaby, an Version input field would be great.
Even if it was appended the filename in square brackets filename [V?.?]
Now, back to my questions from post #1776 above.
linuxbaby has indicated that it works with 4.1.10.
Outstanding questions;
1. Does the Comments editor have the Go Advanced option?
2. Does someone have an English site/install I can look at?
Thanks,
Bulbucan
02-08-2012, 06:57 AM
Hello, i have a problem with background when i look in uploaded file.
http://www.diigo.com/item/image/1m7gu/sqok?size=o
^ there is screenshot.
linuxbaby
02-08-2012, 10:01 AM
Its all possible but would require customizing the mod, as currently there's no "version" field in the database, so before a version was entered in the display it would first need a field in the database.
thanks for the quick reply.
you know a way to insert my "dreamword version" at first in a database field?
It is important for our forum.
Please help.
Best regards,
linuxbaby
squidsk
02-08-2012, 03:00 PM
Its not as easy as just adding a field to the database, which is simple, the query would be something like:
alter table dl2_files add column version int not null default 1
But once that's done all the code needs to be changed to add a version field to the page so that one can be entered and then you need to modify the code so that the version is written to the database. After that you need to modify the pages to read the version information and display it to the screen.
It might sound simple but there's a fair bit of work involved.
linuxbaby
02-08-2012, 04:12 PM
Thank you for the reply :up:
i have to test it but my school is not good enough to know what you mean.
alter table dl2_files add column version int not null default 1
Maybe it is in the next version of downloadsII a field with the name "version"?
Best regards from germany,
linuxbaby
squidsk
02-08-2012, 09:44 PM
Two bugs to report.
First bug comes with a feature request. The bug is the security token bug, but different from what others have described. Here's how to reproduce the bug. First guests have download permissions. Second have your site open in two different windows/tabs, one of which points to a download the other to any page what so ever. Either be logged in on both or logged out on both, it doesn't matter. If on the non-download page you log out, or log in, and then try to download the file from the download page without refreshing you'll get a security token error. The request that goes along with this, is to remove the security token from the url of the download button and have downloads.php grab it from the $vbulletin after the download button is clicked, as that should stop all security token issues. It would also prevent security token errors when a user posts a link directly to the download button and others try to follow it, which of course won't work as the security tokens would be different.
EDIT: This bug can be reproduced as well by logging in with a second account, the guest account does not necessarily required download permissions.
Second bug. If a file does not exist in the download directory, but a entry points to it, you do not get a vbulletin error message, but just a plain php message. The block of code in question is at line 754 in version 6.0.9. Wrapping that code in an if(file_exists($dlfilename)) would probably solve the problem.
EDIT 2: Both bugs are present in both 5.1.2 and 6.0.9.
Hippy
02-08-2012, 10:01 PM
Two bugs to report.
First bug comes with a feature request. The bug is the security token bug, but different from what others have described. Here's how to reproduce the bug. First guests have download permissions. Second have your site open in two different windows/tabs, one of which points to a download the other to any page what so ever. Either be logged in on both or logged out on both, it doesn't matter. If on the non-download page you log out, or log in, and then try to download the file from the download page without refreshing you'll get a security token error. The request that goes along with this, is to remove the security token from the url of the download button and have downloads.php grab it from the $vbulletin after the download button is clicked, as that should stop all security token issues. It would also prevent security token errors when a user posts a link directly to the download button and others try to follow it, which of course won't work as the security tokens would be different.
EDIT: This bug can be reproduced as well by logging in with a second account, the guest account does not necessarily required download permissions.
Second bug. If a file does not exist in the download directory, but a entry points to it, you do not get a vbulletin error message, but just a plain php message. The block of code in question is at line 754 in version 6.0.9. Wrapping that code in an if(file_exists($dlfilename)) would probably solve the problem.
I luv bug fixes .. is there any thing other than to wrap that code you posted ?
did you test it again..
thansk for the post:up:
otttto
02-09-2012, 11:41 AM
frome Post 1775.
Info
All download links are missing from the downloads.
( i see in Edit Download / Link Field )
Only the links that are inserted from the outside there.
All of the files I uploaded are no link when I go to Edit Download.
Best regards Otttto
squidsk
02-09-2012, 03:28 PM
I luv bug fixes .. is there any thing other than to wrap that code you posted ?
did you test it again..
thansk for the post:up:
I was actually slightly mistaken about the second bug. It isn't a php error I'm getting but rather the intentional error of the plugin. Its just creating a simple blank page instead of using a vbulletin error page. It would be nice if this was fixed so that if the file doesn't exist it displays a standard vbulletin error message. The line that would need to be fixed is link 672, and there's another instance of that type of page at 667 if the filename is the empty string.
As for the first bug, I realized after giving it some thought that it isn't actually a bug, but rather how things are supposed to work to deal with the CSRF issue mentioned here (https://vborg.vbsupport.ru/showpost.php?p=2026994&postcount=644).
Which leads me to a slightly modified request for improvement, in two parts. First improvement, can the act & and actionhash be converted from get to post type parameters for the page, this would at least eliminate the second problem of people linking to the download button's link. The second improvement would be to not include the download function in those requiring the session token, the reason being that if someone forced a download it would not have any adverse affect on the downloads table, the most it does is increment the number of downloads a user has and the number of times a particular file has been downloaded, especially if you have your extensions setup correctly. The upload and delete functions should of course absolutely require the action hash.
A third improvement request, could the report function be linked into the standard vbulletin reports so that threads are created in whatever forum was setup to post other reports to?
Alfa1
02-09-2012, 04:35 PM
I am running LDM on my site. In the past I have not considered DII as LDM was more advanced. I wonder how DII has evolved over the years. Is it comparable to LDM now or even better?
Is there a changelog somewhere?
Is there an import script from LDM to DownloadsII?
What integration features does DII have?
Hippy
02-09-2012, 08:35 PM
@squidsk I will second those requests
thanks for the reply ...
squidsk
02-09-2012, 10:44 PM
Just for people to know how I've fixed the non-existent file page. It took 2 steps.
1) Create a new phrase as per the image:
https://vborg.vbsupport.ru/attachment.php?attachmentid=136392&stc=1&d=1328830886
2) Changed the code on line 672 as follows:
from
echo "<html><head><title>DownloadsII Error</title></head><body>ERROR: File not found.</body></html>";
to
eval(standard_error(fetch_error('dl2_file_not_foun d', 'downloads.php?do=report&fileid=' . $file['id'])));
A similar phrase and code replacement will also work for when the filename is the empty string.
Hippy
02-10-2012, 02:03 AM
what version are you running of vb I only have front-end redirect message or error messages
thanks for the info / update/ fix
and the varname should be something to this affect
$vbphrase[dl2_file_not_found]
twolegit
02-10-2012, 02:50 AM
hmmm, maybe I'm not doing something right but i cant get a folder to hide from some user groups and not others....i see the function but it just doesn't seem to work.
any ideas?
squidsk
02-10-2012, 03:00 PM
what version are you running of vb I only have front-end redirect message or error messages
thanks for the info / update/ fix
and the varname should be something to this affect
$vbphrase[dl2_file_not_found]
I'm running 4.1.10. If you don't have Front-End Error Messages then put the message in the same group as the security_token_invalid phrase, since I'm using the same message displaying mechanism that that error uses.
Hippy
02-10-2012, 07:06 PM
hum weird same version with out that front-end error messags ..
will give it a go thanks for the info
squidsk
02-10-2012, 07:45 PM
If it helps the entries aren't in alphabetical order, some things are all over the place in the drop down list when adding a new phrase, see the picture where I've circled the phrase group I used, notice how its out of order.
Hippy
02-10-2012, 08:32 PM
helps alot ..
mine does not say the same for some reason (un none)
but it's in the same location ;)
thanks for the help .
going above and beyond..
thats what makes a strong community
spillage
02-11-2012, 03:00 AM
A couple of pre download/install questions;
Do we have confirmed 4.1.10 compatibility?
Does someone have an English install I can look at?
Does the Comments editor have the Go Advanced option?
linuxbaby, thanks for the 4.1.10 confirmation.
Bulbucan, thanks for a link to an English example.
As for the last point; I've installed it, and I'm setting it up... the comments editor is by default the Advance version.
japaro
02-11-2012, 07:35 PM
Installed latted Downloads II version: 6.0.9
I have an error [page not found] if upload a file using the upload feature of this app, but if i import the file from my server the file downloads ok
Demo:http://japaro.net/downloads.php?do=cat&id=2
Same file was uploaded and imported
twolegit
02-12-2012, 03:29 AM
Installed latted Downloads II version: 6.0.9
I have an error [page not found] if upload a file using the upload feature of this app, but if i import the file from my server the file downloads ok
Demo:http://japaro.net/downloads.php?do=cat&id=2
Same file was uploaded and imported
sounds to me like you need to add extensions....ie. rar, zip.....
there are no extensions listed with the install!
hope that helped!
Bulbucan
02-12-2012, 09:15 AM
Hello, i have a problem with background when i look in uploaded file.
http://www.diigo.com/item/image/1m7gu/sqok?size=o
^ there is screenshot.
no one can help ?...
BlueCheri
02-12-2012, 09:24 AM
Tagged, soon will try to go for it.
G!
carik
02-12-2012, 01:42 PM
Hello!
At picture addition to an investment writes:
Allow users with permission to view and post images.
squidsk
02-12-2012, 04:11 PM
no one can help ?...
I'm not seeing any problem with the background. What is the problem you're referring to?
japaro
02-12-2012, 04:44 PM
sounds to me like you need to add extensions....ie. rar, zip.....
there are no extensions listed with the install!
hope that helped!
No because i can download a file which is imported but not the files that are uploaded throught the [add file] button eg; same file was uploaded and imported
twolegit
02-12-2012, 07:20 PM
No because i can download a file which is imported but not the files that are uploaded throught the [add file] button eg; same file was uploaded and imported
well there is a difference between importing a file and uploading a file.....i would check it out if i were you, i had the same errors and it was because i didn't have any extension.
but i'm new to this stuff and i was only trying to help
Bulbucan
02-12-2012, 09:22 PM
I'm not seeing any problem with the background. What is the problem you're referring to?
lol, how you can't see the problem :D? there is no background, text is a bit hard to read. How to put background there.
spillage
02-13-2012, 03:10 AM
Is there a central place (listing) for submissions awaiting approval?
Or do we have to go through every category looking for them?
Thanks,
twolegit
02-14-2012, 12:25 AM
Is there a central place (listing) for submissions awaiting approval?
Or do we have to go through every category looking for them?
Thanks,
go to your download section and select manage files (right below your navbar)
spillage
02-14-2012, 01:20 AM
Thanks, twolegit...
sadiq6210
02-14-2012, 05:39 PM
All users can pin (stick) their files
How can I avoid that? There is no option in the groups permissions !
Do you know if it updates the user message counter? As I can see, when a user uploads a file, his message counter remains the same.
twolegit
02-15-2012, 12:33 AM
Do you know if it updates the user message counter? As I can see, when a user uploads a file, his message counter remains the same.
do you mean post counter?
if so this add on will help you https://vborg.vbsupport.ru/showthread.php?t=247952 it creates a thread in a specific (named by you) place telling members that there is a new upload and adds a post to the user who uploaded! works great
twolegit
02-15-2012, 12:36 AM
All users can pin (stick) their files
How can I avoid that? There is no option in the groups permissions !
i think the only thing that will help you is making the members uploads got to moderation where you can chose to pin or not to pin! because I haven't been able to find anything else again I'm very new (about a month) to this!
twolegit
02-15-2012, 12:41 AM
Thanks, twolegit...
anytime and thanks for the thanks!
abo rashid
02-18-2012, 06:17 PM
not working with me i got this , i add some extention to test
The following errors occurred when this file was submitted:
You may only upload or link to the following extensions: .zip
spillage
02-18-2012, 06:53 PM
This would seem that you only have .zip files allowed, and you tried to upload something other than a .zip file.
rickwade
02-20-2012, 09:42 PM
I am using this mod so my visitors can download vector based images in .eps format but is there a way so that they can see a .jpg image of the file before downloading?
For instance I have 3 different crosses in one section so they have to download all 3 just to see what they like - If I could attach a JPG image to the description it would save a lot of frustration. Any way to do this?
majidmozaffari
02-21-2012, 08:14 AM
hi freinds
view countor will be added to file page ?
plase help me for this
sorry for my bad tipe en
twolegit
02-21-2012, 12:51 PM
not working with me i got this , i add some extention to test
The following errors occurred when this file was submitted:
You may only upload or link to the following extensions: .zip
thats because you only added the .zip extension! you'll need to add other extensions
remember to set the size of the file allowed aswell
I guess this mod is not supported anymore! download at your own risk....there hasn't been a dev/coder replying to any of these questions....i'm just a user.
abo rashid....if you need help, i wouldn't mind giving you a few free moments! pm me (and i dont know everything)
twolegit
02-21-2012, 01:01 PM
I am using this mod so my visitors can download vector based images in .eps format but is there a way so that they can see a .jpg image of the file before downloading?
For instance I have 3 different crosses in one section so they have to download all 3 just to see what they like - If I could attach a JPG image to the description it would save a lot of frustration. Any way to do this?
yes, its very easy. first you must have the .jpg added as an extension and enable images in the cp/downloadsII/settings/enable images
then after you are done uploading your .eps files scroll down and you should see IMAGES with a browse box
again i dont think this is a supported mod
twolegit
02-21-2012, 01:05 PM
hi freinds
view countor will be added to file page ?
plase help me for this
sorry for my bad tipe en
i don't think so as there is only a download counter.....its a good idea though!
majidmozaffari
02-22-2012, 03:56 AM
yes plase help me for work this ( file.view )
majidmozaffari
02-23-2012, 06:44 PM
up post
squidsk
02-23-2012, 07:58 PM
Don't spam, if you want someone to make a plugin or modify a plugin for you, then post in the Requests For Paid Services (https://vborg.vbsupport.ru/forumdisplay.php?f=30) forum but this isn't the place for it, either that or figure it out on your own it isn't that complicated.
elwizard
02-24-2012, 12:20 AM
Yeah. It works perfect! My board version is 4.1.10. Marked as installed. Translating into Spanish lang. Thank you so much. Best regards ;)
boske
02-24-2012, 03:21 AM
everyone time i try to add an image to the download i get an error:
Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 10116 bytes) in /*****/****/downloads.php on line 966
I even tried setting my memory limit to 100mb instead of 16 and still get the same error
twolegit
02-24-2012, 04:00 AM
I've uninstalled this mod and got a paid version of VBdownloads
already proving to be a great choice!
wish you all good luck
elwizard
02-24-2012, 02:27 PM
I've uninstalled this mod and got a paid version of VBdownloads
already proving to be a great choice!
wish you all good luck
Is there a paid version of this mod? Where please?
@RS_Jelle: is there an option to hide some categories from downloads to general public (perms) and allow it to some usergroups? Thanks in advance.
squidsk
02-24-2012, 03:26 PM
Is there a paid version of this mod? Where please?
There's no paid version, he's referring to another downloads plugin that has a paid version to get many of the feature that come free with this one.
Bisha
02-24-2012, 09:37 PM
Hello!
How to make just a category disable or private???
is this possible?
imnotanoob
02-25-2012, 09:17 AM
http://mytoobs.net/i/864af5.png
How do I get rid of this Pinned option for Regular users? I only want my staff to be able to Pin topics.
elwizard
02-25-2012, 10:36 AM
There's no paid version, he's referring to another downloads plugin that has a paid version to get many of the feature that come free with this one.
Ah ok ok. Thank you. ;)
Scalemotorcars
02-28-2012, 12:55 AM
Guys, Im getting a phrase error. I uninstalled because I simply dont use it and it left some language phrases in the database. I tried to remove it with phpmyadmin but ended up screwing up the entire language phrase table. (thank god for the tool.php). Anyway here's the error, can one of you explain how to remove it correctly.
Thanks...
Database error in vBulletin 4.1.10:
Invalid SQL:
SELECT languageid,
phrasegroup_global AS phrasegroup_global,
phrasegroup_downloads2 AS phrasegroup_downloads2,
phrasegroup_posting AS phrasegroup_posting,
phrasegroupinfo AS lang_phrasegroupinfo,
options AS lang_options,
languagecode AS lang_code,
charset AS lang_charset,
locale AS lang_locale,
imagesoverride AS lang_imagesoverride,
dateoverride AS lang_dateoverride,
timeoverride AS lang_timeoverride,
registereddateoverride AS lang_registereddateoverride,
calformat1override AS lang_calformat1override,
calformat2override AS lang_calformat2override,
logdateoverride AS lang_logdateoverride,
decimalsep AS lang_decimalsep,
thousandsep AS lang_thousandsep
FROM vb_language
WHERE languageid = 2;
MySQL Error : Unknown column 'phrasegroup_downloads2' in 'field list'
gargamello
02-28-2012, 10:02 AM
Hi and sincere apologies if this has been answered previously. I searched, but couldn't find it...
Is anyone able to tell me where/how I can increase the length of the filename field (ie number of characters in the filename field)?
Within the downloads2_file_addit template, I have changed the 'maxlength to 100 as below:
<div class="blockrow">
<label for="title">{vb:rawphrase dl2_file_name}:</label>
<div><input type="text" class="primary textbox" name="title" id="title" value="{vb:raw newfile.title}" maxlength="100" tabindex="1" /></div>
But this doesn't seem to have made any difference...help please?
Really appreciated!
Ian
Please help.
Title still have 50 length in filelist in category, where I can change it ?
-------------
Edit: 28.02.2012 18:37
-------------
Problem solved. I change it in database.
hasidoo
02-29-2012, 11:39 AM
While I was trying to edit a file the power went off and after I turned on my PC the file is giving an error "invalid file ID". How to retrieve the old file? Please help me someone..
anandbagmane
03-01-2012, 01:33 AM
do you have any commercial version of it with password protection & easy management. since some one else taking advantage of your ideas
Disco_Dave
03-01-2012, 09:02 AM
Hi
Can this be used as an image uploader, with images viewable on theards with [IMG] tags.
Dave
David_R
03-01-2012, 09:22 AM
I have installed this modification on my website http://www.indiagarage.com/downloads.php, Can you please tell me How I can fix the URL of this, I mean I require the category name in the URL Can you please help me out with the same.
Regards,
David
squidsk
03-01-2012, 05:13 PM
Guys, Im getting a phrase error. I uninstalled because I simply dont use it and it left some language phrases in the database. I tried to remove it with phpmyadmin but ended up screwing up the entire language phrase table. (thank god for the tool.php). Anyway here's the error, can one of you explain how to remove it correctly.
Thanks...
Database error in vBulletin 4.1.10:
Invalid SQL:
SELECT languageid,
phrasegroup_global AS phrasegroup_global,
phrasegroup_downloads2 AS phrasegroup_downloads2,
phrasegroup_posting AS phrasegroup_posting,
phrasegroupinfo AS lang_phrasegroupinfo,
options AS lang_options,
languagecode AS lang_code,
charset AS lang_charset,
locale AS lang_locale,
imagesoverride AS lang_imagesoverride,
dateoverride AS lang_dateoverride,
timeoverride AS lang_timeoverride,
registereddateoverride AS lang_registereddateoverride,
calformat1override AS lang_calformat1override,
calformat2override AS lang_calformat2override,
logdateoverride AS lang_logdateoverride,
decimalsep AS lang_decimalsep,
thousandsep AS lang_thousandsep
FROM vb_language
WHERE languageid = 2;
MySQL Error : Unknown column 'phrasegroup_downloads2' in 'field list'
Sounds like an installation error in that the phrase group wasn't installed correctly. Try re-installing.
do you have any commercial version of it with password protection & easy management. since some one else taking advantage of your ideas
Downloads can be limited by usergroup, so have a group that you control access to with permissions to download. Also don't store the downloads in your web directory so that people can't link directly to the download if they guess the name.
Hi
Can this be used as an image uploader, with images viewable on theards with [IMG] tags.
Dave
No, why would you want to waste your bandwidth for that when there are plenty of free image hosting sites on the web.
I have installed this modification on my website http://www.indiagarage.com/downloads.php, Can you please tell me How I can fix the URL of this, I mean I require the category name in the URL Can you please help me out with the same.
Regards,
David
The category id is already in the url, why do you need the name as well? This would require a fairly hefty code rewrite to achieve and would remove the ability to have categories with the same name. For example if you have two categories each with a subcategory of the same name you would no longer be able to do it.
maximoII
03-01-2012, 11:59 PM
Thanks for this great plugin
i found a bug on my site if i upload a file with a name like the following
i uploaded this: enigma2-plugin-extensions-et-webbrowser_1.4-r0_et9x00.ipk
when i try to download i get this: enigma2-plugin-extensions-et-webbrowser_1.-r0_et9x00.ipk
hope you can help
boske
03-02-2012, 02:26 AM
I have installed this modification on my website http://www.indiagarage.com/downloads.php, Can you please tell me How I can fix the URL of this, I mean I require the category name in the URL Can you please help me out with the same.
Regards,
David
I think he is talking about SEO URL's -- id be interested in this to. I was going to work on my own modification, ill let you know if I get this completed.
Skyrider
03-03-2012, 03:51 PM
Is there anyway when a category image is being used (like in subs) that the category name (in text) will be hidden? It looks weird that both the clickable image and text is being shown.
hasidoo
03-05-2012, 07:08 AM
I need to redirect the users to another page once they click the download button. Anyone have any idea how to do this?
Skyrider
03-05-2012, 08:58 AM
I need to redirect the users to another page once they click the download button. Anyone have any idea how to do this?
Use the Link to URL option?
goc-forum.de
03-05-2012, 09:17 PM
Is there any chance to get the "ratings" of each uploaded file getting shown at the downloads main site! I meant that anybody can see ratings for each file (i. e. near date/Comments/downloads)?
Here is an example (click on thumb for full view!)
http://www.images2k.com/images/wkvke2qfedjceusg988d_thumb.jpg (http://www.images2k.com/viewer.php?file=wkvke2qfedjceusg988d.jpg)
cHeGa
03-06-2012, 10:09 AM
Hi guys, is it possible to remove the download log ( how many times some file has been downloaded ) ? Or reset...
jerde
03-06-2012, 08:52 PM
Anyone figure out yet how to fix the security token issue?
Hippy
03-06-2012, 09:28 PM
Anyone figure out yet how to fix the security token issue?
no but if you turn off the agreement notice this will go away
jerde
03-06-2012, 10:15 PM
no but if you turn off the agreement notice this will go away
Thanks for the reply, Hippy. :up:
How do I turn off the agreement notice? I'm sort of a noob.
Hippy
03-07-2012, 12:13 AM
admincp> DownloadsII > settings > look for Enable/Disable Download Agree
hasidoo
03-10-2012, 04:26 PM
Use the Link to URL option?
thank you. It is the solution. :)
hasidoo
03-10-2012, 04:28 PM
admincp> DownloadsII > settings > look for Enable/Disable Download Agree
I'm sorry I don't see this option in my downloads II settings.I'm using version 6.0.6 of this mod. Can you help me with this?
Hippy
03-10-2012, 10:10 PM
install the latest before you do any trouble shooting
hasidoo
03-11-2012, 02:48 PM
Download fails due to missing security token when Downloads are restricted to members. If a guest tries to download he gets the Login form. After succesfull login he is redirected back to Download, but this fails due to missing security token.
My workaround is to redirect the logged in member to the download page for this file where he can start a new download of the file:
find in downloads.php around line 485:
eval(standard_error(fetch_error('security_token_in valid', $vbulletin->options['contactuslink'])));
replace with:
if ($permissions['downloads2permissions'] & $vbulletin->bf_ugp['downloads2permissions']['candownloadfiles'])
{
exec_header_redirect("downloads.php?" . $vbulletin->session->vars['sessionurl'] . "do=file&id=" . $file[id]);
}
else
{
eval(standard_error(fetch_error('security_token_in valid', $vbulletin->options['contactuslink'])));
}
@Jelle: Pleas add this to your repository, thanks :)
It looks like this solved my problem. thank you so much:):up::up:
ngphuc2k
03-11-2012, 05:27 PM
i upgrade vbb 3.x to 4.x.
i don't upgrade download II.
Help me
likaweb
03-11-2012, 11:43 PM
Hello.
and can make sure that once paid can open the download area
Thanks Lika
Hippy
03-12-2012, 03:05 AM
i upgrade vbb 3.x to 4.x.
i don't upgrade download II.
Help me
don't un install just upload all new files and import the xml file.. If your under 6 I think you need to run upgradetov6.php
here are the install notes..
/*================================================= =====================*\
|| ################################################## ################## ||
|| # DownloadsII 6.0.9 : A downloads mod for vBulletin # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright ?2011 by (RS_)Jelle (http://www.minatica.be/) # ||
|| # All Rights Reserved. # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------------------------------------------------------- # ||
|| # https://vborg.vbsupport.ru/showthread.php?t=231427 # ||
|| ################################################## ################## ||
\*================================================ ======================*/
/*================================================= =====================*\
|| Table of contents ||
|| 1. License ||
|| 2. Requirements ||
|| 3. First time installation / Normal Upgrade ||
|| 4. Upgrade from DownloadsII 5 ||
\*================================================ ======================*/
/*================================================= =====================*\
|| 1. License ||
\*================================================ ======================*/
DownloadsII 6 is released under normal copyright. You may not redistribute the package in whole
or significant part. All copyright notices must remain unchanged and visible.
/*================================================= =====================*\
|| 2. Requirements ||
\*================================================ ======================*/
DownloadsII 6.0.7 (and up) requires at least vBulletin 4.0.4. If you still run vB3, get DownloadsII v5.
/*================================================= =====================*\
|| 3. First time installation / Normal Upgrade ||
\*================================================ ======================*/
1. Upload all files from the upload folder to your forums directory.
2. Import the product-downloads2.xml file at AdminCP -> Plugins & Products -> Manage Products ->
Add/Import Product
3. Change the permissions of the downloads directory (inside your forums directory) to make
it writable (chmod 777).
4. That's it! Now you only need to set your DownloadsII settings, usergroup permissions, categories, ...
And don't forget to add the necessary extensions for file uploads.
/*================================================= =====================*\
|| 4. Upgrade from DownloadsII 5 ||
\*================================================ ======================*/
!!! You need to upgrade your forum to vBulletin 4 before upgrading DownloadsII.
Note: if you used the "Create New Thread" add-on with v5, don't uninstall it! You will loose the
thread data and the uninstall won't fully work. It will throw database errors.
You need to run DownloadsII 5.0.4 or higher to do this upgrade. Of course we recommend running
version 5.1.1 when doing the upgrade. As already said, you also need to run vB 4 already.
No data (categories, files, ...) will be lost except your ratings as there's a new voting system.
1. Turn your vBulletin forum off to the public to avoid any database errors.
2. Upload upgradetov6.php to the /forums/admincp/ folder on your FTP.
3. Open it with your browser (you need AdminCP access) by surfing to
http://www.yoursite.com/forums/admincp/upgradetov6.php
Follow the online steps. When it's done, go to the next step of these instructions.
4. Remove the upgradetov6.php file from your FTP and do the same with these old 5.x.x files:
- /forums/admincp/downloadadmin.php
- /forums/includes/class_downloads.php
- /forums/includes/xml/bitfield_ecdownloads.xml
- /forums/includes/xml/cpnav_ecdownloads.xml
- /forums/includes/xml/hooks_downloadsII.xml
5. Upload the new files from the upload folder of this package to your forums FTP. Some files will
need to be overwritten.
6. Import the product-downloads2.xml file at AdminCP -> Plugins & Products -> Manage Products ->
Add/Import Product
7. Now redo your usergroup permissions and DownloadsII settings as those things weren't copied over.
And don't forget to add the necessary extensions.
8. Visit your downloads section -> Manage Files -> Update Counters to rebuild the DownloadsII cache.
(http://www.yoursite.com/forums/downloads.php?do=manfiles&act=updatecounters)
9. It's ready :-)
Hippy
03-12-2012, 03:08 AM
Hello.
and can make sure that once paid can open the download area
Thanks Lika
install the vsa log to user account mod to test the user groups..
https://vborg.vbsupport.ru/showthread.php?t=233350
Skyrider
03-12-2012, 06:56 AM
Is there anyway when a category image is being used (like in subs) that the category name (in text) will be hidden? It looks weird that both the clickable image and text is being shown.
Re-asking! :)
Also, how do I alter the thumb sizes being generated/created?
rakeshb
03-12-2012, 08:49 PM
Gr8 MOD ..... Keep up the good work Jelle ......
Bisha
03-13-2012, 06:38 PM
How I can disable ONE category?? or deny access to users??
squidsk
03-13-2012, 08:03 PM
How I can disable ONE category?? or deny access to users??
Easily you edit the usergroup settings for the group(s) you don't want to have access to that category.
Bisha
03-13-2012, 08:30 PM
Easily you edit the usergroup settings for the group(s) you don't want to have access to that category.
uhhh
thankkssss, founded!
:)
squidsk
03-14-2012, 03:02 PM
The filenames and the internal names are related, the internal name will likely just be a number prepended to the name you get when downloading. That being said to see who uploaded them just look at the entry for the file, either on your forum or through an sql query, this will give you the username and/or the member id number of the uploader.
Skyrider
03-14-2012, 03:45 PM
Is there anyway when a category image is being used (like in subs) that the category name (in text) will be hidden? It looks weird that both the clickable image and text is being shown.
Also, how do I alter the thumb sizes being generated/created?
:-\ I really would appreciate an answer.
squidsk
03-14-2012, 04:33 PM
Likely just an edit of the appropriate template.
Skyrider
03-15-2012, 06:50 PM
Likely just an edit of the appropriate template.
Most likely, though I am unsure at the moment what to edit.
Hippy
03-15-2012, 08:30 PM
you need to open up downloads2_cat_subbit template
and make a <vb:if condition
between here
<td class="dl2info" valign="middle" align="{vb:stylevar left}" nowrap="nowrap">
<a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw sub.id}">{vb:raw sub.name}</a>
<vb:if condition="$sub['catimage'] != ''"><br /><br /><a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw sub.id}"><img src="{vb:raw sub.catimage}" border="0" alt="{vb:raw sub.name}" title="{vb:raw sub.name}" /></a></vb:if>
</td>
if
<img src="{vb:raw sub.catimage}" border="0" alt="{vb:raw sub.name}" title="{vb:raw sub.name}" /></a>
else hide
this will not show
<a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw sub.id}">{vb:raw sub.name}</a>
vb.com have good tutorials to explain this
If I had time I would give it a go for you
unfortunately I don't ATM
oh
if you have images in the normal cat
edit the same way in downloads2_main_catbit template
rarauz
03-16-2012, 07:50 AM
Hello,
Thanks for this mod.
After installation (6.0.9) appears 2 new lines in postbit_legacy (uploads & downloads).
I've been looking at the template postbit_legacy not see anything. I have found that the template downloads2_postbit have this:
<dt>{vb:rawphrase dl2_downloads}</dt><dd>{vb:raw post.dl2_downloads}</dd>
<dt>{vb:rawphrase dl2_uploads}</dt><dd>{vb:raw post.dl2_uploads}</dd>
I want to remove the new 2 postbit lines.
Could be the solution to delete the contents of downloads2_postbit template ?
Last, but not least. I'm trying to insert categories images, but the images appear below of the title categorie. This is:
https://vborg.vbsupport.ru/external/2012/03/21.jpg (http://imgur.com/xBS08)
I want it like this:
https://vborg.vbsupport.ru/external/2012/03/22.jpg (http://imgur.com/QbJNA)
Can you help me?
squidsk
03-16-2012, 02:45 PM
Filenames and download name (which is the only one you can search) are totally unrelated. You can upload summer.mp3 and call it "Winter".
You clearly have no idea how the plugin works, if the plugin couldn't match the filename used to store it on server then it could never actually allow someone to download the file. So look through the database for the filename on the server to match it to the downloads entry which will give you the username of the person who uploaded it.
Bisha
03-19-2012, 12:59 AM
Hello,
Thanks for this mod.
After installation (6.0.9) appears 2 new lines in postbit_legacy (uploads & downloads).
I've been looking at the template postbit_legacy not see anything. I have found that the template downloads2_postbit have this:
<dt>{vb:rawphrase dl2_downloads}</dt><dd>{vb:raw post.dl2_downloads}</dd>
<dt>{vb:rawphrase dl2_uploads}</dt><dd>{vb:raw post.dl2_uploads}</dd>
I want to remove the new 2 postbit lines.
Could be the solution to delete the contents of downloads2_postbit template ?
Last, but not least. I'm trying to insert categories images, but the images appear below of the title categorie. This is:
https://vborg.vbsupport.ru/external/2012/03/21.jpg (http://imgur.com/xBS08)
I want it like this:
https://vborg.vbsupport.ru/external/2012/03/22.jpg (http://imgur.com/QbJNA)
Can you help me?
I will forward you my template to do this.
Hippy
03-19-2012, 01:44 AM
I will forward you my template to do this.
could ya post it or send it to me as well :) thanks
jerde
03-19-2012, 04:25 AM
I like having it over the image because I use wider images.
Skyrider
03-19-2012, 07:45 AM
you need to open up downloads2_cat_subbit template
and make a <vb:if condition
between here
<td class="dl2info" valign="middle" align="{vb:stylevar left}" nowrap="nowrap">
<a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw sub.id}">{vb:raw sub.name}</a>
<vb:if condition="$sub['catimage'] != ''"><br /><br /><a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw sub.id}"><img src="{vb:raw sub.catimage}" border="0" alt="{vb:raw sub.name}" title="{vb:raw sub.name}" /></a></vb:if>
</td>
if
<img src="{vb:raw sub.catimage}" border="0" alt="{vb:raw sub.name}" title="{vb:raw sub.name}" /></a>
else hide
this will not show
<a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw sub.id}">{vb:raw sub.name}</a>
vb.com have good tutorials to explain this
If I had time I would give it a go for you
unfortunately I don't ATM
oh
if you have images in the normal cat
edit the same way in downloads2_main_catbit template
Meh, the bad thing is that I suck at template changes.
Skyrider
03-19-2012, 09:59 AM
I think I found a bug.. On the main download page, it is saying there's 4,294,967,295 files in the category while there are 5....
rarauz
03-19-2012, 09:16 PM
I will forward you my template to do this.
Thanks !!!
Bisha
03-19-2012, 11:36 PM
could ya post it or send it to me as well :) thanks
I will forward you my template to do this.
I cant pm all of you :P
replace downloads2_main_catbit with this one
<tr valign="top">
<td class="dl2info" valign="top" align="{vb:stylevar left}" nowrap="nowrap">
<vb:if condition="$cat['catimage'] != ''">
<a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw cat.id}"><img src="{vb:raw cat.catimage}" alt="{vb:raw cat.name}" title="{vb:raw cat.name}" border="0" /></a></vb:if>
</td>
<td class="dl2info" valign="top" align="{vb:stylevar left}" nowrap="nowrap">
<a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw cat.id}">{vb:raw cat.name}</a>
</td>
<td class="dl2info" valign="top" align="{vb:stylevar left}">
<span class="smallfont">{vb:raw cat.description}</span>
<vb:if condition="$subcats">
<div class="subcats">
<h4>{vb:rawphrase dl2_sub_cats}:</h4>
<ol class="commalist">
{vb:raw subcats}
</ol>
</div>
</vb:if>
</td>
<td class="dl2info" valign="top" align="center" height="40"><span class="smallfont">{vb:raw cat.files}</span></td>
</tr>
and say thanks :P
Hippy
03-19-2012, 11:40 PM
thanks :D
sadiq6210
03-20-2012, 05:24 AM
I don't need it but I want to say
Thanks :D
Skyrider
03-20-2012, 07:49 AM
Another issue, the rate menu is messed up when you rate a file from bad to good. The rate stars are within the text. How do I fix this?
Also:
I think I found a bug.. On the main download page, it is saying there's 4,294,967,295 files in the category while there are 5....
Still would like to solve this one.
rarauz
03-20-2012, 07:36 PM
and say thanks :P
THANKS !!!!
Skyrider
03-21-2012, 08:12 AM
Meh, I find it a bit weird that DownloadsII is soooo limited.....
1), Can't use HTML. Why can't this be group enabled?
2), Can't add any video links in the description.. Why can't I add youtube video's?
3), How do I add it so lightbox/slidebox can be used on images?
stl7997
03-21-2012, 08:57 AM
I think I found a bug.. On the main download page, it is saying there's 4,294,967,295 files in the category while there are 5....
https://vborg.vbsupport.ru/showpost.php?p=2132730&postcount=1102
Skyrider
03-21-2012, 12:56 PM
Gracias, I appreciate it.
squidsk
03-21-2012, 02:59 PM
Meh, I find it a bit weird that DownloadsII is soooo limited.....
1), Can't use HTML. Why can't this be group enabled?
2), Can't add any video links in the description.. Why can't I add youtube video's?
3), How do I add it so lightbox/slidebox can be used on images?
1. Why would you want to? Allowing HTML opens up more holes than you'd find in a block of swiss cheese. There's a reason why allowing HTML is turned off by default. That being said to enable it you need to find how stock vbulletin uses the allow html forum setting and duplicate that in the plugin.
2. I'm not sure what you're talking about, as long as you've got BBCodes for videos such as youtube you should be able to have video's in the description as I just checked on my test install and it works just fine.
3. The lightbox I believe only works with images that are used as attachments to a post, so you'd need to duplicate that to allow the lightbox to work in the downloads plugin.
Skyrider
03-23-2012, 09:08 AM
1. Why would you want to? Allowing HTML opens up more holes than you'd find in a block of swiss cheese. There's a reason why allowing HTML is turned off by default. That being said to enable it you need to find how stock vbulletin uses the allow html forum setting and duplicate that in the plugin.
There are quite a few plugins out there that gives certain groups the ability to post HTML. I'd like to see the same thing in the downloads as well. There's a reason why I only want HTML post access just for myself, and not others.
2. I'm not sure what you're talking about, as long as you've got BBCodes for videos such as youtube you should be able to have video's in the description as I just checked on my test install and it works just fine.
Guess I'll have to try it again. Last time I used the BBCode, I jsut saw a white screen not showing any video's in it. Thanks for letting me know that you got it to work, so I'll have to look further in to that.
3. The lightbox I believe only works with images that are used as attachments to a post, so you'd need to duplicate that to allow the lightbox to work in the downloads plugin.
Just a shame that there's a lack of attachment lightbox plugins. Guess I'll also have to look further in to that.
Thanks for your reply, appreciate it.
For some reason, the Download button has a different text color than my Create new thread button.
It seems that the text color for links is being priorized over the Content Button Text Color. See attached images.
Any advice?
Hippy
03-25-2012, 11:44 AM
For some reason, the Download button has a different text color than my Create new thread button.
It seems that the text color for links is being priorized over the Content Button Text Color. See attached images.
Any advice?
stylevar
control_content_color change the color there
see if both colors are the same
from the link color
hasidoo
03-29-2012, 08:13 AM
How to add share buttons to the downloads section? Actually where to add it?
squidsk
03-29-2012, 02:39 PM
What do you mean by a share button?
hasidoo
03-29-2012, 02:58 PM
What do you mean by a share button?
that means facebook,google and twitter share codes. I have some codes but don't know where to put them(which template).
squidsk
03-29-2012, 03:10 PM
That would depend on where you wanted them to appear on the page.
hasidoo
03-29-2012, 03:38 PM
That would depend on where you wanted them to appear on the page.
I need to add it to all the files in my downloads section. So that members can share that page in Facebook. Any idea how to do it?
squidsk
03-29-2012, 03:55 PM
Yes, but where on that page would you like the buttons to be.
You'll be editing the downloads2_file template if editing the template directly, or use one of the template hooks (my recommended method) as the entry point. Again where in the template you edit is determined by where you want the stuff to appear on the page for the file.
hasidoo
03-29-2012, 04:00 PM
Yes, but where on that page would you like the buttons to be.
You'll be editing the downloads2_file template if editing the template directly, or use one of the template hooks (my recommended method) as the entry point. Again where in the template you edit is determined by where you want the stuff to appear on the page for the file.
I need it to be appear at the right side after the title of that file. When sharing using facebook share button, I need the name of that specific file to be appeared as the description. How to use a template hook to do this?
The Wedge
04-01-2012, 12:12 PM
Anyone know why some of my files upload fine but when I go to download it only downloads a small 4kb file? It worked fine forme with a 150mb file but not the case for my users.
likaweb
04-01-2012, 12:52 PM
Hello.
you can know the latest comments. because they became too much and I can not handle more..
MacGuyInNC
04-01-2012, 08:21 PM
Hi guys, is it possible to remove the download log ( how many times some file has been downloaded ) ? Or reset...
If you have access to your MySQL tables, run this MySQL command:
UPDATE dl2_main SET `downloads` = 0
Worked for me.
Answer was given earlier in this thread: https://vborg.vbsupport.ru/showpost.php?p=2195926&postcount=1377 :)
infamousjoe
04-02-2012, 02:51 AM
Hey guys, this is probably fairly easy to fix...
http://img194.imageshack.us/img194/3989/capturemz.png
As you can see, the downloads are located at the first highlight for some reason instead of next to the actual "Downloads: " text, any idea on how I can have this fixed? I already tried doing it myself in the downloads_postbit template but had no luck. Thanks!
Hippy
04-02-2012, 09:48 AM
the easiest way it to add a <br /> at the end of the post thanks template or at the began of the downloads template..
when I get home I'll check my templates to see what I did and where .
but I think this is all I did
Hippy
04-02-2012, 09:55 AM
no morning coffee .lol
I was able to check here at work...
my downloads2_postbit template I added the <br />
as so
<br /><dt>{vb:rawphrase dl2_downloads}</dt><dd>{vb:raw post.dl2_downloads}</dd>
<dt>{vb:rawphrase dl2_uploads}</dt><dd>{vb:raw post.dl2_uploads}</dd>
sadiq6210
04-02-2012, 10:00 AM
Hello.
you can know the latest comments. because they became too much and I can not handle more..
+1 :up:
likaweb
04-02-2012, 02:21 PM
+1 :up:
????????????????
infamousjoe
04-02-2012, 02:56 PM
no morning coffee .lol
I was able to check here at work...
my downloads2_postbit template I added the <br />
as so
<br /><dt>{vb:rawphrase dl2_downloads}</dt><dd>{vb:raw post.dl2_downloads}</dd>
<dt>{vb:rawphrase dl2_uploads}</dt><dd>{vb:raw post.dl2_uploads}</dd>
Nice solution! I found an even better way though, to have all lines aligned with each other.. simply add: <dd></dd> at the front of your code (including the line break tag you added) and it will have everything looking perfect. :) Thanks for the help.
Hippy
04-02-2012, 11:29 PM
welcome
<dt> adds aligns left and : at the end and <dd> addes I think aligns right and bold..
or something to that affecct
hyperspin
04-07-2012, 04:08 AM
I really love this mod and my site relies pretty heavily on this mod. One thing that I think would make this mod even better would be the ability to have images that are added to a file to open in a lightbox when clicked on instead of a new browser window? It would really make it look more professional.
I really love this mod and my site relies pretty heavily on this mod. One thing that I think would make this mod even better would be the ability to have images that are added to a file to open in a lightbox when clicked on instead of a new browser window? It would really make it look more professional.
+1 :up:
migratoria
04-07-2012, 11:16 AM
Good mod!!
Crotan
04-07-2012, 07:36 PM
I really love this mod and my site relies pretty heavily on this mod. One thing that I think would make this mod even better would be the ability to have images that are added to a file to open in a lightbox when clicked on instead of a new browser window? It would really make it look more professional.
Looks like that feature has been implemented on the developers own version, and just hasn't been ported over to this public version.
Check out the behavior on their website provided in the mod description.
+1 to hopefully getting this implemented on the version here.
hyperspin
04-07-2012, 07:47 PM
Also, seeing this error when trying to import files.
Warning: Invalid argument supplied for foreach() in [path]/admincp/downloads2.php on line 785
I'm not a coder, so I have no idea what this means or how to correct it, but line 785 of /admincp/downloads2.php shows the following:
foreach ($_POST['import'] AS $file => $null)
squidsk
04-10-2012, 05:03 PM
Also, seeing this error when trying to import files.
Warning: Invalid argument supplied for foreach() in [path]/admincp/downloads2.php on line 785
I'm not a coder, so I have no idea what this means or how to correct it, but line 785 of /admincp/downloads2.php shows the following:
foreach ($_POST['import'] AS $file => $null)
What that means is that what is in $_POST['import'] is not an array so you cannot apply a foreach to it. In order to eliminate the warning, which actually has no impact on anything, is to check if $_POST['import'] is actually an array, by wrapping the foreach in an if statement that checks if the variable is an array.
E.G.
if(is_array($_POST['import'])) {
foreach ($_POST['import'] AS $file => $null){
//content of the foreach loop is here and unchanged
}
}
Does this happen for all imports or only some of them? If all imports then it might be a bug in the code. If some, then it might be that parameters are not being passed correctly when the import button is clicked.
hyperspin
04-10-2012, 06:27 PM
What that means is that what is in $_POST['import'] is not an array so you cannot apply a foreach to it. In order to eliminate the warning, which actually has no impact on anything, is to check if $_POST['import'] is actually an array, by wrapping the foreach in an if statement that checks if the variable is an array.
E.G.
if(is_array($_POST['import'])) {
foreach ($_POST['import'] AS $file => $null){
//content of the foreach loop is here and unchanged
}
}
Does this happen for all imports or only some of them? If all imports then it might be a bug in the code. If some, then it might be that parameters are not being passed correctly when the import button is clicked.
Thanks for this, but I figured it out... For somereason my screen wasn't showing the select box located at the end of each of the imported files. You must select what files from the import list you want to import. Since I wasn't seeing the check boxes I wasn't selecting one. Once I was able to see the boxes and select one the error went away.
One more suggestion for this would be a Moderator CP module so mods can maintain the sections/categories.
squidsk
04-10-2012, 07:00 PM
Technically that's still a bug as you should get a message that you haven't selected any files to import.
Crotan
04-12-2012, 04:28 AM
Hmmm, I wish it would enable youtube videos inline using the video tags like the ckeditor would do for a normal post, anyone got a fix for this?
squidsk
04-12-2012, 01:57 PM
As long as you have appropriate bbcode on your forums it should work automatically. I've tried in on my 4.1.10 install and XXX displays a youtube video just fine.
Crotan
04-12-2012, 03:03 PM
As long as you have appropriate bbcode on your forums it should work automatically. I've tried in on my 4.1.10 install and XXX displays a youtube video just fine.
Really? The Ckeditor uses VIDEO tags because really there's more than just youtube that it deals with.
Say I have a youtube video posted into a download description with http://youtu.be/sh9Vt-pcgrE?hd=1
it will appear in the actual description as just:
http://youtu.be/sh9Vt-pcgrE?hd=1
However, when the downloads post addon grabs the description and makes a thread it will see the video tags and correctly embed the video as intended.
Which makes me think Downloads II is missing something
angkor408
04-12-2012, 06:14 PM
Hi, for some reason when I login as "Guest" I cannot see the new file when member upload. I was able to see when I login. I checked under User Group Permission for Un-Register User "Can View Files" set to YES.
Is there other permission I have to enable?
Thx
Angkor
http://www.khmerclub.com/downloads.php?do=cat&id=2
angkor408
04-12-2012, 06:38 PM
Hi, I currently have download version 6.05. Is it possible to upgrade to 6.09 without wipe off any setting?
Thx
Angkor
210665
04-14-2012, 08:58 PM
Hello
I come here not to import the
"Directory
Absolute path to the download directory.
The absolute path to this script is / html / vb / admincp /
Include a trailing slash. "
what do I enter here??
New Joe
04-16-2012, 01:05 PM
Why do I get a data base error on my main Forum page after un-installing this xml?
Database error in vBulletin 4.1.3:
Invalid SQL:
SELECT id, name FROM vb4_dl2_categories;
MySQL Error : Table 'xxxx_vb4.vb4_dl2_categories' doesn't exist
Error Number : 1146
Request Date : Monday, April 16th 2012 @ 08:50:40 AM
Error Date : Monday, April 16th 2012 @ 08:50:41 AM
Script : /www.xxxx.com/forum.php
Referrer : www.xxx.com/admincp/index.php?do=head
IP Address : xxxxxxxx
Username : xxxxxx
Classname : vB_Database
MySQL Version : 5.0.95-community-log
I want to take this mod out but I can't.
Anyone else had this problem and how did you un-install this product?
likaweb
04-23-2012, 04:28 PM
Hello.
you can know the latest comments. because they became too much and I can not handle more..
and can do this or not?
Thanks lika
2fast4u88
04-23-2012, 10:29 PM
Ok I have this installed and works pretty good. How ever I have a weird issue I can't figure out. Which is I have downloads and attachments enabled to download via guest. In which if I am on the pc logged in or out downloads work fine. If I am on my phone (Android) downloads are messed up.
As guest the download starts but says complete at around 27kb even though the file is larger. If I log in the same file will download fine. Has anyone experience this issue or know how to fix it?
Edit: Ok I tracked it down to a issue with the time limit between downloads. Setting it to 0 is the only way to get rid of the issue. So has anyone experienced this?
Crotan
04-24-2012, 03:34 AM
Ok I have this installed and works pretty good. How ever I have a weird issue I can't figure out. Which is I have downloads and attachments enabled to download via guest. In which if I am on the pc logged in or out downloads work fine. If I am on my phone (Android) downloads are messed up.
As guest the download starts but says complete at around 27kb even though the file is larger. If I log in the same file will download fine. Has anyone experience this issue or know how to fix it?
Edit: Ok I tracked it down to a issue with the time limit between downloads. Setting it to 0 is the only way to get rid of the issue. So has anyone experienced this?
Are you sure you didn't also place a maximum MB limit on guest users as well?
jpbryan
04-30-2012, 11:52 AM
Question; After installing the mod, I get this; "An error occurred while processing the bitfield files, the following information was returned:
It shows up in "Show Right Column With Tops" and "Enable or disable plugin features for integrating DownloadsII more into your forum."
I also don't have a "Downloads" forum... Do I need to create one, and if so, how do I integrate this mod to the new forum..
Sorry for being a little on the slow side, but I appreciate your work and any help..
Crotan
04-30-2012, 05:42 PM
Question; After installing the mod, I get this; "An error occurred while processing the bitfield files, the following information was returned:
It shows up in "Show Right Column With Tops" and "Enable or disable plugin features for integrating DownloadsII more into your forum."
I also don't have a "Downloads" forum... Do I need to create one, and if so, how do I integrate this mod to the new forum..
Sorry for being a little on the slow side, but I appreciate your work and any help..
You don't need to make a new forum for the Downloads, it is completely up to you. You can use the addon: DownloadsII Create New Thread Add-On [vB4] (https://vborg.vbsupport.ru/showthread.php?t=247952) for it though.
I'm not sure what you're talking about for your other questions.
jpbryan
04-30-2012, 06:13 PM
Thank you for the addon info. For the other questions, let me just say it was my fault.. Too embarrassed to actually tell you the problem..
GREAT MOD, and GREAT HELP... Thanks..
2fast4u88
05-01-2012, 06:49 AM
Are you sure you didn't also place a maximum MB limit on guest users as well?
Yea I am sure the issue is a odd one. As I said if I turn the time limit off it works fine all around. If I turn it on is when the issues come about.
Like the following:
Logged out as guest on pc downloads work
Logged out on smart phone downloads start and stop at around 27kb
Logged in the following happens for user groups with the timer on:
Pc works fine
Smart phone has the same start and stop issue.
With the timer off everything works as it should. How ever I would like to keep the timer on so need a fix to the issue. I though it may have been somewhere in vbulletin but attachments download fine.
hasidoo
05-01-2012, 07:47 AM
I need to add Facebook like button that comes along with VB4 to this mod. So that I can share the files that I upload with Downloads II mod in Facebook.
Simply, I need to share my files in downloads section with Facebook. So the people will see it once someone likes a file that I've added to the download section and will come to my site to download it.
Anyone knows how to do this? Please help me..I've tried a lot, but couldn't find a method.Please help..
Nelson58
05-01-2012, 05:32 PM
We recently transferred web hosting servers. Our new server assures us that the maximum PHP upload is set to 50M. Yet, a 10.9M file will not upload. Is there a setting I forgot to change somewhere?
Thanks.
Nelson
Crotan
05-01-2012, 06:12 PM
I need to add Facebook like button that comes along with VB4 to this mod. So that I can share the files that I upload with Downloads II mod in Facebook.
Simply, I need to share my files in downloads section with Facebook. So the people will see it once someone likes a file that I've added to the download section and will come to my site to download it.
Anyone knows how to do this? Please help me..I've tried a lot, but couldn't find a method.Please help..
Your simplest method to get the desired effect would to use the automatic thread generator addon when something is added to the downloads category, then just like the post. Which will contain a link to the item and its description.
vexxy
05-06-2012, 05:59 AM
quick question, does it work with vb 4.1.12?
Hippy
05-06-2012, 11:36 AM
yes
New Joe
05-06-2012, 11:50 AM
Hippy, go you know much about this mod and the DownloadsII Create New Thread Add-On [vB4]?
I want to take out this Mod and the Create Thread addon, but it just throws data base errors every time i un-install the xml files from the Admin CP all over my Forum.
Hippy
05-06-2012, 12:10 PM
you need to remove all files associated with these 2 mods
Hippy
05-06-2012, 12:23 PM
if for some reason it's not removing the tables
use this mod
https://vborg.vbsupport.ru/showthread.php?t=235476&highlight=database+compare
if you don't figure it out pm me
New Joe
05-06-2012, 12:34 PM
Thanks Hippy, I'll get back to you.
Hippy
05-06-2012, 12:47 PM
Welcome
hasidoo
05-07-2012, 03:40 PM
Your simplest method to get the desired effect would to use the automatic thread generator addon when something is added to the downloads category, then just like the post. Which will contain a link to the item and its description.
I've tried that,but if I prefer a direct method. btw, thanks for your reply. :)
Lotos
05-09-2012, 08:41 AM
I strongly need to have a possibility to change the position of a file on the screen (to move it up or down). When I import a large group of files, they are imported not in such order that I need, and I can’t change its positions as I need.
Can the author make such a change to this mod?
hugh_
05-12-2012, 09:11 PM
For some time now it's been that when my users go to download a file they have to wait for it to complete to carry on browsing or download another file which isn't ideal. Is this something to do with this mod or a limitation in php? This didn't used to be the case as far as I recall...
Hippy
05-12-2012, 10:10 PM
I strongly need to have a possibility to change the position of a file on the screen (to move it up or down). When I import a large group of files, they are imported not in such order that I need, and I can’t change its positions as I need.
Can the author make such a change to this mod?
have vb resize it .. options in the admincp.. the mod lay out is perfect ..also I realy don't under stand what you mean about can’t change its positions
screen shot would be better to understand
For some time now it's been that when my users go to download a file they have to wait for it to complete to carry on browsing or download another file which isn't ideal. Is this something to do with this mod or a limitation in php? This didn't used to be the case as far as I recall...
like I said above the mods works perfect..
this issue is the server ..
if your on a shared server it's most likely normal if it's heavily used
I have worked on many sites and they have this mod installed and I never experienced 1 issue like you mention.. if it was good once and not any more
you need to send your host a suppot ticket
hugh_
05-13-2012, 05:17 AM
have vb resize it .. options in the admincp.. the mod lay out is perfect ..also I realy don't under stand what you mean about can’t change its positions
screen shot would be better to understand
like I said above the mods works perfect..
this issue is the server ..
if your on a shared server it's most likely normal if it's heavily used
I have worked on many sites and they have this mod installed and I never experienced 1 issue like you mention.. if it was good once and not any more
you need to send your host a suppot ticket
I'm my own host. And load isn't an issue. Also MaxClients, iptables and apache modules are not the problem. I suspect this has something to do with php but I'm not sure what...
Any suggestions?
Which version of php are these sites you know running?
Has no one else here seen this?
Hippy
05-13-2012, 10:39 AM
PHP Version 5.3.6
and 5.3.10
Lotos
05-14-2012, 04:38 AM
have vb resize it .. options in the admincp.. the mod lay out is perfect ..also I realy don't under stand what you mean about can?t change its positions
screen shot would be better to understand
Screenshots will show nothing, I'll try to explain.
For example I have a lot of files and I need to import them to this download mod.
1) I go to admincp->downloadsII->import and print the path to the directory with files I need to import. .
2) For examle I have file1.rar, file2.rar, file3.rar, file4.rar
When the files are imported, they are shown for example as:
file1.rar
file2.rar
file3.rar
file4.rar
But I need them to be placed for example like this:
file4.rar
file2.rar
file3.rar
file1.rar
And I have no such a function in admincp to change the files positions as I need.
Is it clear now?
Lotos
05-14-2012, 04:48 AM
Next needed possibility is:
there is only one download dirrectory in which all the files are stored. It will be more usefull to have a possibility to create new dirrectories or show other dirrectories to store the imported files.
When you have o lot of files It's better to store them in different categories-dirrectories (files itself, not the discription).
hugh_
05-14-2012, 10:27 PM
Is this mod still supported?
Hippy
05-14-2012, 10:34 PM
Lotos , dunno I am not sure if its displaying by date or size or alpabeditcly
your second question.. would have to be answered by RS_Jelle
hugh .. yes it is ..
Lotos
05-15-2012, 08:06 AM
Lotos , dunno I am not sure if its displaying by date or size or alpabeditcly
It can be corted by name, date, autor and some other orders, but I need more than that. What I need is a possibility to set the order myself, to change the position of each file.
your second question.. would have to be answered by RS_Jelle
Oh... will it happen? :rolleyes:
angkor408
05-15-2012, 02:18 PM
Hi, for some reason when I login as "Guest" I cannot see the new file when member upload. I was able to see when I login. I checked under User Group Permission for Un-Register User "Can View Files" set to YES.
Is there other permission I have to enable?
Thx
Angkor
hugh_
05-15-2012, 09:53 PM
PHP Version 5.3.6
and 5.3.10
From my testing:
1. IE, Firefox and Android stock browsers in their latest versions are all affected and can download simultaneously from other websites.
2. I can download multiple files from the problem host simultaneously if I use direct links.
3. I've checked application and usergroup settings, also tried different users on the same host. Same problem.
Hippy
05-15-2012, 10:46 PM
It can be corted by name, date, autor and some other orders, but I need more than that. What I need is a possibility to set the order myself, to change the position of each file.
Oh... will it happen? :rolleyes:
It would have to be recoded to give you the option to do so.
Hi, for some reason when I login as "Guest" I cannot see the new file when member upload. I was able to see when I login. I checked under User Group Permission for Un-Register User "Can View Files" set to YES.
Is there other permission I have to enable?
Thx
Angkor
Might be a cache thing ? if you log in as a guest in a hour or evn the next day do you see the files ?
in user group not logged in
do you have
Can Access The Downloads Section
Can View Files
Can Download Files
Can Search Files
set to yes ?
From my testing:
1. IE, Firefox and Android stock browsers in their latest versions are all affected and can download simultaneously from other websites.
2. I can download multiple files from the problem host simultaneously if I use direct links.
3. I've checked application and usergroup settings, also tried different users on the same host. Same problem.
try turning off Enable/Disable Release Generator and Enable/Disable Download Agree
the in Admincp Maintenance clear cache and auto saved tables
I would like to test it if you like ?
PM me a link and temp account ..
Hippy
05-15-2012, 11:07 PM
Just noticed there is DownloadsII Extra Permissions in group permissions
this may help both of you guys
I installed this on a bunch of peoples sites when it first came out so I forgot all the settings..
here is a screenshot
I may install it again and see what has to be set up..
been busy tho.. so let me know if anything posted helps
hugh_
05-16-2012, 01:34 AM
Just noticed there is DownloadsII Extra Permissions in group permissions
this may help both of you guys
I installed this on a bunch of peoples sites when it first came out so I forgot all the settings..
here is a screenshot
I may install it again and see what has to be set up..
been busy tho.. so let me know if anything posted helps
Those were amongst the options I've checked already.
hugh_
05-16-2012, 01:37 AM
try turning off Enable/Disable Release Generator and Enable/Disable Download Agree
Im not familiar with these options. Where do i find them?
Hippy
05-16-2012, 02:14 AM
Im not familiar with these options. Where do i find them?
after looking at the screen shots above I think these are part of a addon
hugh_
05-18-2012, 03:51 AM
Could I please get some help with this problem? Unless I can fix this somehow I'm going to have to install another download manager...
hohleweg
05-22-2012, 01:47 PM
Hey
In german i have also the rating Bug
can you help me?
Greetings Jo
Welshy2008
05-22-2012, 03:46 PM
Any luck, Hippy?
Even I am getting this "Sorry! You have exceeded your daily allowed download amount" message now. :_|
Recently upgraded to 4.1.2 PL 1.
In order to temporary sort out the "Your downloding too fast" I had to set the downloads to "0". Is there a cure for this please?
Hippy, if you need access to have a look yourself, PM me. :)
I would appreciate some help on the following issue that I have with DownloadsII please...
I have searched this thread and the net and can't find a solution to it:
My members are reporting an error with Downloads II. They have reported gettingthe following error message:
Slow Down! You are trying to download files too quickly. You must wait 60 seconds before you may download another file.
I don't know why it is saying this as I have the wait time set to 20 seconds.
I have checked all my settings in AdminCP and they are correct - IE: -1, -1, -1 and Strict set to "No".
Your help in this would be appreciated.
Also, I don't see this message as Admin as I have no time on the downloads (set to 0).
When I set the members' usergroup (temporary) to 0 too, there were naturally no issues with the dowload times.
Is there a 60 second thing coded into one of DownloadII files somewhere that is causing this issue?
Many thanks,
Welshy2008.
group permissions.. try setting it to 20 or 10
Download DELAY: This is the minimum time in seconds that the user must wait between file downloads. Set this to 0 for there to be NO limit. If you set this number too low, your site could be open to a denial-of-service (DoS) attack! If the user is in multiple groups, the HIGHEST value will be the delay setting.
I'll try and figure it out for you .. might be a global over riding it
Hippy
05-22-2012, 03:55 PM
Sorry been side tracked with VB.2.0 beta...ill check the settings. What I get home.
Welshy2008
05-22-2012, 03:55 PM
Hey
In german i have also the rating Bug
can you help me?
Greetings Jo
After seeing this, I checked mine.
I too, have the same issue with the ratings, as in your screenshot.
Welshy2008
05-22-2012, 03:56 PM
Sorry been side tracked with B2B.0 beta...ill check the settings. What I get home.
Thanks Hippy. I'd appreciate that.
Welshy2008
05-22-2012, 03:59 PM
Also when I add "downloads.php?do=manfiles&act=updatecounters" at the end of my forum URL in the address bar at the top - I get the following:
Your submission could not be processed because a security token was invalid.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error..
Hippy
05-22-2012, 04:04 PM
NP ..Guess I have a few things to check on. Pm me details will cone by after work
Welshy2008
05-22-2012, 04:13 PM
Also when I add "downloads.php?do=manfiles&act=updatecounters" at the end of my forum URL in the address bar at the top - I get the following:
Actually, The only way that I could do the Update Counters was to go to: http://www.YourForumURL.com/downloads.php?do=manfiles then click on the "Update Counters" on the top right.
But it is the other issue that I need to sort out.
Welshy2008
05-22-2012, 04:34 PM
Ah ha, With regard to the "eceeded daily limit on downloads" I have sorted it. It was a new usergroup set up by one of my Admins, and that Admin added my to it. The permissions for that group aren't set up correctly yet as it is still in testing stage.
This is with NO downloads limit. I would however, like to get it back to 60 seconds delay between each download.
Would like to sort the Alignment issue of the rating out though.
Hippy
05-22-2012, 09:37 PM
Hey
In german i have also the rating Bug
can you help me?
Greetings Jo
over write your
downloads2.css
with the content of the atachment
see screenshot
Ah ha, With regard to the "eceeded daily limit on downloads" I have sorted it. It was a new usergroup set up by one of my Admins, and that Admin added my to it. The permissions for that group aren't set up correctly yet as it is still in testing stage.
This is with NO downloads limit. I would however, like to get it back to 60 seconds delay between each download.
Would like to sort the Alignment issue of the rating out though.
no site I work on is set to 60 sec they are either 0 or 5 and some are 10
I checked a dozen of them
anyway I could pop by
here is the css fix for the rating
over write your
downloads2.css
with the content of the atachment
see screenshot
https://vborg.vbsupport.ru/attachment.php?attachmentid=138590&stc=1&d=1337726093
RS_Jelle feel free to add to the archive
Welshy2008
05-22-2012, 11:30 PM
here is the css fix for the rating
over write your
downloads2.css
with the content of the atachment
see screenshot
https://vborg.vbsupport.ru/attachment.php?attachmentid=138590&stc=1&d=1337726093
RS_Jelle feel free to add to the archive
Thanks Hippy.
Sorted. :)
Hippy
05-22-2012, 11:41 PM
Style then go to CSS
sadiq6210
05-23-2012, 04:40 AM
Did anybody upgrade to 4.2? Is it working perfect?
stationar
05-23-2012, 03:40 PM
4.2: Functionality didn't change. But it disappeared from the navigation panel. Anybody knows how to add it back to navigation panel?
stationar
05-23-2012, 09:20 PM
OK, I figured out how to add it to navigation panel.
Go to Navigation Manager and add New Tab, fill it up and under Tab Script put "downloads2".
You can also add sub-links.
Hippy
05-23-2012, 09:33 PM
downloads2_file
template
update
update code for the rating
enjoy
Hippy
05-23-2012, 10:42 PM
4.2: Functionality didn't change. But it disappeared from the navigation panel. Anybody knows how to add it back to navigation panel?
OK, I figured out how to add it to navigation panel.
Go to Navigation Manager and add New Tab, fill it up and under Tab Script put "downloads2".
You can also add sub-links.
Admincp
options
DownloadsII Options
turn off navbar tab under
Enable Plugin Features
save
then go to your NEW navagation Manager
Add tab
title
Downloads
target url
downloads.php
Tab Script(s)
downloads2
https://vborg.vbsupport.ru/attachment.php?attachmentid=138620&stc=1&d=1337816436
then links
add parent links for the subnavfrom the tab you just made
title
Manage Files
targeturl
downloads.php?do=manfiles
https://vborg.vbsupport.ru/attachment.php?attachmentid=138619&stc=1&d=1337816436
etc
main
downloads.php
Add Files
downloads.php?do=add
search Downloads
downloads.php?do=search
when your finished it will look like so
https://vborg.vbsupport.ru/attachment.php?attachmentid=138618&stc=1&d=1337816436
hope this helps
Hippy
05-24-2012, 12:18 AM
forgot to add what it looks like
https://vborg.vbsupport.ru/attachment.php?attachmentid=138624&stc=1&d=1337822307
hohleweg
05-24-2012, 01:35 PM
Hey
Hey
In german i have also the rating Bug
can you help me?
Greetings Jo
over write your
downloads2.css
with the content of the atachment
see screenshot
i dont have a downlaod2.css
in with folder must it i do?
greetings jo
Hippy
05-24-2012, 01:59 PM
Hey
i dont have a downlaod2.css
in with folder must it i do?
greetings jo
Replace both I posted. The CSS file / template is in your style under CSS group
StevenTN
05-26-2012, 10:03 AM
Thanks Hippy for the guide.
Hippy
05-26-2012, 10:12 AM
Hey
i dont have a downlaod2.css
in with folder must it i do?
greetings jo
no folder
copy the contents from with in the files I posted
and then paste them over writing the contents with in those templates
Thanks Hippy for the guide.
welcome
still figuring all this out like most
I am glad it helped
stwan
05-26-2012, 08:31 PM
@RS_Jelle,
Download fails due to missing security token when Downloads are restricted to members. If a guest tries to download he gets the Login form. After succesfull login he is redirected back to Download, but this fails due to missing security token.
My workaround is to redirect the logged in member to the download page for this file where he can start a new download of the file:
find in downloads.php around line 485:
eval(standard_error(fetch_error('security_token_in valid', $vbulletin->options['contactuslink'])));
replace with:
if ($permissions['downloads2permissions'] & $vbulletin->bf_ugp['downloads2permissions']['candownloadfiles'])
{
exec_header_redirect("downloads.php?" . $vbulletin->session->vars['sessionurl'] . "do=file&id=" . $file[id]);
}
else
{
eval(standard_error(fetch_error('security_token_in valid', $vbulletin->options['contactuslink'])));
}
@Jelle: Pleas add this to your repository, thanks :)
And please fix:
Bug CSS in IE9; Chrome; Opera; Safari:
http://img857.imageshack.us/img857/9572/bugie9.jpg
Nelson58
05-28-2012, 03:06 PM
I am hoping please you could help me, maybe hippie- he seems very skilled.
I changed servers, and the mod was not working no tab even. I uninstalled it and reloaded it (wrong thing to do).
All previous data was lost. However, I have a backup from before I changed servers.
Which files can I overwrite to try to get my data back? Such as categories, listings of files etc.
Thanks!!
Nelson
alhidaya
05-28-2012, 07:59 PM
Hello,
I installed version 4.2.0 and I don't see 'DOWNLOAD" on the navbar. I réuploadé but still nothing. Since Vbulletin 4.2.0, 'DOWNLOAD" disappeared from the navbar and does not want to reinstall
Could you do an update please?
Nelson58
05-28-2012, 08:06 PM
Hello,
I installed version 4.2.0 and I don't see 'DOWNLOAD" on the navbar. I r?upload? but still nothing. Since Vbulletin 4.2.0, 'DOWNLOAD" disappeared from the navbar and does not want to reinstall
Could you do an update please?
That SAME thing happened to me. I thought it was because of changing servers, but apparently, it happened to you too. The Downloads tab on the Navbar disappeared, and I tried deleting the mod and re-installing it (don't do that!!). It left me with a mess that Hippy fixed for me.
Nelson
squidsk
05-28-2012, 08:11 PM
Hello,
I installed version 4.2.0 and I don't see 'DOWNLOAD" on the navbar. I r?upload? but still nothing. Since Vbulletin 4.2.0, 'DOWNLOAD" disappeared from the navbar and does not want to reinstall
Could you do an update please?
That SAME thing happened to me. I thought it was because of changing servers, but apparently, it happened to you too. The Downloads tab on the Navbar disappeared, and I tried deleting the mod and re-installing it (don't do that!!). It left me with a mess that Hippy fixed for me.
Nelson
Until a fix is released follow the instructions here (https://vborg.vbsupport.ru/showpost.php?p=2332143&postcount=1975).
Crotan
05-29-2012, 01:29 AM
yep yep, quite a few mods will require updates for 4.2 because of the new navbar manager.
https://www.vbulletin.com/forum/showthread.php/401289-vBulletin-4-2-Feedback-amp-Discussion?p=2294241&viewfull=1#post2294241
maybe an option to have to store folder in a dropbox? should be usefull i supose.
Dropbox can use api's and 1 or more dropboxes to upload en download files...
Dragaon
06-04-2012, 03:38 PM
Just use the new navigation manager to create a new tab for it. The module still works well.
I upgraded vb to 4.2.0 and now, DownloadsII works "strange":
Not appears function of search (for example) if i go to options of downloadsII and select turn off downloadsII I have turn on.
If I select turn on downloadsII appears turn off
???
Admincp
options
DownloadsII Options
turn off navbar tab under
Enable Plugin Features
save
then go to your NEW navagation Manager
Add tab
title
Downloads
target url
downloads.php
Tab Script(s)
downloads2
https://vborg.vbsupport.ru/attachment.php?attachmentid=138620&stc=1&d=1337816436
then links
add parent links for the subnavfrom the tab you just made
title
Manage Files
targeturl
downloads.php?do=manfiles
https://vborg.vbsupport.ru/attachment.php?attachmentid=138619&stc=1&d=1337816436
etc
main
downloads.php
Add Files
downloads.php?do=add
search Downloads
downloads.php?do=search
when your finished it will look like so
https://vborg.vbsupport.ru/attachment.php?attachmentid=138618&stc=1&d=1337816436
hope this helps
Hippy, thank you very much for your post and help.
I go to configured my tabs for downloads, but when I go to add new tab and links for downloads, in my case, not appears the options:
"User is a memeber of"...
"User is NOT a memeber of"...
"Additional Parents".
I think that, for the link for manage files I need configured for appears only a Admins, but, like comment, in my case, not appears this options.
Attach a Image.
Thanks and regards!
Hippy
06-05-2012, 10:28 PM
I have a mod installed there
but your screen shot is for tab
you need to go to the download tab and the little drop window add link..
for the sub nav links
I have a mod installed there
but your screen shot is for tab
you need to go to the download tab and the little drop window add link..
for the sub nav links
Thanks Hippy!
Ok, the little drop windows add link for the sub nav links, I have, but, I add the tab for Downloads and her links, but the link for "Manage Files" I don't know how made, because, in your screen shot appears the option for only some usergroups (using your mod installed) but in my case, if I add this links, appears for all usergroups?
Thanks and regards!!
If you need more screen shot, I attach :)
Hippy
06-05-2012, 11:35 PM
yes all groups as before..
this is how they will look with out that mod
Hippy
06-05-2012, 11:37 PM
this is the mod if you want to set it for user groups and much more
but is confusing :D
https://vborg.vbsupport.ru/showthread.php?p=2336943#post2336943
yes all groups as before..
this is how they will look with out that mod
Ok, thank you Hippy!
With this configuracion, all usergroups can view the option "Manage Files"?
If its yes...its possible change this for only can view the admin usergroup?
This question are with out your mod :)
this is the mod if you want to set it for user groups and much more
but is confusing :D
https://vborg.vbsupport.ru/showthread.php?p=2336943#post2336943
Thank you very much, I go to view the mod :)
Lotos
06-07-2012, 12:12 PM
Does anybody knows how to increase an amount of symbols in the file name?
Now it’s possible to have only 27 symbols to name the file.
squidsk
06-07-2012, 01:04 PM
You'd need to alter the table in the database to increase the size of the field that stores the file name.
Lotos
06-08-2012, 07:30 AM
You'd need to alter the table in the database to increase the size of the field that stores the file name.
Does anybody knows the name of the table and the line to correct?
CHADI-AS
06-08-2012, 02:26 PM
Hi,
I did everything, but I couldn't download!
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@website.org 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/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.website.org Port 443
There isn't any problem with downloading Image of book, but when I try to download any book I see the above problem.
any idea please?
hugh_
06-12-2012, 03:49 AM
Could I please get some help with this problem? Unless I can fix this somehow I'm going to have to install another download manager...
This was a php sessions issue. I don't know why I not everyone is affected but I fixed it as follows:
Before the following statement in downloads.php
readfile("$filename");
add...
session_write_close()
squidsk
06-12-2012, 01:10 PM
Closing the session is a bad idea, its likely you have something set incorrectly elsewhere.
hugh_
06-12-2012, 10:36 PM
Closing the session is a bad idea, its likely you have something set incorrectly elsewhere.
Why? All the programing discussions I've read seem to encourage it...
http://php.net/manual/en/function.session-write-close.php
http://stackoverflow.com/questions/7077635/php-download-blocks-rest-of-requests
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.