-
-
Notifications
You must be signed in to change notification settings - Fork 37
Troubleshooting and Common Errors
Ryan edited this page Jan 16, 2026
·
1 revision
Most issues come down to permissions, paths, or reverse-proxy settings. Start with the quick checks below before diving deeper.
- Check the error log (see the Logs and Diagnostics page).
- Confirm the data directories exist and are writable:
/var/www/uploads/var/www/users/var/www/metadata
- Confirm your web server DocumentRoot points to
public/. - If you are behind a proxy or subpath, set
FR_PUBLISHED_URLandFR_BASE_PATH(or sendX-Forwarded-Prefix).
- Ensure
/var/www/usersis writable by the web server user. - If you installed outside
/var/www, update paths inconfig/config.php. - Check
open_basedirincludes/var/wwwand/tmp.
- Run a metadata rebuild:
- Docker:
docker exec -it <container> php /var/www/scripts/scan_uploads.php - Manual:
php /var/www/scripts/scan_uploads.php
- Docker:
- Or set
SCAN_ON_START=trueand restart once.
- Verify
TOTAL_UPLOAD_SIZEand PHP upload limits. - Reverse proxies also cap size (for example: Nginx
client_max_body_size, TraefikmaxRequestBodyBytes). - WebDAV uploads are also limited by
FR_WEBDAV_MAX_UPLOAD_BYTES.
- Clear cookies and confirm
SECURE=truewhen behind HTTPS. - Docker uses
/var/www/sessions(created at startup). - Manual installs must ensure
session.save_pathis writable by the web server user.
- Enable WebDAV in the Admin Panel.
- Confirm the user has View + Upload/Edit/Delete as needed (ACLs apply).
- Use the full endpoint:
https://your-host/webdav.php/
- Set
FR_PUBLISHED_URLto the external URL. - For subpaths, set
FR_BASE_PATHor sendX-Forwarded-Prefix.
- Confirm the Document Server origin is reachable from the browser.
- Add the CSP header from the ONLYOFFICE page.
- See the ONLYOFFICE wiki for exact settings.
- Encrypted-at-rest folders disable WebDAV, sharing, ZIP operations, and ONLYOFFICE.
- Admin options can be locked when an environment variable is set.
- Avoid mounting the root of a massive share; use a dedicated subfolder.
- See the Performance Tuning page for caching and UI settings.
Gather logs and details (version, install method, proxy) and open an issue or discussion.
Docs · Support · FileRise.net · Changelog
- Admin panel
- Admin gotchas
- Common env vars
- Environment variables full reference
- ACL and permissions
- ACL recipes
- Nginx setup
- Reverse proxy and subpath
- WebDAV
- WebDAV via curl
- WebDAV security and clients
- ONLYOFFICE
- Encryption at rest
- OIDC and SSO
- CIFS share auto metadata
- Sharing and public links
- Upload limits and PHP tuning
- Logs and diagnostics
- Backup and restore
- Upgrade and migration
- Migration checklist
- Maintenance scripts
- Performance quickstart
- Performance tuning
- Security hardening