Quote:
Originally Posted by RS_Jelle
1. Click the "Update Counters" link at your downloads section. The left side statistics are being cached.
2. This isn't possible at the moment, but probably in the future it will.
1. Did you check the usergroup permissions? The "error" is caused by an upload limit you can set on a per usergroup basis.
2. Line 5721 of /includes/functions.php is the global_complete hook, but DownloadsII isn't using this plugin location. So the PHP warning is caused by another mod.
You will get the security token error when an upload is timing out, which is caused by a PHP server setting. Have a look at http://www.vbulletin.com/forum/showp...23&postcount=3 (the vB attachment system will give you the same problem with large files).
Try reuploading all files. This is clearly a problem at your server side
Did you upload the upload folder itself (wrong)? Or only its content (correct)? 
|
May I add to this?
You can also increase the PHP maximum upload file size on your website by creating a file called:
.htaccess
And placing the following lines inside that file:
php_value upload_max_filesize 40M
php_value post_max_size 40M
Then upload the file in the same folder as your script.
This worked for me.