What is safe.fiery.me?
safe.fiery.me is a fork of
lolisafe. You can check out the fork
here.
Will you keep my files forever?
Unless I receive a copyright complain or some other bullshit, I will.
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.
Right now you can create albums through the dashboard (and the homepage if you are logged in),
then afterwards you can use them with our
Chrome extension or
Firefox extension,
which will enable you to
right click -> send 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.
Where is the server located at?
Singapore.
Expect high First Time Byte (FTB) everywhere else, especially anywhere on the other side of the planet Earth (generally can be over 1000ms).
I believe it is mostly due to the fact that we are using Cloudflare, since your requests have to go through them first.
However, since Cloudflare will cache your uploads too, they should have much better FTB afterwards (and generally faster download speed too).
Since my uploads are being cached, what about after I delete them from the dashboard?
No need to worry.
We will send API requests to Cloudflare to purge their cache immediately after you delete your uploads from the dashboard.
Cache of thumbnails will also be purged so no need to worry about them either.
Do you have a No-JS uploader form?
Yes, check out
this page.
Unfortunately you will not be able to associate your uploads to your account, if you have any.
{% if chunkSize -%}
Does your API support chunked uploads?
Yes, the homepage uploader will chunk your uploads into {{ chunkSize }} pieces by default.
If you want to utilize chunked uploads with the API, then feel free to inspect the HTTP requests.
{%- endif %}
What are the allowed extensions here?
{% if extensionsFilter.length and not whitelist -%}
We support any file extensions except the following: {{ extensionsFilter | join(', ') }}.
{%- elif extensionsFilter.length and whitelist -%}
We only support the following extensions: {{ extensionsFilter | join(', ') }}.
{%- else -%}
We support any file extensions.
{%- endif %}
How are the file URLs going to be determined?
Random {{ fileLength.default }}-letter strings will automatically be generated for your uploads.
{% if fileLength.userChangeable %}
If you think that is too {{ "short" if tooShort else "long" }}, you can create an account, which will let you to set a preferred length.
At the moment you can choose from {{ fileLength.min }} to {{ fileLength.max }} letters.
{%- endif %}
{% if noJsMaxSize and chunkSize -%}
Why is the maximum file size in the No-JS uploader form smaller?
This site is using Cloudflare, which limits the maximum upload size.
The homepage uploader will automatically chunk your uploads into {{ chunkSize }} pieces, so it is possible to increase the maximum file size there, but not in the No-JS uploader form.
{%- endif %}