Import the remaining FAQs
This commit is contained in:
parent
1acbe806ae
commit
93e187d9e7
8 changed files with 381 additions and 53 deletions
docs/docs
.vitepress
photos
|
@ -49,7 +49,10 @@ export const sidebar = [
|
|||
link: "/photos/features/public-link",
|
||||
},
|
||||
{ text: "Quick link", link: "/photos/features/quick-link" },
|
||||
{ text: "Referrals", link: "/photos/features/referrals" },
|
||||
{
|
||||
text: "Referral program",
|
||||
link: "/photos/features/referral-program/",
|
||||
},
|
||||
{ text: "Sharing", link: "/photos/features/share" },
|
||||
{ text: "Trash", link: "/photos/features/trash" },
|
||||
{
|
||||
|
@ -99,7 +102,12 @@ export const sidebar = [
|
|||
items: [
|
||||
{ text: "General", link: "/photos/faq/general" },
|
||||
{
|
||||
text: "Hide & archive",
|
||||
text: "Security and privacy",
|
||||
link: "/photos/faq/security-and-privacy",
|
||||
},
|
||||
{ text: "Subscription", link: "/photos/faq/subsciption" },
|
||||
{
|
||||
text: "Hide vs archive",
|
||||
link: "/photos/faq/hidden-and-archive",
|
||||
},
|
||||
],
|
||||
|
|
|
@ -3,7 +3,74 @@ title: General FAQ
|
|||
description: An assortment of frequently asked questions about Ente Photos
|
||||
---
|
||||
|
||||
# FAQ
|
||||
# General FAQ
|
||||
|
||||
While moOn this page we'll document some help items in a question and
|
||||
answer format.
|
||||
## How can I earn free storage?
|
||||
|
||||
Use our [referral program](/photos/features/referral-program/).
|
||||
|
||||
## What file formats does Ente support?
|
||||
|
||||
Ente supports all files that have a mime type of `image/*` or `video/*`
|
||||
regardless of their specific format.
|
||||
|
||||
However, we only have limited support for RAW currently. We are working towards
|
||||
adding full support, and you can watch this
|
||||
[thread](https://github.com/ente-io/ente/discussions/625) for updates.
|
||||
|
||||
If you find an issue with ente's ability to parse a certain file type, please
|
||||
write to [support@ente.io](mailto:support@ente.io) with details of the
|
||||
unsupported file format and we will do our best to help you out.
|
||||
|
||||
## Is there a file size limit?
|
||||
|
||||
Yes, we currently do not support files larger than 4 GB.
|
||||
|
||||
If this constraint is a concern for you, please write to
|
||||
[support@ente.io](mailto:support@ente.io) with your use case and we will do our
|
||||
best to help you.
|
||||
|
||||
## Does Ente support videos?
|
||||
|
||||
Ente supports backing up and downloading of videos in their original format and
|
||||
quality.
|
||||
|
||||
But some of these formats cannot be streamed on the web browser and you will be
|
||||
prompted to download them.
|
||||
|
||||
## Why does Ente consume lesser storage than other providers?
|
||||
|
||||
Most storage providers compute your storage quota in GigaBytes (GBs) by dividing
|
||||
your total bytes uploaded by `1000 x 1000 x 1000`.
|
||||
|
||||
Ente on the other hand, computes your storage quota in GibiBytes (GiBs) by
|
||||
dividing your total bytes uploaded by `1024 x 1024 x 1024`.
|
||||
|
||||
We decided to leave out the **i** from **GiBs** to reduce noise on our
|
||||
interfaces.
|
||||
|
||||
## Why should I trust Ente for long-term data-storage?
|
||||
|
||||
Unlike large companies, we have a focused mission, to build a safe space where
|
||||
you can easily archive your personal memories.
|
||||
|
||||
This is the only thing we want to do, and with our pricing model, we can
|
||||
profitably do it.
|
||||
|
||||
We preserve your data end-to-end encrypted, and our open source apps have been
|
||||
[externally audited](https://ente.io/blog/cryptography-audit/).
|
||||
|
||||
Also, we have spent great deal of engineering effort into designing reliable
|
||||
data replication and graceful disaster recovery plans. This is also done
|
||||
transparently - we have documented the specifics of our replication and
|
||||
reliability [here](https://ente.io/reliability).
|
||||
|
||||
In short, we love what we do, we have no reasons to be distracted, and we are as
|
||||
reliable as any one can be.
|
||||
|
||||
If you would like to fund the development of this project, please consider
|
||||
[subscribing](https://ente.io/download).
|
||||
|
||||
## How do I pronounce ente?
|
||||
|
||||
It's like cafe 😊. kaf-_ay_. en-_tay_.
|
||||
|
|
81
docs/docs/photos/faq/security-and-privacy.md
Normal file
81
docs/docs/photos/faq/security-and-privacy.md
Normal file
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
title: Security and privacy FAQ
|
||||
description: Frequently asked questions about security and privacy of Ente Photos
|
||||
---
|
||||
|
||||
# Security and privacy
|
||||
|
||||
## Can Ente see my photos and videos?
|
||||
|
||||
No.
|
||||
|
||||
Your files are encrypted with a key before they are uploaded to our servers.
|
||||
|
||||
These keys can be accessed only with your password.
|
||||
|
||||
Since only you know your password, only you can decrypt your files.
|
||||
|
||||
To learn more about our encryption protocol, please read about our
|
||||
[architecture](https://ente.io/architecture).
|
||||
|
||||
## How is my data encrypted?
|
||||
|
||||
We use [libsodium](https://libsodium.gitbook.io/doc/)'s implementations
|
||||
`XChaCha20` and `XSalsa20` to encrypt your data, along with `Poly1305` MAC for
|
||||
authentication.
|
||||
|
||||
Please refer to the document on our [architecture](https://ente.io/architecture)
|
||||
for more details.
|
||||
|
||||
## Where is my data stored?
|
||||
|
||||
Your data is replicated to multiple providers in different countries in the EU.
|
||||
|
||||
Currently we have datacenters in the following locations:
|
||||
|
||||
- Amsterdam, Netherlands
|
||||
- Paris, France
|
||||
- Frankfurt, Germany
|
||||
|
||||
Much more details about our replication and reliability are documented
|
||||
[here](https://ente.io/reliability).
|
||||
|
||||
## What happens if I forget my password?
|
||||
|
||||
You can reset your password with your recovery key.
|
||||
|
||||
If you lose both your password and your recovery key, you will not be able to
|
||||
decrypt your data.
|
||||
|
||||
## Can I change my password?
|
||||
|
||||
Yes.
|
||||
|
||||
You can change your password from any of our apps.
|
||||
|
||||
Thanks to our [architecture](https://ente.io/architecture), you can do so
|
||||
without having to re-encrypt any of your files.
|
||||
|
||||
The privacy of your account is a function of the strength of your password,
|
||||
please choose a strong one.
|
||||
|
||||
## Do you support 2FA?
|
||||
|
||||
Yes.
|
||||
|
||||
You can setup two-factor authentication from the settings screen of the mobile
|
||||
app or from the side bar of our desktop app.
|
||||
|
||||
## How does sharing work?
|
||||
|
||||
The information required to decrypt an album is encrypted with the recipient's
|
||||
public key such that only they can decrypt them.
|
||||
|
||||
You can read more about this [here](https://ente.io/architecture#sharing).
|
||||
|
||||
In case of sharable links, the key to decrypt the album is appended by the
|
||||
client as a [fragment to the URL](https://en.wikipedia.org/wiki/URI_fragment),
|
||||
and is never sent to our servers.
|
||||
|
||||
Please note that only users on the paid plan are allowed to share albums. The
|
||||
receiver just needs a free Ente account.
|
154
docs/docs/photos/faq/subscription.md
Normal file
154
docs/docs/photos/faq/subscription.md
Normal file
|
@ -0,0 +1,154 @@
|
|||
---
|
||||
title: Subscription FAQ
|
||||
description: Frequently asked questions about Ente Photos subscription and plans
|
||||
---
|
||||
|
||||
# Subscription and plans
|
||||
|
||||
## Does Ente have Family Plans?
|
||||
|
||||
Yes we do! Please check out our announcement post
|
||||
[here](https://ente.io/blog/family-plans).
|
||||
|
||||
In brief,
|
||||
|
||||
* Your family members can use storage space from your plan without paying extra.
|
||||
|
||||
* Ask them to sign up for Ente, and then just add them to your existing plan
|
||||
using the "Manage family" option within your Subscription settings.
|
||||
|
||||
* Each member gets their own private space, and cannot see each other's files
|
||||
unless they're shared.
|
||||
|
||||
* You can invite 5 family members. So including yourself, it will be 6 people
|
||||
who can share a single subscription, paying only once.
|
||||
|
||||
Note that family plans are meant as a way to share storage. For sharing photos,
|
||||
you can create [shared albums and links](/photos/features/share).
|
||||
|
||||
## Does Ente offer discounts to students?
|
||||
|
||||
Yes we do!
|
||||
|
||||
We believe that privacy should be made accessible to everyone. In this spirit,
|
||||
we offer **30% off** our subscription plans to students.
|
||||
|
||||
To apply for this discount, please verify your enrollment status in a school /
|
||||
college / university by writing to [students@ente.io](mailto:students@ente.io)
|
||||
from the email address assigned to you by your institute.
|
||||
|
||||
In case you do not have access to such an email address, please send us proof
|
||||
(such as your institute's identity card) that verifies your identity as a
|
||||
student.
|
||||
|
||||
Please note that these discounts are valid for a year, after which you may
|
||||
reapply to reclaim the discount.
|
||||
|
||||
## What payment methods does Ente support?
|
||||
|
||||
On Web, Desktop and Android, Stripe helps us process payments from all major
|
||||
prepaid and credit card providers.
|
||||
|
||||
On iOS, we (have to) use the billing platforms provided by the app store.
|
||||
|
||||
Apart from these, we also support PayPal and crypto currencies (more details
|
||||
below).
|
||||
|
||||
## Can I pay with PayPal?
|
||||
|
||||
We support **annual** subscriptions over PayPal.
|
||||
|
||||
Please drop an email to paypal@ente.io from your registered email address,
|
||||
mentioning the [storage plan](https://ente.io#pricing) of your choice and we
|
||||
will send you an invoice with a link to complete the payment.
|
||||
|
||||
Once the payment is completed, your account will be upgraded to the chosen plan.
|
||||
|
||||
## Does Ente accept crypto payments?
|
||||
|
||||
We accept the following crypto currencies:
|
||||
|
||||
- Bitcoin
|
||||
- Ethereum
|
||||
- Dogecoin
|
||||
|
||||
To purchase a subscription with any of the above mentioned currencies, please
|
||||
write to crypto@ente.io from your registered email address, citing the [storage
|
||||
plan](https://ente.io#pricing) of your choice.
|
||||
|
||||
In case you have any further questions or need support, please reach out to
|
||||
[support@ente.io](mailto:support@ente.io), and we'll be happy to help!
|
||||
|
||||
> Please note that Ente does not provide anonymity. What we provide is privacy,
|
||||
> since your data is end-to-end encrypted.
|
||||
> [Information](https://ente.io/privacy/#3-what-information-do-we-collect) we
|
||||
> have about you might make your identity deducible. We are accepting crypto as
|
||||
> a way to make Ente more accessible, not to provide anonymity.
|
||||
|
||||
## Does Ente store my card details?
|
||||
|
||||
Ente does not store any of your sensitive payment related information.
|
||||
|
||||
We use [Stripe](https://stripe.com) to handle our card payments, and all of your
|
||||
payment information is sent directly to Stripe's PCI DSS validated servers.
|
||||
|
||||
Stripe has been audited by a PCI-certified auditor and is certified to [PCI
|
||||
Service Provider Level
|
||||
1](https://www.visa.com/splisting/searchGrsp.do?companyNameCriteria=stripe).
|
||||
This is the most stringent level of certification available in the payments
|
||||
industry.
|
||||
|
||||
All of this said, if you would still like to pay without sharing your card
|
||||
details, you can pay using PayPal.
|
||||
|
||||
## What happens if I exceed my storage limit?
|
||||
|
||||
Ente will stop backing up your files and you will receive an email alerting you
|
||||
of the same.
|
||||
|
||||
Your backed up files will remain accessible for as long as you have an active
|
||||
subscription.
|
||||
|
||||
## What happens when my subscription expires?
|
||||
|
||||
30 days after your subscription expires, all of your uploaded data will be
|
||||
cleared from our servers.
|
||||
|
||||
You will receive an email prompting you to take out all of your backed up data
|
||||
before this happens.
|
||||
|
||||
## What happens when I upgrade my plan?
|
||||
|
||||
Your new plan will go into effect immediately, and you only have to pay the
|
||||
difference. We will adjust your remaining pro-rated balance on the old plan when
|
||||
invoicing you for the new plan.
|
||||
|
||||
For example, if you are half way through the year on the 100 GB yearly plan, and
|
||||
upgrade to the 500 GB yearly plan, then
|
||||
|
||||
* The new 500 GB yearly plan will go into effect immediately.
|
||||
|
||||
* But we will reduce the charges for the first year by subtracting the remaining
|
||||
half year balance of the 100 GB yearly plan that you'd already paid.
|
||||
|
||||
The same applies to monthly plans.
|
||||
|
||||
## Is there an x GB plan?
|
||||
|
||||
We have experimented quite a bit and have found it hard to design a single
|
||||
structure that fits all needs. Some customers wish for many options, some even
|
||||
wish to go to an extreme of dynamic per GB pricing. Other customers wish to keep
|
||||
everything simple, some even wish for a single unlimited plan.
|
||||
|
||||
To keep things fair, our plans don't increase linearly, and the tiers are such
|
||||
that cover the most requested patterns.
|
||||
|
||||
In addition, we also offer [family plans](/photos/features/family-plans) so that
|
||||
you can gain more value out of a single subscription.
|
||||
|
||||
## Is there a forever-free plan?
|
||||
|
||||
Sorry, since we're building a business that does not involve monetization of
|
||||
user data, we have to charge to remain sustainable.
|
||||
|
||||
We do offer a generous free trial for you to experience the product.
|
BIN
docs/docs/photos/features/referral-program/free-storage.png
Normal file
BIN
docs/docs/photos/features/referral-program/free-storage.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 102 KiB |
66
docs/docs/photos/features/referral-program/index.md
Normal file
66
docs/docs/photos/features/referral-program/index.md
Normal file
|
@ -0,0 +1,66 @@
|
|||
---
|
||||
title: Referral program
|
||||
description: Earn free storage by referring Ente Photos to your friends
|
||||
|
||||
---
|
||||
|
||||
# Referral program
|
||||
|
||||
You can refer your friends to earn free storage on Ente.
|
||||
|
||||
For each friend you refer, who upgrades to a paid plan, we will credit **10 GB**
|
||||
of free storage. The referred customer will also receive an additional **10 GB**
|
||||
with their paid subscription.
|
||||
|
||||
That is, if you refer a friend, once your friend upgrades to a paid plan, both
|
||||
you and your friend receive an additional 10 GB of storage.
|
||||
|
||||
You can find your referral code under _Settings → General → Referrals_.
|
||||
|
||||
<div align="center">
|
||||
|
||||
{width=400px}
|
||||
|
||||
</div>
|
||||
|
||||
### How much storage can I earn?
|
||||
|
||||
The amount of free storage you can earn is capped to your current plan. This
|
||||
means, you can at max <u>double your storage</u>. For example, if you're on a
|
||||
100 GB plan, you can earn another 100 GB (by referring 10 friends), taking your
|
||||
total available storage to 200 GB.
|
||||
|
||||
You can keep track of your earned storage and referral details on _Claim free
|
||||
storage_ screen.
|
||||
|
||||
If you refer more paid customers than is allowed by your current plan, the extra
|
||||
storage earned will be reserved and will become usable once you upgrade your
|
||||
plan.
|
||||
|
||||
### For how long do I have access to this storage?
|
||||
|
||||
Earned storage will be accessible as long as your subscription is active,
|
||||
provided there has been no abuse.
|
||||
|
||||
In case our systems detect abuse, we may notify you and take back credited
|
||||
storage. Low quality referrals (who don't renew their plans) or creation of fake
|
||||
accounts, etc. could result in this.
|
||||
|
||||
### How can my friends apply my referral code?
|
||||
|
||||
Referral codes can be applied within _Settings → General → Referrals → Apply
|
||||
Code_.
|
||||
|
||||
<div align="center">
|
||||
|
||||
{width=400px}
|
||||
|
||||
</div>
|
||||
|
||||
Please note that referral codes should be applied within one month of account
|
||||
creation to claim free storage.
|
||||
|
||||
---
|
||||
|
||||
More questions? Drop a mail to [referrals@ente.io](mailto:referrals@ente.io),
|
||||
and we'll get back to you!
|
Binary file not shown.
After ![]() (image error) Size: 90 KiB |
|
@ -1,48 +0,0 @@
|
|||
---
|
||||
title: Referral plan
|
||||
description:
|
||||
Earn and expand your storage by referring Ente Photos to your friends and
|
||||
family
|
||||
---
|
||||
|
||||
# Referral plan
|
||||
|
||||
_Earn and Expand Your Storage_
|
||||
|
||||
Did you know you can boost your storage on Ente simply by referring your
|
||||
friends? Our referral program lets you earn 10 GB of free storage for each
|
||||
friend who upgrades to a paid plan, and your referred friends receive an
|
||||
additional 10 GB with their subscription.
|
||||
|
||||
## How to Refer a friend?
|
||||
|
||||
On the Home Page:
|
||||
|
||||
- Click on the hamburger menu in the top left corner
|
||||
- Open the sidebar
|
||||
- Tap on _General_
|
||||
- Select _Referrals_
|
||||
- Share the code with your friend or family
|
||||
|
||||
Note:
|
||||
|
||||
- Once your friend upgrades to a paid plan, both you and your friend receive
|
||||
an additional 10 GB of storage.
|
||||
- You can keep track of your earned storage and referral details on _Claim
|
||||
free storage_ screen.
|
||||
- If you refer more friends than your plan allows, the extra storage earned
|
||||
will be reserved until you upgrade your plan.
|
||||
- Earned storage remains accessible as long as your subscription is active.
|
||||
|
||||
## How to apply referral code given by a friend?
|
||||
|
||||
On the Home Page:
|
||||
|
||||
- Click on the hamburger menu inthe top left corner
|
||||
- Tap on _General_ from the options
|
||||
- Select _Referrals_ from the menu
|
||||
- Find and tap on _Apply Code_
|
||||
- Enter the referral code provided by your friend.
|
||||
|
||||
Please note that referral codes should be applied within one month of account
|
||||
creation to claim the free storage.
|
Loading…
Add table
Reference in a new issue