A few issues with download manager free

Viewing 5 posts - 1 through 5 (of 5 total)
#10150

jani
Member

Hello,
thanks for a great product, been evaluating the free version a bit.

I, however, find some issues that i’d like to ask about

* If i upload a file larger than 8 MB it will fail without any message or error. Is there a hardcoded limit ? (my php.ini is set to 20MB).
If i upload a file that is 8MB i will get “0, undefined KB” as result. The file is attached.

Smaller issue.. but i will note it anyways
* after making a package, it says “refreshing” or something. The refresh function is noted out in the sources.

Suggestion:

wpdm-add-new-file.php

var msg = '';
if(res=='updated') {
msg = [cant post the original php line here. it is omitted when posting //Jani]
location.href='admin.php?page=file-manager';
}

else if(parseInt(res)>0){
msg = [cant post the original php line here. it is omitted when posting //Jani]
location.href='admin.php?page=file-manager';
}

#10152

jani
Member

The file mentioned is zipped, its 8MB if you decompress it.

EDIT: Solved it myself, the manager uses the media uploader, there is a restriction of 8MB in my case.

php.ini
post_max_size = 8M
upload_max_filesize = 20M

#10156

jani
Member

Hello again ๐Ÿ™‚
i kind of noticed, that nevertheless what you choose as “show counter” it will always be 0.


if($_POST['wpdmtask']=='create'){
extract($_POST);

$file['show_counter'] = 0;

Suggestion (something like this, i am not so much into php…)

$file['show_counter'] = $file['show_counter']?$file['show_counter']:0;;

#10227

Shahjada
Keymaster

actually for first time while creating package it is setting to 0. LOL, I never guessed you would want to add a count even when creating a package.

#10243

jani
Member

Sorry, my last post was a bit confusing ..

the variable “show_counter” is initially always set to 0, regardless what you choose … not the actual number of downloads .. ๐Ÿ™‚

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘A few issues with download manager free’ is closed to new replies.