Hunt
Hunt

Reputation: 8425

Unkown error in uploadify

i am trying to implement uploadify and following are my settings

<link rel='stylesheet' type='text/css' href="uploadify/uploadify.css" />
<script type="text/javascript" src="uploadify/swfobject.js"></script>
<script type="text/javascript" src="uploadify/jquery.uploadify.js"></script>

$('#file_upload').uploadify({
    'uploader'   : 'uploadify/uploadify.swf',
    'script'     : 'uploadify/uploadify.php',
    'folder'     : 'upload',
    'multi'      : true, 
});

I have uploaded the folder uploadify at the server , but still the uploadify was not be able to find the path properly and was giving me "Not Found uploadify.swf" error

so i have to hard code the following lines in jquery.uploadify.js

swf      : 'uploadify/uploadify.swf',
uploader : 'uploadify/uploadify.php',
cancelImage     : 'uploadify/uploadify-cancel.png',
checkExisting   : 'uploadify/uploadify-check-existing.php',

after doing that "Not Found uploadify.swf" had gone , but when the the "SELECT FILES" button loads or the whole page gets load

i am getting some strange error don't know from where this request is being fired

GET http://www.example.com/client/plus/false 404 (Not Found)

I really dont under stand why its giving me this error

Upvotes: 0

Views: 3202

Answers (1)

Christian Burger
Christian Burger

Reputation: 675

This is a bug with Uploadify itself, see this discussion. The SWF makes a request to the page for some reason.

Upvotes: 4

Related Questions