Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs/common_issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,16 @@ If you use Cloudflare, check if the setting that blocks access to bots is active
<hr>

### How to increase the upload max file size?
Increase the `post_max_size` and `upload_max_filesize` in your `php.ini`.

If uploads fail or stop part-way (especially for files around 1 GB or larger), it is usually due to PHP, web server, or reverse-proxy limits.

1. **Update PHP limits (`php.ini`)**

Make sure these values are high enough for the files you want to upload:

```ini
upload_max_filesize = 2G
post_max_size = 2G
max_execution_time = 600
max_input_time = 600