vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - DownloadsII (https://vborg.vbsupport.ru/showthread.php?t=120122)

BozzaJos 11-10-2007 10:42 AM

Quote:

Originally Posted by RS_Jelle (Post 1379626)
For question 1 and 2: You can use the author field in two ways and because of this such an option isn't logical. You can put a member in it (with auto suggest), but you can also upload for example vBulletin and put Jelsoft as the author, which isn't a member (just an example as distributing vBulletin is illegal).
For question 3: This is already implemented in v6 as this is requested multiple times already :)
For question 4: I think this is a bit a complicated method? Are you having that many sub-categories?

For answers 1 and 2: I like that you can put whatever you want in the Author field but the Uploaded by has to be a member and you can't just fill in whatever you like. And it's the name @ Uploaded by which gets the download shown on his profile. So for example if I upload vBulletin, I put Jelsoft as the author but since Jelsoft isn't a member, vBulletin will be shown on my profile looking like I'm the author of it and not Jelsoft. I would like to see that the downloads gets added to the profile of the Author's name and if that name isn't a member, don't put it on any profile.

For answer 3: Many thanks, sorry for not noticing that it was already requested multiple times.

For answer 4: I'm having a lot of sub-categories indeed. I have tons of categories and like I said, lotsa downloads. I have to try and make it look a bit organized. For example, when you want to download some logos you'll have to go to:
Football Manager 2008 ? Graphics ? Stickerbook V2 ? League Packs ? Europe

I can't show all categories on the main page coz that will make it look really messy. But I also can't make them all show on the Graphics page coz we are still talking about tens of categories. I would like to have them shown on the Stickerbook V2 in this example. Can't you add an option when editing/adding a category that you can show all sub-categories on the page of that category.

fariborz khan 11-10-2007 10:57 AM

Quote:

Originally Posted by RS_Jelle (Post 1379653)
That's the fact that you can rename the downloads folder, which is the default name of it, to something different if you want. Then you also need to change the name in the DownloadsII settings. There are no advantages of another name, but it's possible :)

RS_Jelle sorry me for meny question:
you say:
you can rename the downloads folder
i want:
change name of directory to MYSITE DOWNLOAD
and change the pocition of MYSITE DOWNLOAD to another folder.
ok!!!
now how do this;)
please link related topic to me or explain me.
thanks a lot

cellow 11-10-2007 12:33 PM

Quote:

Originally Posted by cellow (Post 1377573)
Hi Jelle,
after a user or admin upload a picture, the thumbnail is "readable", but not the original (big) picture.
After i looked into "downloads" folder on the ftp server, i could see, that the uploaded image is chmod "600" :-(
So where is the bug in the download.php ???
regards
PS: i use downloadsII 5.06

Quote:

Originally Posted by RS_Jelle (Post 1379626)
Are you having any problems with this? It's pretty normal.
I also have got this, but it displays perfectly in the browser and you can remove it (with the delete link) without any errors. I don't understand the problem? Why should it have more permissions?

Hi Jelle,
of course i have problem with this!!! The uploaded pictures (chmod 600) are not seenable!
Browser error:
"Forbidden
You don't have permission to access /forum/downloads/kaisa_3oL.jpg on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."

After i changed it to chmod 666, the picture can everbody see.
I don't know find any configuration in the admincp for that.
maybe i have to fix any .php file?

thank you 4 ur support

Joshva 11-11-2007 07:26 AM

Quick question.

I'd like to say users have 1gig of storage but the individual files upload must be less than or equal to 20mb. Can this be done?

Thanks,
Josh

RS_Jelle 11-12-2007 05:21 AM

Quote:

Originally Posted by fariborz khan (Post 1379660)
RS_Jelle sorry me for meny question:
you say:
you can rename the downloads folder
i want:
change name of directory to MYSITE DOWNLOAD
and change the pocition of MYSITE DOWNLOAD to another folder.
ok!!!
now how do this;)
please link related topic to me or explain me.
thanks a lot

Change the directory name of the downloads folder, but it must stay inside the forums folder! DownloadsII doesn't support download directories placed outside the vBulletin forums folder at the moment. Also keep the 777 permissions chmod.
Then just change the Download URL of the DownloadsII settings to match the new name, but keep its's structure (./downloads/ -> the point and slashes are necessary in that way, like it's default).

Quote:

Originally Posted by cellow (Post 1379694)
Hi Jelle,
of course i have problem with this!!! The uploaded pictures (chmod 600) are not seenable!
Browser error:
"Forbidden
You don't have permission to access /forum/downloads/kaisa_3oL.jpg on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."

After i changed it to chmod 666, the picture can everbody see.
I don't know find any configuration in the admincp for that.
maybe i have to fix any .php file?

thank you 4 ur support

Are you on a shared host or a dedicated server? It's pretty strange as you are the first one having these problems with it. I'm only having it with that chmods as default and I don't get a forbidden error. Maybe you have a pretty strict Apache configuration?

Quote:

Originally Posted by Joshva (Post 1380193)
Quick question.

I'd like to say users have 1gig of storage but the individual files upload must be less than or equal to 20mb. Can this be done?

Thanks,
Josh

The 1GB of storage can be set using the usergroup permissions. The 20MB per file can be accomplished by limiting it with a .htaccess file in the forums directory to limit the PHP maximum upload value.

Code:

php_value upload_max_filesize 20M
php_value post_max_size 20M


tanujdude91 11-12-2007 06:01 AM

I would like to know whether vBSEO will change the URL's of the categories and downloads ?
For example - http://www.domain.com/downloads.php?do=file&id=320 or http://www.domain.com/downloads/file-name/

RS_Jelle 11-12-2007 10:55 AM

Quote:

Originally Posted by tanujdude91 (Post 1380843)
I would like to know whether vBSEO will change the URL's of the categories and downloads ?
For example - http://www.domain.com/downloads.php?do=file&id=320 or http://www.domain.com/downloads/file-name/

I've heard that there's a thread at the vBSEO forums with rewrite rules for vBSEO to rewrite the DownloadsII url's (but I don't use vBSEO myself) :)

Joshva 11-12-2007 08:33 PM

Quote:

Originally Posted by RS_Jelle (Post 1380831)

The 1GB of storage can be set using the usergroup permissions. The 20MB per file can be accomplished by limiting it with a .htaccess file in the forums directory to limit the PHP maximum upload value.

Code:

php_value upload_max_filesize 20M
php_value post_max_size 20M



What error will that report to the user? Will they understand it?

RS_Jelle 11-13-2007 05:50 AM

Quote:

Originally Posted by Joshva (Post 1381298)
What error will that report to the user? Will they understand it?

No, with the PHP setting the upload will just time-out (blank screen). But you can edit the downloads_file_addit template to set a warning for your members.

mark|3 11-13-2007 07:21 AM

i am trying to install the file but somehow i am having problems installing this and achieving the correct end result.

In my admincp >
i see downloads
Setting
Categories
Import
Downloads.

But in my forum i do see the link download or have any function to allow downloads.

I am using vb 3.6.8 and have only downloaded the DownloadsII 5.0.6.zip file. Do i need to download the addons to make it work properly?

Thanks


All times are GMT. The time now is 08:19 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06241 seconds
  • Memory Usage 1,761KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete