我有一个正在上传图片的网站,我只是想问一下如何设置几个 php.ini 设置:
max_file_uploads (The maximum mumber of files that can be uploaded in 1 go).
上面的设置是指一个用户会话可以上传的文件总数和一次的数量。例如:用户总共可以上传 8 张图片。如果我将其设置为 1 是否意味着一次 1 个图像或总共 1 个图像?将其设置为 8 是否有意义,或者我应该将其设置为更多的用户可以上传然后改变主意。
upload_tmp_dir /custom/location Change the location of where files are initally uploaded to
这是否应该设置在文档根目录之外以供 php 上传?什么是典型位置?/var/php_images? 我正在使用 open_basedir,所以应该将这条路径包含在此处吗?