{% extends "base.html" %} {% block title %} Pleaseshare - {{ _('Help') }} {% endblock %} {% block body %}

{{ _('I can only upload one file?') }}

{{ _('Yes, at the moment, due to the limitations of html, it is impossible to upload folders directly.') }} {% if config.ALLOW_MULTIFILE %} {{ _('However, if you upload an archive') }} {% if config.ALLOW_COMPRESSED %} {{ _(' (.zip/.tar, possibly compressed) ') }} {% else %} {{ _(' (.tar, uncompressed) ') }} {% endif %} {{ _('and toggle the option "Extract archive" the torrent will contain the files of this archive, under a subdirectory named after the archive (minus the .extension part).') }} {% endif %}

{{ _('I uploaded a file, what now?') }}

{{ _('You can share it with your friends, of anyone, if you give them a link to this page, to the torrent') }}{% if config.SHOW_MAGNET_LINK %}{{ _(', or the magnet link') }}{% endif %}. {{ _('You should also start the torrent into your favorite torrent client, this way, you will be able to share it. If you don’t do that, the download speed for the people who want download the file will be smaller.')}}

{{ _('How do I delete a file if I don’t want to keep sharing it?') }}

{{ _('You have to go to the page for the file and enter the deletion password into the box at the bottom of the page. If you don’t have the password, we have no way of knowing if you are the initial uploader (because this service is entirely anonymous) and therefore we will not be able to comply with your request.
You should also understand that because of the way the torrent network was built, the file cannot be remotely deleted on the computers of the file-sharers. So while the file is gone from the website, it might still be shared and accessible via a saved torrent file or magnet link.') }}

{% if config.SHOW_MAGNET_LINK %}

{{ _('I see "magnet link", what’s this?') }}

{{ _('Magnet links are created from the torrent file, in order to have something easy to share between people, via text messaging or whatever. Technically, your torrent client will search people who have the torrent file, and download it from them, then download the files in the torrent, so it always need at least one client which has the torrent. Note that using magnet links does not give you the webseeds, so you are missing one of the advantages of this website (a minimal guaranteed bandwith).') }}

{% endif %}

{{ _('What can I do here?') }}

{% if config.ALLOW_MULTIFILE %}

{{ _('Multifile torrents are enabled') }}

{% else %}

{{ _('Multifile torrents are disabled') }}

{% endif %} {% if config.ALLOW_WEBSEEDS %}

{{ _('Adding webseeds to the torrent is enabled') }}

{% else %}

{{ _('Adding webseeds to the torrent is forbidden') }}

{% endif %} {% if config.ALLOW_TRACKERS %}

{{ _('Adding trackers to the torrent is enabled') }}

{% else %}

{{ _('Adding trackers to the torrent is disabled') }}

{% endif %} {% if config.ALLOW_PRIVATE %}

{{ _('Creation of private torrents is allowed') }}

{% else %}

{{ _('Creation of private torrents is forbidden') }}

{% endif %} {% with maxsize = config.MAX_CONTENT_LENGTH / (1024 ** 2) %}

{{ _('The max file size is %(maxsize)s MiB', maxsize=maxsize) }}

{% endwith %} {% if config.DEFAULT_TRACKERS %}
{{ _('The default trackers are:') }}
{% endif %} {% if config.MANDATORY_TRACKERS %}
{{ _('The forced trackers are:') }}
{% endif %}
{% endblock %}