Rad Upload 4.02 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Rad Upload 4.02 (Default branch)
# 1  
Old 06-02-2008
Rad Upload 4.02 (Default branch)

Rad Upload is a drag and drop file upload applet with a progress monitor. Advanced features include recursive upload of directories and setting upload limits at the client side. Bandwidth saving options include filtering out unwanted file types, compression, and resizing images before they are uploaded. Both HTTP/HTTPS and FTP protocols are supported, and files can be uploaded using copy and paste, as well as with an optional traditional browse button. License: Other/Proprietary License with Free Trial Changes:
There are two bugfixes related to FTP uploads (HTTP uploads were not affected). These were related to redirecting on upload completion and a minor incompatibility with some FTP servers. A new code signing certificate valid until June 2010 has been used to sign the applet (the current certificate expires June 10, 2008).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to upload

Hi, new to the forum and new to unix. I have a question. I am using PuTTY on my local machine and I want to upload a file to a remote server. Whats the best way to do it? SFTP??? I'm lost on this one. I just want to put one file on the server whats the command to do so? thanks (2 Replies)
Discussion started by: mike314
2 Replies
Login or Register to Ask a Question
Dancer::Request::Upload(3pm)				User Contributed Perl Documentation			      Dancer::Request::Upload(3pm)

NAME
Dancer::Request::Upload - class representing file uploads requests DESCRIPTION
This class implements a representation of file uploads for Dancer. These objects are accesible within route handlers via the request->uploads keyword. See Dancer::Request for details. METHODS
filename Returns the filename as sent by the client. basename Returns basename for "filename". tempname Returns the name of the temporary file the data has been saved to. This will be in e.g. /tmp, and given a random name, with no file extension. link_to Creates a hard link to the temporary file. Returns true for success, false for failure. $upload->link_to('/path/to/target'); file_handle Returns a read-only file handle on the temporary file. content Returns a scalar containing the contents of the temporary file. copy_to Copies the temporary file using File::Copy. Returns true for success, false for failure. $upload->copy_to('/path/to/target') size The size of the upload, in bytes. headers Returns a hash ref of the headers associated with this upload. type The Content-Type of this upload. AUTHORS
This module as been writen by Alexis Sukrieh, heavily based on Plack::Request::Upload. Kudos to Plack authors. SEE ALSO
Dancer perl v5.14.2 2011-11-30 Dancer::Request::Upload(3pm)