Page 1 of 1

How to upload video from Rev to Server

Posted: Mon Sep 24, 2012 8:25 am
by pkmittal
Hi, I posted the question in iOs Category but did not get any response.. So I am posting in Windows cateogry.

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 :(.
  }
?>

But here we need to change... Perhaps we need to post the video data in chunk because there may be some limit for post data... and use some header multipart form data.. etc.....

Is there some one who already have such stack available ?

Re: How to upload video from Rev to Server

Posted: Mon Sep 24, 2012 5:14 pm
by mwieder
Hi, I posted the question in iOs Category but did not get any response.. So I am posting in Windows cateogry.
:shock:

Re: How to upload video from Rev to Server

Posted: Mon Sep 24, 2012 5:56 pm
by Klaus
Don't ask, Mark 8)