Home  >  Article  >  Backend Development  >  怎么修改百度编辑器Ueditor的附件上传大小?急求

怎么修改百度编辑器Ueditor的附件上传大小?急求

WBOY
WBOYOriginal
2016-06-06 20:46:101660browse

怎么修改百度编辑器Ueditor的附件上传大小?急求!!!发现是用swfupload上传的,但是不知道怎么修改上传大小限制,求各位指点

回复内容:

怎么修改百度编辑器Ueditor的附件上传大小?急求!!!发现是用swfupload上传的,但是不知道怎么修改上传大小限制,求各位指点

看了两个多小时Ueditor的代码啊!!!
下载这段来自网络博客,和我的遭遇略像
所上传的文件体积并未超出SWFUpload所设置的数值,但为何无法成功上传?
通常这是由于服务器端的限制所造成的,以Apache+PHP为例,请修改php.ini中的post_max_size与upload_max_filesize两项设置。
我一开始将post_max_size设置为2048,将upload_max_filesize设置为200M(单个文件大小限制),发现还是会报错;后来经过测试发现post_max_size默认值为8M,将其设置为200M就没有问题了,也就是说之前设置的2048太大,超出的配置限制,这个问题特别隐蔽,我也是意外发现的,很是幸运。

原地址在
http://blog.csdn.net/blognkliming/article/details/8504702

补充楼上,在nginx.conf中http内增加一句 client_max_body_size 30m;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn