我正在尝试使用简单的表单上传文件。文件大小为 1.37 MB。
页面重新加载后,我收到此错误:
Allowed memory size of 33554432 bytes exhausted (tried to allocate 11264 bytes)
这是来自phpinfo()
:
Directive Local Value Master Value
memory_limit 32M 32M
我前段时间做的最大上传文件是25MB。
这是我的 php.ini:
[PHP]
; Maximum allowed size for uploaded files.
upload_max_filesize = 25M
; Maximum size of POST data that PHP will accept.
post_max_size = 25M
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
; Maximum execution time of each script, in seconds
max_execution_time = 600
; Maximum amount of time each script may spend parsing request data
max_input_time = 600
; Maximum amount of memory a script may consume (8MB)
memory_limit = 32M