SWFUPLOAD上传2049权限问题的一种

    早上遇到的问题,记录下:

     在对SWFUpload进行实例化时要传参数,如果采用完整路径,其中必须保证upload_url和flash_url所使用的服务器描述一致。例如: 

        (假设服务名为TestServer,其IP为192.168.1.100) 
        upload_url:"http://TestServer/Test/SFileUpload", 
        flash_url:"http://192.168.1.100/Test/flash/swfupload.swf", 
        如果如上代码,则会报告2049错误。你必须将其改成: 
        upload_url:"http://192.168.1.100/Test/SFileUpload", 
        flash_url:"http://192.168.1.100/Test/flash/swfupload.swf", 
        或 
        upload_url:"http://TestServer/Test/SFileUpload", 
        flash_url:"http://TestServer/Test/flash/swfupload.swf", 
        要保证两个url对服务器的描述是一致的。另外最后在后面还要加上: 
        prevent_swf_caching : false, 
        preserve_relative_urls : false, 

你可能感兴趣的:(swfupload,2049)