upload pro
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 638
XUpload 2.6
XUpload - an advanced progress bar indicator for web based file uploads written on Perl more>>
XUpload - an advanced progress bar indicator for web based file uploads written on Perl. Including such features like real-time progress bar, amount of transferred bytes, approx. upload speed, transfer failure detection. Only for Unix/Linux webservers.
XUpload is a tool that allows you to view the progress indicator.
Main features:
- Real time progress bar
- Upload speed meter
- Total/Transfered bytes counter
- Transfer failure detection
- Compatible with well known browsers (IE, Opera, Mozilla)
- Integration with PHP code
- Large files upload (No limitations!)
- Works on a standard server or a secure server (https)
- Can be integrated with absolutely any framework (login systems)
- Popup upload progress bar
<<lessXUpload is a tool that allows you to view the progress indicator.
Main features:
- Real time progress bar
- Upload speed meter
- Total/Transfered bytes counter
- Transfer failure detection
- Compatible with well known browsers (IE, Opera, Mozilla)
- Integration with PHP code
- Large files upload (No limitations!)
- Works on a standard server or a secure server (https)
- Can be integrated with absolutely any framework (login systems)
- Popup upload progress bar
Download (45.4KB)
Added: 2009-04-29 License: Freeware Price:
207 downloads
tesUpload 1.1
tesUpload allows asynchronous file uploads with an AJAX progress bar in PHP. more>>
tesUpload project allows asynchronous file uploads with an AJAX progress bar in PHP.
One of the few things that PHP lacks that other web environments have, is the ability to report the progress of a file upload.
This means that file uploads, especially uploads of larger files, can be extremely frustrating for end users when they dont know if the upload is progressing or if it has stalled or if it has even started.
tesUpload solves this problem by using a perl script that handles the progress reporting. Dont worry if you are a hardcore PHP programmer, you wont have to touch the perl code at all. Just put the cgi-script in your cgi-bin folder and forget about it.
For a more in-depth explanation of how this works, see my original blog post on the subject.
<<lessOne of the few things that PHP lacks that other web environments have, is the ability to report the progress of a file upload.
This means that file uploads, especially uploads of larger files, can be extremely frustrating for end users when they dont know if the upload is progressing or if it has stalled or if it has even started.
tesUpload solves this problem by using a perl script that handles the progress reporting. Dont worry if you are a hardcore PHP programmer, you wont have to touch the perl code at all. Just put the cgi-script in your cgi-bin folder and forget about it.
For a more in-depth explanation of how this works, see my original blog post on the subject.
Download (0.016MB)
Added: 2007-02-18 License: MPL (Mozilla Public License) Price:
981 downloads
mod_upload
mod_upload is an input filter module for multipart/form-data, as submitted from File Upload forms on the Web. more>>
mod_upload is an input filter module for multipart/form-data, as submitted from File Upload forms on the Web. It decodes the data, so the handler gets the file itself without the MIME encoding. Other fields from the form are provided as a table of names/values.
A second filter, formerly mod_tmpfile, is available to store the file contents in a tempfile. This ensures that all the Form data are available when the file is processed, and is useful for handlers that need to run synchronously.
Example:
Consider a simple HTML file upload fragment:
< form method="post" action="my-handler" enctype="multipart/form-data" >
Your name: < input name="name" >
Your email address: < input name="email" >
< br >File: < input name="file" type="file" >
< br >Additional comments < textarea rows=4 cols=40 name="comments" >
< /textarea >
< /form >
This will generate an HTTP POST request containing an uploaded file with three additional user-supplied text fields. The data are MIME-encoded and normally the Handler has to decode them.
upload-filter
Using upload-filter as an input filter, the handler will be passed instead the decoded file contents. It can access the other Form data (the values of name, email and comments through a table exported by the function
apr_table_t* mod_upload_form(request_rec* r)
which is available to any Handler or other module that needs the data.
Configuration:
To insert mod_upload, use the AddInputFilter or SetInputFilter directives. For pipelined applications,
SetInputFilter upload-filter
or for synchronous applications, add both upload and tmpfile
SetInputFilter tmpfile-filter;upload-filter
mod_upload defines two further configuration directives:
UploadField
The name of the file upload field in the HTML form to be processed
UploadFormSize
The size of the table allocated for form elements other than the upload. This is advisory; the APR can handle automatic resizing of tables.
<<lessA second filter, formerly mod_tmpfile, is available to store the file contents in a tempfile. This ensures that all the Form data are available when the file is processed, and is useful for handlers that need to run synchronously.
Example:
Consider a simple HTML file upload fragment:
< form method="post" action="my-handler" enctype="multipart/form-data" >
Your name: < input name="name" >
Your email address: < input name="email" >
< br >File: < input name="file" type="file" >
< br >Additional comments < textarea rows=4 cols=40 name="comments" >
< /textarea >
< /form >
This will generate an HTTP POST request containing an uploaded file with three additional user-supplied text fields. The data are MIME-encoded and normally the Handler has to decode them.
upload-filter
Using upload-filter as an input filter, the handler will be passed instead the decoded file contents. It can access the other Form data (the values of name, email and comments through a table exported by the function
apr_table_t* mod_upload_form(request_rec* r)
which is available to any Handler or other module that needs the data.
Configuration:
To insert mod_upload, use the AddInputFilter or SetInputFilter directives. For pipelined applications,
SetInputFilter upload-filter
or for synchronous applications, add both upload and tmpfile
SetInputFilter tmpfile-filter;upload-filter
mod_upload defines two further configuration directives:
UploadField
The name of the file upload field in the HTML form to be processed
UploadFormSize
The size of the table allocated for form elements other than the upload. This is advisory; the APR can handle automatic resizing of tables.
Download (0.011MB)
Added: 2006-04-18 License: GPL (GNU General Public License) Price:
732 downloads
NeatUpload 1.2.18
NeatUpload allows ASP.NET developers to stream uploaded files to disk and allows users to monitor upload progress. more>>
NeatUpload allows ASP.NET developers to stream uploaded files to disk and allows users to monitor upload progress.
NeatUpload works under Monos XSP/mod_mono as well as Microsofts ASP.NET implementation and features two custom controls. InputFile allows the user to select a file to upload and ProgressBar displays the upload progress either inline or in a popup.
ProgressBar even allows users without JavaScript to see upload progress.
Main features:
- Streams uploads directly to disk. This conserves server memory, allows larger uploads, and helps prevent Denial of Service attacks.
- Integrates easily with existing applications. Replace < HtmlInputFile > with < NeatUpload:InputFile > and add a < NeatUpload:ProgressBar > to your ASP.NET pages. Then use the TmpFile and FileName members of InputFile to access the uploaded file and its original name.
- Supports both inline and popup progress bars.
- Falls back to using ASP.NETs HttpPostedFile if the NeatUpload HttpModule is not present. This makes it easy to remove the HttpModule if for some reason it causes problems.
- Supports customization through styles and custom progress display pages.
- Does not require JavaScript.
- Works under Monos XSP/mod_mono and Microsofts ASP.NET.
- Removes uploaded files when an error occurs. This helps prevent disk space leakage.
- Licensed under the Lesser General Public License (LGPL), a business-friendly open source license.
Enhancements:
- This version fixes a bug where using HttpResponse.TransmitFile() could cause the entire transmitted file to be buffered in memory temporarily, and a bug where the script elements produced by NeatUploads ProgressBar control were not XHTML compliant.
- The fix for the TransmitFile() issue has the small side effect that sometimes responses larger than 1MB are not buffered.
<<lessNeatUpload works under Monos XSP/mod_mono as well as Microsofts ASP.NET implementation and features two custom controls. InputFile allows the user to select a file to upload and ProgressBar displays the upload progress either inline or in a popup.
ProgressBar even allows users without JavaScript to see upload progress.
Main features:
- Streams uploads directly to disk. This conserves server memory, allows larger uploads, and helps prevent Denial of Service attacks.
- Integrates easily with existing applications. Replace < HtmlInputFile > with < NeatUpload:InputFile > and add a < NeatUpload:ProgressBar > to your ASP.NET pages. Then use the TmpFile and FileName members of InputFile to access the uploaded file and its original name.
- Supports both inline and popup progress bars.
- Falls back to using ASP.NETs HttpPostedFile if the NeatUpload HttpModule is not present. This makes it easy to remove the HttpModule if for some reason it causes problems.
- Supports customization through styles and custom progress display pages.
- Does not require JavaScript.
- Works under Monos XSP/mod_mono and Microsofts ASP.NET.
- Removes uploaded files when an error occurs. This helps prevent disk space leakage.
- Licensed under the Lesser General Public License (LGPL), a business-friendly open source license.
Enhancements:
- This version fixes a bug where using HttpResponse.TransmitFile() could cause the entire transmitted file to be buffered in memory temporarily, and a bug where the script elements produced by NeatUploads ProgressBar control were not XHTML compliant.
- The fix for the TransmitFile() issue has the small side effect that sometimes responses larger than 1MB are not buffered.
Download (0.50MB)
Added: 2007-06-16 License: LGPL (GNU Lesser General Public License) Price:
936 downloads
Flickr::Upload 1.22
Flickr::Upload is a Perl module to upload images to flickr.com more>>
Flickr::Upload is a Perl module to upload images to flickr.com
SYNOPSIS
use Flickr::Upload;
my $ua = Flickr::Upload->new( key => 90909354, secret => 37465825 );
$ua->upload(
photo => /tmp/image.jpg,
auth_token => $auth_token,
tags => me myself eye,
is_public => 1,
is_friend => 1,
is_family => 1
) or die "Failed to upload /tmp/image.jpg";
<<lessSYNOPSIS
use Flickr::Upload;
my $ua = Flickr::Upload->new( key => 90909354, secret => 37465825 );
$ua->upload(
photo => /tmp/image.jpg,
auth_token => $auth_token,
tags => me myself eye,
is_public => 1,
is_friend => 1,
is_family => 1
) or die "Failed to upload /tmp/image.jpg";
Download (0.073MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1047 downloads
Thin FTP Upload 2.0
Thin FTP Upload is an FTP upload applet designed for integration with Web applications. more>>
Thin FTP Upload project is an FTP upload applet designed for integration with Web applications.
Do you want to quickly add FTP file upload functionality to your website? Then Thin FTP Applet, a product that can be installed in less than 2 minutes is the product to choose.
To send files using the File Transfer Protocol, all your users have to do is to drag and drop them onto the designated area of the browser. Entire directory tree and a virtually unlimited number of files totalling several giga bytes can be transfered in this manner.
If your server is configued to allow annoymous transfers your users dont even have to login. Else they can login interactively by entering their username and password. Or else you can make it easier for them by using a single predefined username and password for each user so that multiple accounts do not have to be created.
Whats New in 1.02 Stable Release:
- The new version of the applet aims for improved compatibility with a wider range of FTP servers, epecially those servers deployed on Windows.
- The new version includes a subtle change in the way that the applet handles the trailing slash in the URL.
Whats New in 2.0 Development Release:
- Interrupted FTP uploads can now be resumed.
- A new progress monitor has been added.
- The applet loading mechanism has been changed, and the applet can now be configured using HTML parameters.
<<lessDo you want to quickly add FTP file upload functionality to your website? Then Thin FTP Applet, a product that can be installed in less than 2 minutes is the product to choose.
To send files using the File Transfer Protocol, all your users have to do is to drag and drop them onto the designated area of the browser. Entire directory tree and a virtually unlimited number of files totalling several giga bytes can be transfered in this manner.
If your server is configued to allow annoymous transfers your users dont even have to login. Else they can login interactively by entering their username and password. Or else you can make it easier for them by using a single predefined username and password for each user so that multiple accounts do not have to be created.
Whats New in 1.02 Stable Release:
- The new version of the applet aims for improved compatibility with a wider range of FTP servers, epecially those servers deployed on Windows.
- The new version includes a subtle change in the way that the applet handles the trailing slash in the URL.
Whats New in 2.0 Development Release:
- Interrupted FTP uploads can now be resumed.
- A new progress monitor has been added.
- The applet loading mechanism has been changed, and the applet can now be configured using HTML parameters.
Download (0.054MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1109 downloads
Apache2::UploadProgress 0.2
Apache2::UploadProgress is Perl module to track the progress and give realtime feedback of file uploads. more>>
Apache2::UploadProgress is Perl module to track the progress and give realtime feedback of file uploads.
SYNOPSIS
In Apache:
PerlLoadModule Apache2::UploadProgress
PerlPostReadRequestHandler Apache2::UploadProgress
In your HTML form:
< script src="/UploadProgress/progress.js" >< /script >
< link type="text/css" href="/UploadProgress/progress.css"/ >
< form action="/cgi-bin/script.cgi"
method="post"
enctype="multipart/form-data"
onsubmit="return startEmbeddedProgressBar(this)" >
< input type="file" name="file"/ >
< input type="submit" name=".submit"/ >
< /form >
< div id="progress" >< /div >
This module allows you to track the progress of a file upload in order to provide a user with realtime updates on the progress of their file upload.
The information that is provided by this module is very basic. It just includes the total size of the upload, and the current number of bytes that have been received. However, this information is sufficient to display lots of information about the upload to the user. At its simplest, you can trigger a popup window that will automatically refresh until the upload completes.
However, popups can be a problem sometimes, so it is also possible to embed a progress monitor directly into the page using some JavaScript and AJAX calls. Examples using both techniques are discussed below in the EXAMPLES section.
<<lessSYNOPSIS
In Apache:
PerlLoadModule Apache2::UploadProgress
PerlPostReadRequestHandler Apache2::UploadProgress
In your HTML form:
< script src="/UploadProgress/progress.js" >< /script >
< link type="text/css" href="/UploadProgress/progress.css"/ >
< form action="/cgi-bin/script.cgi"
method="post"
enctype="multipart/form-data"
onsubmit="return startEmbeddedProgressBar(this)" >
< input type="file" name="file"/ >
< input type="submit" name=".submit"/ >
< /form >
< div id="progress" >< /div >
This module allows you to track the progress of a file upload in order to provide a user with realtime updates on the progress of their file upload.
The information that is provided by this module is very basic. It just includes the total size of the upload, and the current number of bytes that have been received. However, this information is sufficient to display lots of information about the upload to the user. At its simplest, you can trigger a popup window that will automatically refresh until the upload completes.
However, popups can be a problem sometimes, so it is also possible to embed a progress monitor directly into the page using some JavaScript and AJAX calls. Examples using both techniques are discussed below in the EXAMPLES section.
Download (0.025MB)
Added: 2006-09-16 License: Perl Artistic License Price:
1133 downloads
Pict Uploader 1.2.5
Pict Uploader is a combination of The Pict.com FireFox Add-on and Mozilla FireFox Web browser to let you make screenshots with one click and automatically upload them to Pict.com image hosting. more>>
Pict Uploader 1.2.5 is a combination of The Pict.com FireFox Add-on and Mozilla FireFox Web browser to let you make screenshots with one click and automatically upload them to Pict.com image hosting. It also makes it possible right-click and upload any image you see online or your local image with automatic link generation for forums, websites, etc.
Major Features:
- Capture screenshots of websites
- Capture screenshot of whole website
- Capture screenshot of visible area
- Capture screenshot of custom selected area
- Edit screenshots
- Save screenshots in jpg/png formats
- Automatically upload screenshots to Pict.com
- Right-click and upload to Pict.com any image you see in your browser
- Link and share images on forums, blogs, social networks, etc.
- Upload images from your computer.
- Automatic link generation for forums, websites, etc. (Allows to insert image from local folder into forums with one right-click).
Enhancements:
- Firefox 3.5 is now supported
- All requested features were released
Added: 2009-07-24 License: MPL Price: FREE
6 downloads
Rad Upload Lite 3.12
Rad Upload is a drag and drop file upload applet with a progress monitor. more>>
Rad Upload is a drag and drop file upload applet with a progress monitor. Advanced features of Rad Upload Lite 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.
Main features:
- Drag and Drop
- Progress Bar
- Applet Size
- Copy and Paste
- FTP upload
- SSL
- Upload Folders
- Redirect After Upload
- Image Scaling
- Client Side Filtering
- Display Thumbnails
- GZip Compression
- Javascript Calls
Installation:
First make sure that your server is correctly configured to accept file uploads. With sites that use PHP you can make use of the included test.html and upload.php files to test your server configuration.
Depending on the version you have downloaded move dnd.jar, dndlite.jar or dndplus.jar onto your web space. Also move the included php files onto the same location as the jar file. Next open applet.php in your favourite text editor and change the url parameter to match your server-side upload handler. Thats it!
The upload.php is a sample PHP script provided to get you started on drag and drop file upload. You may need to modify upload.php to suite the needs of your website or web application.
If you prefer to use perl as your server side handler please copy upload.cgi to your /cgi-bin/ directory and change permissions to 755. Perl upload handling can be tested with test-perl.html
Each licence of Rad Upload Lite, Rad Upload and Rad Upload Plus allows you to install the applet on exactly one website.
Enhancements:
- A minor bug in client side filtering (by file type) and an incompatibility with tnftpd on Mac OS X were fixed.
<<lessBandwidth 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.
Main features:
- Drag and Drop
- Progress Bar
- Applet Size
- Copy and Paste
- FTP upload
- SSL
- Upload Folders
- Redirect After Upload
- Image Scaling
- Client Side Filtering
- Display Thumbnails
- GZip Compression
- Javascript Calls
Installation:
First make sure that your server is correctly configured to accept file uploads. With sites that use PHP you can make use of the included test.html and upload.php files to test your server configuration.
Depending on the version you have downloaded move dnd.jar, dndlite.jar or dndplus.jar onto your web space. Also move the included php files onto the same location as the jar file. Next open applet.php in your favourite text editor and change the url parameter to match your server-side upload handler. Thats it!
The upload.php is a sample PHP script provided to get you started on drag and drop file upload. You may need to modify upload.php to suite the needs of your website or web application.
If you prefer to use perl as your server side handler please copy upload.cgi to your /cgi-bin/ directory and change permissions to 755. Perl upload handling can be tested with test-perl.html
Each licence of Rad Upload Lite, Rad Upload and Rad Upload Plus allows you to install the applet on exactly one website.
Enhancements:
- A minor bug in client side filtering (by file type) and an incompatibility with tnftpd on Mac OS X were fixed.
Download (0.066MB)
Added: 2007-06-01 License: Other/Proprietary License with Source Price:
875 downloads
Easy PHP Upload 2.28
Easy PHP Upload is a PHP upload class that can be used to upload files with a client browser to a remote Web server. more>>
Easy PHP Upload class (the old name) can be used to upload files with a client browser to a remote webserver location.
The features in the first release are: file-extension check, maximum file- size limitation and a flexible error reporting system. The class is extremely easy to use and comes together with full working examples. Sinds the second version is it possible to upload multiple files.
Check the class file for all update information. The version 2.22 (and higher) is compatible with the PHP directive "register_globals=off". NEW functions for the multiple upload function: rename files and filename validation.
With the updated (ver. 2.25) photo upload extension its possible to upload photos (logos) and resize them to the maximum X and Y size.
Enhancements:
- Two more languages (for the messages) were added to the class: Brazilian Portuguese and Bulgarian.
- All translations (except de, nl, en, and fr) are stored in external files.
- The new function to create non-existing directories was not working for the photo upload extension and has been fixed.
- The check_dir() method is more flexible now and can be used for more locations.
- The process_image() method from the photo_upload extension was modified to use this check now.
<<lessThe features in the first release are: file-extension check, maximum file- size limitation and a flexible error reporting system. The class is extremely easy to use and comes together with full working examples. Sinds the second version is it possible to upload multiple files.
Check the class file for all update information. The version 2.22 (and higher) is compatible with the PHP directive "register_globals=off". NEW functions for the multiple upload function: rename files and filename validation.
With the updated (ver. 2.25) photo upload extension its possible to upload photos (logos) and resize them to the maximum X and Y size.
Enhancements:
- Two more languages (for the messages) were added to the class: Brazilian Portuguese and Bulgarian.
- All translations (except de, nl, en, and fr) are stored in external files.
- The new function to create non-existing directories was not working for the photo upload extension and has been fixed.
- The check_dir() method is more flexible now and can be used for more locations.
- The process_image() method from the photo_upload extension was modified to use this check now.
Download (0.013MB)
Added: 2006-01-26 License: GPL (GNU General Public License) Price:
1404 downloads
class.upload.php 0.24
class.upload.php manipulates uploads and images very easily. more>>
class.upload.php manipulates uploads and images very easily. It can convert and resize uploaded images in many ways. It uses the GD library.
How does it work?
- the class constructor upload handles a uploaded file (it can also handle a local file)
some optional parameters can be set up to act on the file during the process
- the process is called with as an argument the destination directory on the server. If some parameters have been set up, the class will rename, resize, convert files and images
- when the uploaded file is not needed anymore, we can delete it using clean.
Why use this class?
- with one uploaded file, you can do as many copies, convertions, resizing you want.
- you can resize each image dimension, or both, keeping the image ratio or not.
- you can choose to resize an image only if it is bigger -or smaller- than the wanted sizes
- you can manipulate the image in many ways, play with colors, add labels and watermarks...
- its use is simplistic but powerful
- a lot of variables are set up during the process. You can retrieve all these values after a process.
- error messages are understandable, and a variable log allows you to see what the class does.
- it is already widely used on Internet
- it is free
Enhancements:
- This release fixes a few bugs and adds some improvements.
- It is now possible to set a background color for the pictures and to use replacement tokens in the text labels.
- Some new cropping options have been implemented.
<<lessHow does it work?
- the class constructor upload handles a uploaded file (it can also handle a local file)
some optional parameters can be set up to act on the file during the process
- the process is called with as an argument the destination directory on the server. If some parameters have been set up, the class will rename, resize, convert files and images
- when the uploaded file is not needed anymore, we can delete it using clean.
Why use this class?
- with one uploaded file, you can do as many copies, convertions, resizing you want.
- you can resize each image dimension, or both, keeping the image ratio or not.
- you can choose to resize an image only if it is bigger -or smaller- than the wanted sizes
- you can manipulate the image in many ways, play with colors, add labels and watermarks...
- its use is simplistic but powerful
- a lot of variables are set up during the process. You can retrieve all these values after a process.
- error messages are understandable, and a variable log allows you to see what the class does.
- it is already widely used on Internet
- it is free
Enhancements:
- This release fixes a few bugs and adds some improvements.
- It is now possible to set a background color for the pictures and to use replacement tokens in the text labels.
- Some new cropping options have been implemented.
Download (0.042MB)
Added: 2007-05-27 License: GPL (GNU General Public License) Price:
885 downloads
PHP Uploader Downloader 2.0
PHP Uploader Downloader provides a script which allow your users to upload files to a selected directory. more>>
PHP Uploader Downloader provides a script which allow your users to upload files to a selected directory.
Allow your users to upload files to a selected directory. This script also creates a list of all files uploaded so they can be downloaded. Current features for uploading are size limitation, extension limitation, and stopping file overwriting.
Installation
$extlimit If you want to limit the extions of files uploaded set this to yes
$limitedext If you set $extlimit to yes then add edit extensions. Just do ,".ext" in the array to add extion.
$sizelimit If you want a size limit set this to yes.
$sizebytes If you want have size limit set to yes set this to the number of bytes you want the limit to be.
$dl This is the url to where files are uploaded
$absolute_path This is the absolute path to where files are uploaded
$websiteurl Set to your website url so that the script can link back to your site
$websitename Set to your website name so it can link back to your website
Enhancements:
- Added ability to limit extensions of files uploaded.
<<lessAllow your users to upload files to a selected directory. This script also creates a list of all files uploaded so they can be downloaded. Current features for uploading are size limitation, extension limitation, and stopping file overwriting.
Installation
$extlimit If you want to limit the extions of files uploaded set this to yes
$limitedext If you set $extlimit to yes then add edit extensions. Just do ,".ext" in the array to add extion.
$sizelimit If you want a size limit set this to yes.
$sizebytes If you want have size limit set to yes set this to the number of bytes you want the limit to be.
$dl This is the url to where files are uploaded
$absolute_path This is the absolute path to where files are uploaded
$websiteurl Set to your website url so that the script can link back to your site
$websitename Set to your website name so it can link back to your website
Enhancements:
- Added ability to limit extensions of files uploaded.
Download (0.004MB)
Added: 2007-04-28 License: Free To Use But Restricted Price:
912 downloads
PurePostPro 1.4
PurePostPro provides an upload post-processor for Pure-FTPd. more>>
PurePostPro provides an upload post-processor for Pure-FTPd.
PurePostPro is a Perl/MySQL script that enables user uploads to be managed more easily. New uploads are logged in a MySQL database, and duplicate files are tracked using MD5 checksums.
The script has two main functions:
1. It logs all incoming uploads to a two-table database;
2. It calculates an MD5 checksum for each file and stores that in the database too.
<<lessPurePostPro is a Perl/MySQL script that enables user uploads to be managed more easily. New uploads are logged in a MySQL database, and duplicate files are tracked using MD5 checksums.
The script has two main functions:
1. It logs all incoming uploads to a two-table database;
2. It calculates an MD5 checksum for each file and stores that in the database too.
Download (0.050MB)
Added: 2007-04-30 License: GPL (GNU General Public License) Price:
907 downloads
lopster-tools 1.0
lopster-tools is a set of tools for use with Lopster that allows users to view statistics for download. more>>
lopster-tools is a set of tools for use with Lopster that allows users to view statistics for download and upload transfer, incomplete and finished files, how many MB are downloaded or uploaded, and the difference between down- and upload, amongst other features.
<<less Download (0.60MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1571 downloads
t@b Directory Uploader 0.952
t@b Directory Uploader is a software that can upload a directory to a FTP server. more>>
t@b Directory Uploader is a software that can upload a directory to a FTP server.
You can upload a complete directory to an FTP server, including all subdirectories from a user-friendly interface. Features automatic (no user input required) retry until all files have successfully uploaded.
This program runs on Mac OS X, Windows and Linux
Example:
FTP Host Name: ftp.website.com (no ftp://)
FTP Host Path: foldername (if no folder type / instead)
FTP User Name: ftpusername
FTP Password: ftppassword
<<lessYou can upload a complete directory to an FTP server, including all subdirectories from a user-friendly interface. Features automatic (no user input required) retry until all files have successfully uploaded.
This program runs on Mac OS X, Windows and Linux
Example:
FTP Host Name: ftp.website.com (no ftp://)
FTP Host Path: foldername (if no folder type / instead)
FTP User Name: ftpusername
FTP Password: ftppassword
Download (0.15MB)
Added: 2006-03-22 License: Freeware Price:
1356 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above upload pro search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed