mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1787] 13 custom fields renders 4/10 times on ESP8266 #1504
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#1504
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @F1p on GitHub (Dec 24, 2024).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1787
I have a reasonable sized project, running 13 custom fields and have an issue on the ESP8266 where 4/10 times the custom fields render blank on refresh (as per screenshots) but issue doesn't seem to impact the ESP32. Any idea's why this might happen?
Running the latest master branch,
ESP8266 running
Core version
3.1.2
Boot version
31
CPU frequency
160MHz
Memory - Free heap
12912 bytes available
Memory - Sketch size
Used / Total bytes
489296 / 3143504
@F1p commented on GitHub (Dec 29, 2024):
Might be an issue improved by adjusting MMU to 16KB Cache + 48K IRAM instead of balanced (32/32K)
@tablatronix commented on GitHub (Dec 30, 2024):
Its probably memory, the html is output as a string on the stack, If you are using alot of params this can be optimized by using chunked outputting and allocated buffers, I think there is an issue here to start looking into it..
#1319
#518
@F1p commented on GitHub (Dec 30, 2024):
Thanks, will try chunked response for now
@timr49 commented on GitHub (Jun 29, 2025):
Hi F1p, not sure how you went with the previous suggestion to try chunked responses. If helps, I developed a chunking enhancement for WiFiManager, which you can get from branch Chunking in the repo https://github.com/timr49/WiFiManager
It is described in https://github.com/timr49/WiFiManager/blob/Chunking/PAGE.md