I am looking for complete upload script for uploading the videos on the server. ( It could have progress bar and also proper way of handing internet connection if it goes down for few seconds..) Are there already such scripts or good set of stacks available which one could download free or purchase or some expert can write quickly in hour ?
Here is the code I wrote but not sure how to write further to make things work..
In rev,
Code: Select all
put baseURL & "/uploadVideo.php" into urlString
post url("binfile:" & nameOfFile) to URL (urlString)
When we use the File Browse Control in HTML Browser then we use the following PHP Script to upload
Code: Select all
<?php
set_time_limit(3600);
$filename = $_FILES['userfile']['name'];
if($_FILES['userfile']['error']!= UPLOAD_ERR_OK){
error_log("failed");
}
if(move_uploaded_file($_FILES['userfile']['tmp_name'], "./".$filename)){
echo 'Your file upload was successful'; // It worked.
}
else{
echo 'There was an error during the file upload. Please try again.'; // It failed :(.
}
?>
Is there some one who already have such stack available ?