Page 1 of 1

Multiple File Upload in Process

Posted: Fri Jun 08, 2018 5:48 am
by Skipper
Hello,

I have the following problem. I have a process where I'd like to upload a File like an ISO Image for that I set the Filesize Limit to zero. So I thought there isn't a Limit for uploadable Files . But I tried to upload just a 500MB ISO File and the PM said it's ok. But when the person who is working with the file in his Task he can't download the file. So I checked if it's on the server but there isn't the file where it should be.
Where is the Limt? I cheked the PHP File Upload Limit and set it up to 5G but also with Files smaller than 100 MB the Problem exists. Can anybody help me? For me it seems that it is a java problem? Can that and what can I do?

And there is another thing I reduced the allowed file extensions to ISO but when I choose the File in the formular there is also the possibility to choose any file extension. But why?

Kind regards
Timo

Re: Multiple File Upload in Process

Posted: Fri Jun 08, 2018 10:05 pm
by amosbatto
In your php.ini file, you need the following settings:
Code: Select all
post_max_size = 5000M 
upload_max_filesize = 5000M
memory_limit = 5000M
max_execution_time = 0
max_input_time = -1
See: http://wiki.processmaker.com/3.0/Additi ... _Documents