Technical
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 %}
{% if not globals.is_for_personal_use -%}
{# lolisafe does not do this by default, enable only if you specifically do so #}
Why are my .htm/.html uploads being served as plain text?
There had been too many phishing pages being uploaded in the past.
{%- endif %}
{% if globals.server_location -%}
Where is the server located?
{{ globals.server_location | safe }}.
{% if config.cloudflare.purgeCache -%}
We are using
Cloudflare though, so you can expect your uploads to be delivered quickly all over the world after they have been cached.
{%- endif %}
{%- endif %}
{% if config.cloudflare.purgeCache and not globals.is_for_personal_use -%}
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.
{%- endif %}
{% if globals.enable_faq_tor -%}
I cannot access this website with Tor and/or VPNs!?
My server is actively refreshing and blacklisting Tor exit nodes.
There have been too many child pornography uploaders using Tor, that they simply didn't care about individual IPs being banned.
Sometimes I might also end up blacklisting IP ranges that were known to come from VPNs, if there had been attempts with multiple of those IPs.
Nothing much I can do about it. We live in a society.
{%- endif %}
Are there any Desktop clients?
We do have some browser extensions to assist uploads:
Firefox extension. Maintained by me. Its GitHub repository is located
here.
Chrome extension. Maintained by lolisafe's team. Its GitHub repository is located
here.
With the Chrome extension specifically, you will have to manually set the domain in the extension's settings to
https://safe.fiery.me
.
If you use Windows desktop, the safe support uploads from
ShareX.
You can download the config file by clicking on the ShareX icon on the homepage.
When logged in, the config file will also be automatically populated with your account's token.
This will allow you to manage your ShareX uploads from our Dashboard.
If you use Linux desktop, there is a compatible bash uploader which I also maintain.
You can learn more about it from
its GitHub repository.
{% if config.routes.nojs !== false -%}
Do you have a No-JS uploader form?
{%- endif %}
{% 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 wizardry, 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. However, this is configurable through its 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 %}
{% if globals.fork_repo and not globals.is_for_personal_use -%}
I found a bug! -or- I want to request a feature!
Feel free to create a {{ globals.fork_host }} issue
here.
{% if globals.email -%}
If you do not have a {{ globals.fork_host }} account, you can also email
{{ globals.email }}.
{%- endif %}
{%- endif %}
{% if not globals.is_for_personal_use -%}
How do I delete my own account and all the uploads associated with it?
For now, you will also have to contact me through my email above.
A feature to delete your own account by yourself is still work in progress.
Otherwise, if you do not mind a record of your username being left here, it should be easy to bulk delete all your uploads from the Dashboard anyway.
{%- endif %}