Skip to content

Commit 1b668fa

Browse files
committed
Improve docs for large file upload limits and timeouts
1 parent dc43428 commit 1b668fa

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

docs/common_issues.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,16 @@ If you use Cloudflare, check if the setting that blocks access to bots is active
1717
<hr>
1818

1919
### How to increase the upload max file size?
20-
Increase the `post_max_size` and `upload_max_filesize` in your `php.ini`.
20+
21+
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.
22+
23+
1. **Update PHP limits (`php.ini`)**
24+
25+
Make sure these values are high enough for the files you want to upload:
26+
27+
```ini
28+
upload_max_filesize = 2G
29+
post_max_size = 2G
30+
max_execution_time = 600
31+
max_input_time = 600
32+

0 commit comments

Comments
 (0)