“http 错误"为 JQuery 使用 Uploadify 插件时 [英] "http error" when using Uploadify plugin for JQuery

查看:17
本文介绍了“http 错误"为 JQuery 使用 Uploadify 插件时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用这里的插件:http://www.uploadify.com/

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

我已经设置了一个简单的测试用例,选择一个文件等 &我尝试上传时收到HTTP 错误".

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>

..这是我的html代码..

.. 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.

我用 fiddler &似乎我收到响应代码 413 - 请求实体太大"错误.

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

问题已修复....这是我在 .htaccess 文件中的一些内容的问题,可能是LimitRequestBody".

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

推荐答案

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

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

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

Not sure why these settings affected it as the values I had set in there were larger values than the files I was trying to upload, but alas the code I took out of .htaccess was the below..

php_value upload_max_filesize 256MB
php_value post_max_size 300MB
php_value max_input_time 500
LimitRequestBody 500MB

这篇关于“http 错误"为 JQuery 使用 Uploadify 插件时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆