Welcome to the official s42transfer project, an Open-Source software.
s42transfer is a web site permitting to upload mulitple files in a simple way and give unique links with compressed files along with email sharing functionality.
A demonstration of the latest version is available on demo.s42.io
Main features:
- Multiple upload with drag & drop option => single and collective download links with email sharing functionality & One delete link for single/multiple files
- Share any large mulitple files (thanks to HTML5)
- No database, only use basic PHP
- Shows progression: speed, percentage and remaining upload time
- Preview content in browser (if possible)
- Optional Password protection (for uploading or downloading)
- Time limitation
- Option to self-destruct after reading
- Simple language support :en
- Small administration interface to control theme, file upload limit, email sharing feature and other basic settings.
- File level Deduplication for storage optimization
- A basic Terms Of Service which can be adapted to your needs
- Shortened URLs using base 64 encoding
- API interface
- Optional data encryption
- Skin ...
s42transfer is a fork of the original project Jirafeau version 1.0 with a lot of modifications.
As it's original project, s42transfer is made in the KISS way (Keep It Simple, Stupid).
s42transfer project won't evolve to a file manager and will focus to keep a very few dependencies.
Here are some screenshots:
- Installation part 1
- Installation part 2
- Installation part 3
- Installation part 4
- Installation part 5
- Upload 1
- Upload 2
- Upload 3
- Upload 4
- Upload 5
- Admin 1
- Admin 2
- Admin 3
- Admin 4
- Admin 5
- Admin 6
- Download the last version of s42transfer from GitLab
- Upload files on your web server
- Don't forget to set owner of uploaded files if you need to
- Get your web browser and go to you install location (e.g.
http://your-web-site.org/s42transfer/
) and follow instructions - Some options are not configured from the minimal installation wizard, you may take a look at option documentation in
lib/config.original.php
and customize yourlib/config.local.php
Note that lib/config.local.php
is auto-generated during the installation.
If you don't want to go through the installation wizard, you can just copy config.original.php
to config.local.php
and customize it.
var
directory contain all files and links. It is randomly named to limit access but you may add better protection to prevent un-authorized access to it.
You have several options:
- Configure a
.htaccess
- Move var folder to a place on your server which can't be directly accessed
- Disable automatic listing on your web server config or place a index.html in var's sub-directory (this is a limited solution)
If you are using Apache, you can add the following lineto your configuration to prevent people to access to your var
folder:
RedirectMatch 301 ^/var-.* http://my.service.s42transfer
You should also remove un-necessessary write access once the installation is done (ex: configuration file). An other obvious basic security is to let access users to the site by HTTPS.
Data encryption can be activated in options. This feature makes the server encrypt data and send the decryt key to the user (inside download URL). The decrypt key is not stored on the server so if you loose an url, you won't be able to retrieve file content. In case of security troubles on the server, attacker won't be able to access files.
By activating this feature, you have to be aware of few things:
- Data encryption has a cost (cpu) and it takes more time for downloads to complete once file sent.
- During the download, the server will decrypt on the fly (and use resource).
- This feature needs to have the mcrypt php module.
- File de-duplication will stop to work (as we can't compare two encrypted files).
- Be sure your server do not log client's requests.
- Don't forget to enable https.
In a next step, encryption will be made by the client (in javascript), see issue #10.
If you have installed s42transfer using git, it's pretty simple: just make a git pull and chown/chmod files who have the owner changed.
If you have installed s42transfer just by uploading files on your server, you can take the last version, overwrite files and chown/chmod files if needed.
After upgrading, you can compare your lib/config.local.php
and lib/config.original.php
to see if new configuration items are available.
If you have some troubles:
- It should probably come from your
lib/config.local.php
(configuration syntax may have changed). Just compare it withlib/config.original.php
- Check owner/permissions of your files.
Anyway you should off-course make a backup of your current installation before doing anything. :)
There are two ways to limit upload access (but not download):
- you can set one or more passwords in order to access the upload interface, or/and
- you can configure a list of authorized IP (CIDR notation) which are allowed to access to the upload page
Check documentation of upload_password
and upload_ip
parameters in lib/config.original.php.
If you have some strange behavior with IE, you may configure compatibility mode.
Anyway I would recommand you to use another web browser. :)
Feel free to open a bug in the GitLab's issues.
If your browser supports HTML5 file API, you can send files as big as you want.
For browsers who does not support HTML5 file API, the limitation come from PHP configuration. You have to set post_max_size and upload_max_filesize in your php configuration.
If you don't want to allow unlimited upload size, you can still setup a maximal file size in s42tranfer setting (see maximal_upload_size
in your configuration)
Documentation of all default options are located in lib/config.original.php.
If you want to change an option, just edit your lib/config.local.php
.
Just go to /admin.php
.
Simply go to /script.php
with your web browser.
Be sure your PHP installation is not using safe mode, it may cause timeouts.
The original project seems not to be continued anymore and I prefer to add more features and increase security from a stable version.
Check issues to check open bugs and incoming new stuff. :)
s42transfer is licensed under AGPLv3.
Just edit tos.php
and configure $org
and $contact
variables.
s42transfer use a very simple file level deduplication for storage optimization.
This mean that if some people upload several times the same file, this will only store one time the file and increment a counter.
If someone use his delete link or an admin cleans expired links, this will decrement the counter corresponding to the file.
If the counter falls to zero, the file is destroyed.
As explained in the previous question, files with the same md5 hash are not duplicated and a reference counter stores the number of links pointing to a single file. So:
- The button "delete link" will delete the reference to the file but might not destroy the file.
- The button "delete file and links" will delete all references pointing to the file and will destroy the file.
Feel free to create an issue if you found a bug, else you can send an email to admin@s42.io