Bonjour à tous,

MySQL : 5.0.51a
PHP : 4.4.7
Mantis : 1.1.1


Il m'est impossible d'ajouter de pièce-jointe de plus d'1M.

Malgré la modification de php.ini :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
[...]
 
; Output buffering allows you to send header lines (including cookies) even
; after you send body content, at the price of slowing PHP's output layer a
; bit.  You can enable output buffering during runtime by calling the output
; buffering functions.  You can also enable output buffering for all files by
; setting this directive to On.  If you wish to limit the size of the buffer
; to a certain size - you can use a maximum number of bytes instead of 'On', as
; a value for this directive (e.g., output_buffering=4096).
; Gom
;output_buffering = 4096
output_buffering = On
 
[...]
 
; Maximum allowed size for uploaded files.
; Gom
upload_max_filesize = 5M
 
[...]

Pour rappel, il n'y a normalement pas de modification à faire dans la configuration de Mantis puisque en standard :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
 
	# Maximum file size that can be uploaded
	# Also check your PHP settings (default is usually 2MBs)
	$g_max_file_size		= 5000000; # 5 MB

Une idée ?!