Jump to content

Uploadify with UniGUI?


innocon

Recommended Posts

Hello,

 

since some time I use UniGUI for web development. For a project I use Uploadify for uploading files from client to customer, since it has more feedback to customer than the built-in uploader of UniGUI.

For the Uploadify part I use ASP.net on IIS. Not as keen as I want, but it works.

 

Please could you help me some steps in the right direction implementing Uploadify in a Unigui project? Client side is no problem, I can add the code to UniHTMLFrame, but I cannot find where to handle server side of the Uploadify call. Is it possible to hook on at a low level to server Get or Post?

 

Thanks for your help or tips,

 

regards,

 

Jan Rutger

Link to comment
Share on other sites

Hi Farshad,

 

thanks for your quick reply.

 

Documentation of Uploadify client side: http://www.uploadify.com/documentation/uploadify/implementing-uploadify/

Documentation of Uploadify server side (this should be the hardest part for uniGUI): http://www.uploadify.com/documentation/uploadify/customizing-the-server-side-upload-script/

 

Beside PHP there is also a ASP.NET server page available in Uploadify.

 

At the client side you point to a server page where the uploaded file will be stored to disc (in the example below: uploadify.php).

 

$(function() {

$('#file_upload').uploadify({

'swf' : 'uploadify.swf',

'uploader' : 'uploadify.php'

// Put your options here

});

});

 

 

Kind regards,

 

Jan Rutger

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...