-
Notifications
You must be signed in to change notification settings - Fork 1.5k
FAQ
No data is sent to 3rd parties, including overleaf.com.
The admin panel allows for a banner to be set for all users
Overleaf Server Pro's admin panel has the option to delete users, it can also be done via mongo command line
db.users.remove({email:"delete_this_user@gmail.com"})
If you are running MongoDB under docker, you can get a mongo shell with:
# Overleaf Toolkit users
$ bin/mongo
# Legacy docker-compose.yml users
$ docker-compose exec mongo bash
mongo
> use sharelatex
Create a mongo shell and check the number of entries in the users
collection:
> db.users.count()
16
Update the isAdmin
field in the users
collection:
> db.users.updateOne({email:"user@example.com"},{"$set": {isAdmin: true}})
{ "acknowledged" : true, "matchedCount" : 1, "modifiedCount" : 1 }
Please see our learn wiki for information on project size and upload limits.
Please see our learn wiki for information on project size and upload limits.
A public project is a project which has had all authentication removed from it so anyone can access it. It will not show up on other users' project lists.
The advanced reference features in Overleaf are not currently available. We do have plans to add them into server pro in the future but they require increased hosting requirements and complexity so have held back from including them to date.
- Quickstart Guide (Overleaf Toolkit)
- Hardware Requirements
- Database & Dependencies
- Creating and managing users
- General configuration
- Configuring Email
- SSL & Nginx reverse proxy
- Data and Backups
- Configuring Headers, Footers & Logo
- Password Restrictions
- i18n Languages
- Logging
- Common Config Options
- F.A.Q
- Troubleshooting
- Full Project History Migration