apche:httpd.config
httpd.config末尾添加:
<IfModule mod_fcgid.c>
AddHandler fcgid-script .fcgi
FcgidConnectTimeout 20
MaxRequestLen 524288000
</IfModule>
php.ini修改:
;每个php页面运行最大时间值,默认30秒
max_execution_time = 600;
;每个php页面接收数据所需的最大时间,默认60秒
max_input_time = 600;
;每个php页面所吃掉的最大内存,默认8M
memory_limit = 8M;
;上述三个修改一般就好使了
;开启上传功能
file_uploads = on;
upload_max_filesize = 32M 上传文件大小
post_max_size = 32M 表单提交最大大小
upload_tmp_dir = ''上传文件存放临时位置
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!