Unable to Upload the file using Uploadify script

kinewinioni

New Member
I am using the Uploadify Plugin to Upload files. although this might be a very basic question i am unable to understand and implement to get it work to upload the files. I want to achieve the following using uploadifywhen a user select the file i want it to be directly uploaded to the target path using PHP.now i am using the following code.\[code\]<html><head><link rel="stylesheet" href="http://stackoverflow.com/questions/3644162/css/uploadify.css" type="text/css" /><script type="text/javascript" src="http://stackoverflow.com/questions/3644162/js/jquery-1.3.2.min.js"></script><script type="text/javascript" src="http://stackoverflow.com/questions/3644162/js/jquery.uploadify.v2.1.0.min.js"></script><script type="text/javascript" src="http://stackoverflow.com/questions/3644162/js/swfobject.js"></script></head><script type="text/javascript">$(document).ready(function() { $('#someID').uploadify({ 'uploader': 'img/uploadify.swf', 'script': 'uploadify.php', 'folder': 'upload', 'cancelImg': 'img/cancel.png', 'auto': 'true', 'fileDesc': 'jpg/jpeg', 'displayData': 'percentage', 'fileExt': "*.jpg;*.jpeg", 'sizeLimit' : '8388608' }); }); </script><body><form id="someID" action="uploadify.php" method="post" enctype="multipart/form-data"> <input type="file" name="file" id="fileUpload1"/><p><input type="submit" name="submit" value="http://stackoverflow.com/questions/3644162/Upload" /></p> </form></body>\[/code\]and this is the code for uploadify.php \[code\]if (!empty($_FILES)) { $tempFile = $_FILES['file']['tmp_name']; $targetPath = $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/'; $targetFile = str_replace('//','/',$targetPath) . $_FILES['file']['name']; move_uploaded_file($tempFile,$targetFile); echo "1";\[/code\]I just want to upload a single file. do i need to include the check.php for that. how do i make something like when a user select the image file it directly performs the operation and move to the designated directory. P.S: I have the very basic understanding of javascript and jquery. :)Note : file uploading problem is solved now. \[quote\] how do i limit the user from uploading just one file on one button, i want something like when a user select the file and it gets uploaded that button should be disabled or something\[/quote\]EDIT : for limiting the users from uploading multiple file in a button i added this code and it is still uploading many files as and when users select multiple times. here is my code.\[code\]<script type="text/javascript">$(document).ready(function() { $('#someID').uploadify({ 'uploader': 'img/uploadify.swf', 'script': 'uploadify.php', 'folder': 'upload', 'cancelImg': 'img/cancel.png', 'auto': 'true', 'fileDesc': 'jpg/jpeg', 'displayData': 'percentage', 'fileExt': "*.jpg;*.jpeg", 'sizeLimit' : '8388608', 'fileDataName' : 'file', onSelect : function(){ $("#someID input").attr("disabled", true); } }); }); </script>\[/code\]what is wrong with it?
 
Back
Top