Get up to $35 / 1000 downloads with FileSonic.com We pay for all countries!

Rapidshare.com: Free download for all!

(!) This feature can take on only premium users for own files.
If you wish to provide some of your files in such way that other users can download them immediately and without limitations, you can mark those files as direct downloads. The traffic caused by downloads of those files will be subtracted from your direct download credits. (Important: This is not the same as your own download traffic you use for downloading other users' files.) You can purchase additional direct download traffic at any time using the buttons on this page.

See bottom of your premium-zone page:

Especially for bigger companies, RapidShare offers a file sharing cluster solution. Your files will be saved on many servers at the same time and your users will be leaded to a random server automatically. This clustering makes it possible to handle a high amount of traffic concurrently, for example on events or important software updates, where a concurrent bandwidth usage of more than 500 MBits is required.
You have 10.00 GB of direct download traffic left. Each newly created premium account gets 10 GB of free traffic to check out this service for free.
In order to change files to direct download files, mark the respective files with the checkboxes you can find before every file link in the file list. Then click the button below the file list to convert the files to direct download links type (1). Direct download files will be labeled in the file list so you know which files are direct download files and which are not. In case your free direct download traffic is all used up, the direct download files will automatically being handled like normal RapidShare links.

Secured links for professionals

In case you want to control who uses your direct download links for how long, you can generate secured download links. You can convert your files to three types. Type (0) is a normal RapidShare download link, type (1) is the unsecured direct download link, which can be used by everyone who knows the link until you delete the file or change the file to type (0) again. Type (2) is the protected link. To use this feature, you need webspace capable of running PHP or Perl. With this program you will generate protected links, which are only valid as long as you want. Now a little Perl example script:
#!/usr/bin/perl

use strict;
use warnings;
use Digest::MD5("md5_hex");

my $premiumaccount = 12345; # Insert your premium ID here
my $fileid = 12345678; # Insert the file ID here
my $filename = "yourfile.zip"; # The filename of the file
my $killcode = 123456; # The killcode of the file. Can be found out via "Export+MD5" in your premium zone.
my $validuntil = time + 300; # Valid for 300 seconds from now on
my $md5hex = md5_hex("$premiumaccount,$fileid,$killcode,$validuntil");

print "Secured link is http://rapidshare.com/files/$fileid/t$validuntil-$md5hex/$filename";

The same example in PHP:

$premiumaccount = 12345; // Insert your premium ID here
$fileid = 12345678; // Insert the file ID here
$filename = "yourfile.zip"; // The filename of the file
$killcode = 123456; // The killcode of the file. Can be found out via "Export+MD5" in your premium zone.
$validuntil = time() + 300; // Valid for 300 seconds from now on
$md5hex = md5($premiumaccount.",".$fileid.",".$killcode.",".$validuntil);

print "Secured link is http://rapidshare.com/files/$fileid/t$validuntil-$md5hex/$filename";
?>


Attention: This method must not be used in JavaScript (for example). We generate a MD5-hash based on some secret values including a time stamp. Since a hacker does not know the secret data, he can not create "hacked" download links, which are valid for 3 years for example. The main secret is the killcode of your file, but also the premium login should not be published. In case you need help implementing the method, you can contact our support.

0 Comment(s):