LetoDMS Community Forum
upload file size increase - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Technical Support (https://community.letodms.com/forumdisplay.php?fid=10)
+--- Thread: upload file size increase (/showthread.php?tid=320)



upload file size increase - VPeter - 07-20-2011

Hello,

I’d like to add document bigger, than let me my PHP environment (Maximum upload size : 2M).
How can I do that?
I did it try by .htaccess or php.ini file, but they are worsened the character size and given more warning message, i.e.:

"Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Berlin' for 'CEST/2.0/DST' instead in ...... inc/inc.ClassUI.php on line 523"

and don't upload the file.

How can I do increase the default maximum upload size, for example: to 50 M.

Thanks: VP.


RE: upload file size increase - steinm - 07-20-2011

(07-20-2011, 06:04 PM)VPeter Wrote: Hello,

I’d like to add document bigger, than let me my PHP environment (Maximum upload size : 2M).
How can I do that?
I did it try by .htaccess or php.ini file, but they are worsened the character size and given more warning message, i.e.:

...

and don't upload the file.

How can I do increase the default maximum upload size, for example: to 50 M.

Thanks: VP.

php.ini is the right place for it. Search for
upload_max_filesize and post_max_size

Uwe



RE: upload file size increase - VPeter - 07-20-2011

(07-20-2011, 07:33 PM)steinm Wrote:
(07-20-2011, 06:04 PM)VPeter Wrote: Hello,

I’d like to add document bigger, than let me my PHP environment (Maximum upload size : 2M).
How can I do that?
I did it try by .htaccess or php.ini file, but they are worsened the character size and given more warning message, i.e.:

...

and don't upload the file.

How can I do increase the default maximum upload size, for example: to 50 M.

Thanks: VP.

php.ini is the right place for it. Search for
upload_max_filesize and post_max_size

Uwe


I did it so

[PHP]
upload_max_filesize = 50M
post_max_size = 50M
in the folder /out

but the problem see up...

VP.