“http error” when using Uploadify plugin for JQuery-Collection of common programming errors
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..
$(document).ready(function() {
$('#sampleFile').uploadify({
'uploader': 'include/uploadify/uploadify.swf',
'script': 'upload_test.php',
'folder': '/work/avais/bizlists/lists',
'cancelImg': 'include/uploadify/cancel.png'
});
});
.. and here is my html code..
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”.