upload movies
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 880
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
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
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
Ipod MovieMaker 0.1 Beta
Ipod MovieMaker project is a dialog windows bash script which allows you to merge *.txt subtitles with all formats of movie file more>>
Ipod MovieMaker project is a dialog windows bash script which allows you to merge *.txt subtitles with all formats of movie files and save it in avi format. You may convert all kinds of video to .mp4 which is Ipod Video compatible format.
You will be only questioned about the location of a source movie, subtitles, encoding (default WINDOWS-1250), font location (default /home/$USER/.mplayer/font/subfont.ttf), and where to save reasult .mp4 file. You can have each work done seperatly or have whole process done from hardcoding subtitles to encoding to ipod format.
Installation:
- Make sure that you have mencoder and ffmpeg compiled with libxvid, libfaac codecs enable
- Make sure you have proper true type font installed in /home/$USER/.mplayer/font directory
- Make sure you have compiled gtkpod with libfaac codec to upload movies on Ipod video
- to get this script working write this in your console
chmod 755 ipodmoviemaker
cp ipodmoviemaker /usr/bin/
<<lessYou will be only questioned about the location of a source movie, subtitles, encoding (default WINDOWS-1250), font location (default /home/$USER/.mplayer/font/subfont.ttf), and where to save reasult .mp4 file. You can have each work done seperatly or have whole process done from hardcoding subtitles to encoding to ipod format.
Installation:
- Make sure that you have mencoder and ffmpeg compiled with libxvid, libfaac codecs enable
- Make sure you have proper true type font installed in /home/$USER/.mplayer/font directory
- Make sure you have compiled gtkpod with libfaac codec to upload movies on Ipod video
- to get this script working write this in your console
chmod 755 ipodmoviemaker
cp ipodmoviemaker /usr/bin/
Download (0.003MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
848 downloads
lzMovieDB 1.1
lzMovieDB provides a Web-based database for movies and series. more>>
lzMovieDB provides a Web-based database for movies and series.
lzMovieDB is an PHP/MySQL Database script to sort and archive movies and series.
It grabs the user rating and movie cover from IMDB (Internet Movie Database => www.imdb.com).
Main features:
- Categorys
- show newest entrys
- search function
- sort by genre
- two languages (english,german)
- templates
- IMDB rating
- IMDB cover
<<lesslzMovieDB is an PHP/MySQL Database script to sort and archive movies and series.
It grabs the user rating and movie cover from IMDB (Internet Movie Database => www.imdb.com).
Main features:
- Categorys
- show newest entrys
- search function
- sort by genre
- two languages (english,german)
- templates
- IMDB rating
- IMDB cover
Download (0.066MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
923 downloads
PHP Personal Movie Database 0.5
PHP Personal Movie Database lets you organise (add/edit/delete) and display your movies list (DVD, DIVX, SVCD, VCD, etc.). more>>
PHP Personal Movie Database lets you organise (add/edit/delete) and display your movies list (DVD, SVCD, VCD, DIVX, etc.).
Features include the ability to retrive information (title, actor, poster, etc.) from IMDB, to display a poster of the movie on mouseover, and more.
Enhancements:
- Search the IMDB now fills in fields if an exact match is found.
- The subtitles icon link was changed to subscene.com.
- FPDF was updated to version 1.53.
- PDF output was improved.
- The link to non-available posters was fixed.
- Posters are now only deleted if they are stored.
- Delete/edit function buttons were fxed.
- An issue where language, year, and ititle fields were forgotten in edit mode was fixed.
- The poster mouseover now works in Opera browsers.
- Poster URL retrieval was fixed.
<<lessFeatures include the ability to retrive information (title, actor, poster, etc.) from IMDB, to display a poster of the movie on mouseover, and more.
Enhancements:
- Search the IMDB now fills in fields if an exact match is found.
- The subtitles icon link was changed to subscene.com.
- FPDF was updated to version 1.53.
- PDF output was improved.
- The link to non-available posters was fixed.
- Posters are now only deleted if they are stored.
- Delete/edit function buttons were fxed.
- An issue where language, year, and ititle fields were forgotten in edit mode was fixed.
- The poster mouseover now works in Opera browsers.
- Poster URL retrieval was fixed.
Download (0.20MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
757 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
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
3gp movie wizard 1.3
3gp movie wizard is a small perl/kommander script that helps you to convert almost any movie format to 3gp movie. more>>
3gp movie wizard is a small perl/kommander script that helps you to convert almost any movie format to 3gp movie, suitable for watching on the modern mobile phones (tested only on Motorola V360 but should work with any mobile with 3gp support and 176 pixel wide screen).
It should be extremely easy to use, yet offer advanced options such as a good subtitle support and video equalizer.
<<lessIt should be extremely easy to use, yet offer advanced options such as a good subtitle support and video equalizer.
Download (0.13MB)
Added: 2006-02-21 License: GPL (GNU General Public License) Price:
1399 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
WWW::Yahoo::Movies 0.02
WWW::Yahoo::Movies is a Perl extension to get Yahoo! Movies information. more>>
WWW::Yahoo::Movies is a Perl extension to get Yahoo! Movies information.
SYNOPSIS
use WWW::Yahoo::Movies;
my $movie = new WWW::Yahoo::Movies();
print "TITLE: ".$movie->title." - ".$movie->year."n";
WWW::Yahoo::Movies is Perl interface to the Yahoo! Movies (http://movies.yahoo.com/). Sometimes IMDB doesnt have full information about movie (plot summary, cover etc). In that case its good idea to have another place to get movie info.
Also, there are many Perl extensions for Yahoo! in the CPAN. Hope WWW::Yahoo::Movies will be useful as well!
<<lessSYNOPSIS
use WWW::Yahoo::Movies;
my $movie = new WWW::Yahoo::Movies();
print "TITLE: ".$movie->title." - ".$movie->year."n";
WWW::Yahoo::Movies is Perl interface to the Yahoo! Movies (http://movies.yahoo.com/). Sometimes IMDB doesnt have full information about movie (plot summary, cover etc). In that case its good idea to have another place to get movie info.
Also, there are many Perl extensions for Yahoo! in the CPAN. Hope WWW::Yahoo::Movies will be useful as well!
Download (0.013MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1054 downloads
vMovieDB 0.1.5
vMovieDB project is a movies collection manager for GNOME desktop. more>>
vMovieDB project is a movies collection manager for GNOME desktop. Its GTK+ 2.x, application writen on C, created according to Gnome-HIG standarts, vMovieDB fits perfectly in GNOME Desktop Enviroment.
Main features:
- Play selected movie with your favorite video player.
- Manage various types of information for your movies: title, year, media type, quality, subtitles, location, genre and movie image.
- Genre editor.
- Export your movies to html document.
- Export movies to text document.
- Search for selected movie on ImDB.com.
vMovieDB have fast and light database based on XML.
<<lessMain features:
- Play selected movie with your favorite video player.
- Manage various types of information for your movies: title, year, media type, quality, subtitles, location, genre and movie image.
- Genre editor.
- Export your movies to html document.
- Export movies to text document.
- Search for selected movie on ImDB.com.
vMovieDB have fast and light database based on XML.
Download (0.36MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1127 downloads
MeDs Movie Manager 2.5.4.1
MeDs Movie Manager is an easy-to-use and customizable movie manager. more>>
MeDs Movie Manager is a simple to use, yet customizable, movie manager. MeDs Movie Manager project gets the movies info from IMDb, and episode info from tv.com.
Main features:
- Unlimited size movie list
- Add, Edit, Delete database functions
- Episode functionality for series
- Quick movie filter
- Advanced search options
- List functionality
- Multi-add function (Search directories for files)
- Obtain AVI / OGM / MPEG and DVD (ifo) file info
- Automatic download of movie info from IMDb (Proxy support)
- Automatic download of episode info from tv.com (Proxy support)
- Import function (3 modes - Simple text, excel and extreme movie manager database (Tested with v4.5)
- Export to HTML (2 modes - full and simple)
- Customizable movie additional info
- Customizable database queries for statistics
- GIF, PNG and JPG cover support
- Changeable layout (Look And Feels)
<<lessMain features:
- Unlimited size movie list
- Add, Edit, Delete database functions
- Episode functionality for series
- Quick movie filter
- Advanced search options
- List functionality
- Multi-add function (Search directories for files)
- Obtain AVI / OGM / MPEG and DVD (ifo) file info
- Automatic download of movie info from IMDb (Proxy support)
- Automatic download of episode info from tv.com (Proxy support)
- Import function (3 modes - Simple text, excel and extreme movie manager database (Tested with v4.5)
- Export to HTML (2 modes - full and simple)
- Customizable movie additional info
- Customizable database queries for statistics
- GIF, PNG and JPG cover support
- Changeable layout (Look And Feels)
Download (19MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
845 downloads
Oxalis 0.1
Oxalis is web site editor. more>>
Oxalis is web site editor.
Oxalis project is created for editing static web sites.
Main features:
- Markdown syntax for writing pages
- templates
- site management
- upload to server via FTP
- it is free software
<<lessOxalis project is created for editing static web sites.
Main features:
- Markdown syntax for writing pages
- templates
- site management
- upload to server via FTP
- it is free software
Download (0.051MB)
Added: 2006-12-20 License: GPL (GNU General Public License) Price:
1060 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 movies 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