{% set metaTitle = "FAQ" %} {% set metaUrl = '/faq' %} {% extends "_layout.njk" %} {% set noJsMaxSizeInt = config.cloudflare.noJsMaxSize | int %} {% set chunkSizeInt = config.uploads.chunkSize | int %} {% set extensionsFilterMode = config.extensionsFilterMode %} {% set extensionsFilter = config.extensionsFilter %} {% 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.
Logs of taken down files can be found here.

However, we also have temporary uploads feature which will automatically delete your files after a certain period of time.
You can configure this 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.
You will need to do this if you ever want to delete your own uploads in the future, unless you choose to use temporary uploads.

What are albums?

Albums are a simple way of sorting uploads together.
You can then share public links to these albums, to allow everyone else to view a pretty listing of the uploads in them.

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.
With the Chrome extension, you will have to manually set the domain in the extension's settings to https://safe.fiery.me.

If you use a Linux desktop, we also have a bash uploader that supports uploading to albums.
You can learn more about it here.

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 48 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, you can also contact me through my email above.

How do I delete my own account and all the uploads associated with it?

For the time being, you will need to contact me through my email above.
A feature to delete your own account yourself is currently still being worked on.
Otherwise, if you don't mind a record of your username being left here, it should be easy to bulk delete all your uploads from the dashboard anyway.

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 {{ chunkSizeInt }} MB pieces by default (configurable through the homepage's Config tab).
If you want to chunk your API uploads, feel free to inspect the source code to see how it works.

A rough description of how it works is to simply upload the chunks with their UUID information attached, and then call the "finish chunks" API with the said UUID, to rebuild them into a single proper file.
{%- 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 %}