Quote:
Originally Posted by MiahBeSmokin420
what dose this do in the .htaccess file
php_value max_execution_time 0
php_value max_input_time 0
?????? just wondering
cause i see it there in your post and i never had a htaccess file in my dir untill just now lol
|
Those are optional PHP settings, but you don't need that normally
Have a look at
http://www.php.net/info for some more information about them.
Quote:
Originally Posted by WhatChaMissin
I'm not sure how many people are familiar with GARS.
Well I'm currently use it on my site and once I installed Gars, the upload feature stopped working on downloadsII. Now I have to disable Gars in order to upload files to my site using DownloadsII, and then enable Gars when I'm done.
I used to have a special group set with permission to upload to the site. Now they have to send me the files so I can upload it for them.
I was just wondering if anyone has DownloadsII and Gars running together and might have found a fix for it.
BTW: The only error message I get is that all fields must be completed (which they are of course), this is were it gets "stuck" and won't let anyone complete the upload process.
Thanks
|
That's pretty strange, but GARS isn't a free script, so I can't test it
Could you bring this issue to the attention of the GARS developer? DownloadsII is available for free, so he can test it out

He can always contact me to sort it out together.
Quote:
Originally Posted by kafi
How do I put files stat on forumhome? I guess I have to call
Code:
{$dl->stats['files']}
somewhere.
I want to place it into stats box (treads, posts, members, downloads_files)
Thanks!!!
|
You need to include /includes/class_downloads.php in your forum home (using a plugin) to be able to use the $dl class. Then you can put
{$dl->stats['files']} (and others) everywhere you want in a forum home template.
Try adding a plugin to the forumhome_start hook location with this content:
PHP Code:
require_once('./includes/class_downloads.php');
$dl = new vB_Downloads();
(I didn't test it, but it should work normally.)
Quote:
Originally Posted by exportforce
Does this Mod support pre-HTML Downloadstreaming?
So that I can put my downloads under the HTML-Path?
/var/www/webX/html/ <-- thats where www.domain.com links
/var/www/webX/downloads/ <-- here you can't access via hotlinking etc.
Thats where I wan't my downloads, so they never can be hotlinked.
Is that possible with this ?
|
That's not possible at the moment, but users will never see the direct file link (except for the optional file images). We also add some random characters to the file name, so guessing the exact location is pretty difficult.
Finally you can add .htaccess protection to the directory if you don't trust it
Quote:
Originally Posted by thecool444
Im having trouble with downloads2. I have done every step exept the optional steps. But when i go to my forum theres no link to the download page. I have done settings categories etc. When i manually go to the download page it is just blank see here
http://www.mmorpglord.com/Forum/downloads/
Any help would be appreciated.
Thanks
Alexander
|
That's why there is an optional step to add a link to your vB navigation bar in the navbar template
Try
http://www.mmorpglord.com/Forum/downloads.php (you need to set usergroup permissions to access it)
(
http://www.mmorpglord.com/Forum/downloads/ is just the storage directory for uploads)