PHP和Nginx 檔案上傳大小限制問題解決方案

來源:互聯網
上載者:User

對於nginx+php的一些網站,上傳檔案大小會受到多個方面的限制,一個是nginx本身的限制,限制了用戶端上傳檔案的大小,一個是php.ini檔案中預設了多個地方的設定。所以為瞭解決上傳檔案大小限定的問題必須要做出多處修改。以下整理了幾個地方。

1、修改/usr/local/nginx/conf/nginx.conf 檔案,尋找 client_max_body_size 將後面的值設定為你想設定的值。比如:view plainprint?

  1. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
  2.         #  
  3.         location ~ \.php$ {  
  4.             root           /home/www/htdocs;  
  5.             fastcgi_pass   127.0.0.1:9000;  
  6.             fastcgi_index index.php;  
  7.             fastcgi_param SCRIPT_FILENAME /home/www/htdocs$fastcgi_script_name;  
  8.             include        fastcgi_params;  
  9.   
  10.             client_max_body_size 35m;        #用戶端上傳檔案大小設為35M  
  11.             client_body_temp_path /home/www/nginx_temp;        #設定臨時目錄  
  12.         }  

附錄:Nginx有一個Upload組件:
上傳速率,上傳Body大小,也就是上傳檔案時可能較大?
client_max_body_size 1024M
upload_limit_rate 158k
如下:view plainprint?

  1. location /upload {  
  2.     upload_pass     /up.php;  
  3.     upload_cleanup 400 404 499 500-505;  
  4.     #upload_store    /data/app/test.local/upload_tmp;  
  5.     upload_store    /tmp;  
  6.     upload_store_access user:r;  
  7.     client_max_body_size 1024M;  
  8.     upload_limit_rate 158k;  
  9.     upload_set_form_field "${upload_field_name}_name" $upload_file_name;  
  10.     upload_set_form_field "${upload_field_name}_content_type" $upload_content_type;  
  11.     upload_set_form_field "${upload_field_name}_path" $upload_tmp_path;  
  12.     upload_aggregate_form_field "${upload_field_name}_md5" $upload_file_md5;  
  13.     upload_aggregate_form_field "${upload_field_name}_size" $upload_file_size;  
  14.     upload_pass_form_field "^.*$";  
  15.     #upload_pass_form_field "^pid$|^tags$|^categoryid$|^title$|^userid$|^user_id$|^is_original$|^upload_file_name$|^upload_file_content_type$|^upload_file_path$|^upload_file_md5$|^upload_file_size$";  
  16. }  

2、修改php.ini

在php.ini裡面查看如下行:

  1. upload_max_filesize = 8M   
  2. post_max_size = 10M   
  3. memory_limit = 20M  
  4. max_execution_time=300  
  5. file_uploads = On  

預設允許HTTP檔案上傳,此選項不能設定為OFF。
upload_tmp_dir =/tmp/www

在上傳大檔案時,你會有上傳速度慢的感覺,當超過一定的時間,會報指令碼執行超過30秒的錯誤,這是因為在php.ini設定檔中max_execution_time配置選項在作怪,其表示每個指令碼最大允許執行時間(秒),0 表示沒有限制。你可以適當調整max_execution_time的值,不推薦設定為0。

參考文章:
PHP.INI配置:檔案上傳功能配置教程:http://www.leapsoul.cn/?p=488

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.