1、需要修改php.ini
打開php.ini,找到如下幾個參數(shù):
memory_limit = 128M 內(nèi)存限制最大值
post_max_size = 64M POST 提交數(shù)據(jù)所允許最大值
upload_max_filesize = 64M 上傳的文件的最大值
max_execution_time = 300 執(zhí)行時間
修改上傳文件大小限制要保證upload_max_filesize < post_max_size < memory_limit
根據(jù)自己文件大小,分別改大一點它們的值,然后重啟web服務(wù),如:apache或者iis
2、后臺文檔發(fā)布模板代碼修改
文章模型的是
- dede/templets/article_add.htm
- dede/templets/article_edit.htm
圖集模型的是
- dede/templets/album_add.htm
- dede/templets/album_edit.htm
軟件模型的是
- dede/templets/soft_add.htm
- dede/templets/soft_edit.htm
商品和自定義模型的是
- dede/templets/archives_add.htm
- dede/templets/archives_edit.htm
找到里面的
file_size_limit : "2 MB" 修復2大小即可。