PrintVault: remove GCode segment cap + fix PHP upload limits
Deploy HouseHub / deploy (push) Successful in 2s

- PHP upload: 20M → 300M, post_max: 25M → 310M, memory: 256M → 512M
- GCode parser: no segment cap (full file), flat array format for compact JSON
  491k segments = 0.8s parse, 17MB JSON on 80MB GCode file
- Viewer JS updated for flat array stride-7 format

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
perco
2026-05-15 11:46:13 +02:00
co-authored by Claude Sonnet 4.6
parent 237de1e529
commit f2b1c05356
3 changed files with 36 additions and 32 deletions
+5 -3
View File
@@ -1,3 +1,5 @@
upload_max_filesize = 20M
post_max_size = 25M
memory_limit = 256M
upload_max_filesize = 300M
post_max_size = 310M
memory_limit = 512M
max_execution_time = 120
max_input_time = 120