A few issues with download manager free

in Download Manager Free

Viewing 5 posts - 1 through 5 (of 5 total)
Nov 29, 2013 at 6:58 pm
#10150
Member
jani
OP

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';
}

Nov 29, 2013 at 7:00 pm
#10152
Member
jani
OP

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

Nov 29, 2013 at 9:17 pm
#10156
Member
jani
OP

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;;

Dec 3, 2013 at 8:08 pm
#10227
Keymaster
Shahjada
Staff

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.

Dec 4, 2013 at 2:12 am
#10243
Member
jani
OP

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.