开发者

file uplaod php maximum files

开发者 https://www.devze.com 2023-01-24 14:36 出处:网络
i would like to upload som开发者_如何学Ce files with php. i got the following warning: Warning: Maximum number of allowable file uploads has been exceeded in Unknown on line 0

i would like to upload som开发者_如何学Ce files with php. i got the following warning: Warning: Maximum number of allowable file uploads has been exceeded in Unknown on line 0

But i can't find the maximum allowable files that can be uploaded. Can i ignore the size or setting the size higher to upload all my files?

Thank you very much.


You probably are exceeding the PHP configured max_file_uploads variable. Which is set to a default of 50 (on Debian Lenny).

You can find and configure this variable in php.ini. You can not set it in a .htaccess file or at runtime with ini_set() because of a bug: http://bugs.php.net/bug.php?id=50684&edit=1

In php.ini there is:

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 50
0

精彩评论

暂无评论...
验证码 换一张
取 消