Max size larger than 2MB in file upload DOCman

1

When I try to send a file through Joomla DOCman, it will not let me upload files larger than 2MB. However I have been to see all the configurations of the cpanel and has all a good limit. Here is a print of the settings that I put in the cpanel, but it still does not work:

Imageoftheerrorinjoomla:

    
asked by anonymous 14.10.2014 / 14:00

2 answers

1

I was able to solve it as follows. I created a php.ini file inside the folder and put there the following line:

upload_max_filesize = 128M
    
14.10.2014 / 17:05
1

Try to change the limits at run time. Add these lines at the beginning of your script

ini_set("memory_limit", "64M");
ini_set("upload_max_filesize", "16M");
    
14.10.2014 / 14:27