{% set title = "FAQ" %} {% extends "_layout.njk" %} {% set noJsMaxSizeInt = config.cloudflare.noJsMaxSize | int %} {% set chunkSizeInt = config.uploads.chunkSize | int %} {% set extensionsFilterMode = config.extensionsFilterMode %} {% set extensionsFilter = config.extensionsFilter %} {% macro extensions(obj) %} {% set space = joiner(' ') %} {% for id, val in obj -%} {{ space() }}{{ id }}="{{ val }}" {%- endfor %} {% endmacro %} {% block content %} {{ super() }}

What is safe.fiery.me?

This is a fork of lolisafe. GitHub repository of the fork is located here.

Will you keep my files forever?

Unless I receive a copyright complain, or some other bullshit, I will.
However, we also have temporary uploads feature which will automatically delete your files after a certain period of time.
You can configure the feature through our homepage's config tab.

How can I keep track of my uploads?

Simply create a user on the site and every upload will be associated with your account, granting you access to your uploaded files through our dashboard.

What are albums?

Albums are a simple way of sorting uploads together.
As long as you are logged in, you can create albums through our homepage or dashboard,
then afterwards you can use them with our Firefox extension or Chrome extension,
which will enable you to right click -> send file to safe, or to a desired album if you have any.
You will have to set the domain in the extension's settings to https://safe.fiery.me though.

Why should I use this?

I don't know.

I saw something too illegal for my tastes here, what should I do?

Send a strongly worded email to bobby@fiery.me and I will try to get back to you within 24 hours.

I found a bug! -or- I want to request a feature!

Feel free to create a GitHub issue here.
Or if you don't want to use GitHub, then you can also contact me through my email above.

Where is the server located at?

Paris, France.
We are using Cloudflare though, so you can expect your uploads to be delivered quickly all over the world after they have been cached.

Since my uploads are cached, what about after I delete them from the dashboard?

We will send API requests to Cloudflare to purge their cache immediately after you delete your uploads from the dashboard.
Cache of their thumbnails will also be purged, if applicable.

Do you have a No-JS uploader form?

{% if noJsMaxSizeInt and chunkSizeInt -%}

Why is the maximum file size in the No-JS uploader form smaller?

This site is using Cloudflare, which limits the maximum upload size.
Since the homepage uploader chunks your uploads through JS magic, it is possible to increase the maximum file size there.
{%- endif %} {% if chunkSizeInt -%}

So your API supports chunked uploads?

Yes, the homepage uploader was coded to chunk uploads into {{ chunkSize }} MB pieces by default (chunk size is configurable through the config tab).
If you want to chunk your API uploads, feel free to read the source code to see how it works.
{%- endif %}

What are the allowed extensions here?

{% if extensionsFilter.length -%} {%- if extensionsFilterMode === 'whitelist' -%} We only support the following extensions: {%- else -%} We support any file extensions, except the following: {%- endif -%}
{% set comma = joiner(' ') -%} {%- for extension in extensionsFilter -%} {{ comma() }}{{ extension }} {%- endfor -%} {%- else -%} We support any file extensions. {%- endif %}
{% endblock %}