Commit 67c302c5297396ccfd1eb747871353d5173bb14d

Authored by Laurent BEIGBEDER
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
... ... @@ -15,7 +15,7 @@ Ext.define("treps.Constants",
15 15  
16 16 WS_DOC : "resources/doc/CDPP-IF-32600-534-GFI_01_00.pdf",
17 17  
18   - DROP_MAX_FILESIZE : 2097152,
  18 + DROP_MAX_FILESIZE : 100000000,
19 19 UPLD_MAX_FILESIZE : "100MB",
20 20  
21 21 GRID_BUFF_PAGESIZE : 400,
... ...
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
... ...