$ _file Büyük dosya karşıya upload_max_size dosya boyutu daha büyük olsa da hatası 1 verir

0 Cevap php

I have a simple upload form with:

enctype = "multipart / form-data" />

ve

input type = "hidden" name = "MAX_FILE_SIZE" value = "5900000" />

ve the following settings, that are applied (checked through phpini()) in php.ini:

upload_max_filesize = 7MB
memory_limit = 64M
post_max_size = 8MB

I try to upload a file that is small - 500k ve it goes through

I try to upload a file that is 5MB (smaller than both upload_max_filesize ve post_max_size settings) ve it fails with error code 1: which says is:

UPLOAD_ERR_INI_SIZE Value: 1; The uploaded file exceeds the upload_max_filesize directive in php.ini.

Herkes ne oluyor bir ipucu var?

0 Cevap