Commit 67c302c5297396ccfd1eb747871353d5173bb14d
1 parent
a7826f5b
Exists in
master
redmine 6608: augmentation des limites d'upload du fichier source
A faire en parallèle avec: - les variables post_max_size et upload_max_filesize du php.ini - la variable LimitRequestBody du httpd.conf
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
ihm/app/Constants.js
server/kernel/config/app.config
... | ... | @@ -66,10 +66,10 @@ treps.log4cxx.logger=TREPS-Kernel |
66 | 66 | ##=================================================== |
67 | 67 | |
68 | 68 | #max source file size in octets (if not defined, default to 20971520 octets, ie 20 Mo) |
69 | -treps.source.maxfilesize=20971520 | |
69 | +treps.source.maxfilesize=100000000 | |
70 | 70 | |
71 | 71 | #max source file records (if not defined, default to 100000) |
72 | -treps.source.maxfilerecords=100000 | |
72 | +treps.source.maxfilerecords=1000000 | |
73 | 73 | |
74 | 74 | #=================================================== |
75 | 75 | #ASCII files properties | ... | ... |