uploadify plugin is not saving images at all on localhost, but it doesn't report any error. what can be the problem?
This is my code
<script type="text/javascript">
$(document).ready(function()
{
$('#file_upload').uploadify({
'uploader' : 'include/uploadify/uploadify.swf',
'script' : 'include/uploadify/uploadify.php',
'cancelImg' : 'include/uploadify/cancel.png',
'folder' : 'images/profile',
'auto' : true,
'multi' : false
});
});
</script>
and the call looks like this
<input id="file_upload" name="file_upload" type="file" />