3

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.

Here is the relevant code from my header..

<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/swfobject.js"></script>
<script type="text/javascript" src="js/jquery.uploadify.v2.1.0.min.js"></script> 
<link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/admin.css" rel="stylesheet" type="text/css">

<script type="text/javascript">
$(document).ready(function() {
    $('#sampleFile').uploadify({
        'uploader': 'include/uploadify/uploadify.swf',
        'script': 'upload_test.php',
        'folder': '/work/avais/bizlists/lists',
        'cancelImg': 'include/uploadify/cancel.png'
    });
});
</script>

</head>

.. and here is my html code..

<div id="upload_wrapper">
    <input type="text" name="full_name" /><br />
    <input id="sampleFile" name="sampleFile" type="file" />
    <input type="button" name="upload" value="Upload" onclick="javascript:$('#sampleFile').uploadifyUpload();" />
</div>

I would provide the link but it's inside an admin area.

I couldn't find any documentation on troubleshooting errors on this plugin.

Edit: I checked it with fiddler & it seems I'm getting a "Response Code 413 - Request Entity Too Large" error.

Edit: Problem fixed.... it was an issue with some stuff I had in the .htaccess file, probably the "LimitRequestBody".

4

2 回答 2

3

我得到了一个不同的 http 错误:HTTP undefined 或 HTTP 500。在网上搜索了 4 小时后,我找到了答案。

这是因为服务器使用了 Mod_Security。要关闭它,请将这些行添加到 .htacess 文件

<Ifmodule mod_php5.c>
SecFilterEngine "off"
SecFilterScanPOST "off"
</Ifmodule>

信用:saturan 发布在http://gallery.menalto.com/node/94614

于 2011-01-25T08:52:54.100 回答
1

问题已解决......这是我在 .htaccess 文件中的一些内容的问题,可能是“LimitRequestBody”。

不知道为什么这些设置会影响它,因为我在那里设置的值比我尝试上传的文件大,但是我从 .htaccess 中取出的代码如下..

php_value upload_max_filesize 256MB
php_value post_max_size 300MB
php_value max_input_time 500
LimitRequestBody 500MB
于 2010-10-27T18:00:44.037 回答