It looks like you're new here. If you want to get involved, click one of these buttons!
<script type="text/javascript">
$(document).ready(function() {
$("#uploadify").uploadify({
'uploader':'{$_baseaddr}frontend/javascript/uploadify.swf',
'script' : 'http://localhost{$_baseaddr}ajax.php',
'checkscript' : '{$_baseaddr}lib/uploadify/check.php',
'cancelImg' : '{$_baseaddr}img/cancel.png',
'queueID' : 'fileQueue',
'auto' : true,
'folder' : '{$_baseaddr}uploaded',
'multi' : false,
'fileDesc' : 'video',
'sizeLimit' : '3000',
'fileExt' : '*.3g2;*.3gp;*.3gp2;*.3gpp;*.3p2;*.asf;*.asx;*.avi;*.divx;*.flv;*.mod;*.mov;*.mp4;*.mpeg;*.mpg;*.ogm;*.rm;*.rmvb;*.scm;*.swf;*.wmv;*.xvid',
'method' : 'GET',
'buttonImg' : '{$_baseaddr}img_/testbutton.png',
'onComplete' : function(event,queueID,fileObj,response,data) {$('#response').append(response);},
'onOpen' : function(event,queueID,fileObj) {$('#response').text('');}
});
});
</script>