“http error” when using Uploadify plugin for JQuery

前端 未结 2 504
抹茶落季
抹茶落季 2021-01-20 05:23

I\'m using the plugin from here: http://www.uploadify.com/

I have setup a simple test case, select a file etc & I get a \"HTTP Error\" when I try to upload.

2条回答
  •  情歌与酒
    2021-01-20 06:17

    I got a different http error: HTTP undefined or HTTP 500. After 4 hours of searching the web, I found the answer.

    It is because the server uses Mod_Security. To turn it off, add these lines to .htacess file

    
    SecFilterEngine "off"
    SecFilterScanPOST "off"
    
    

    Credit: scaturan posted on http://gallery.menalto.com/node/94614

提交回复
热议问题