mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-28 01:25:49 +03:00
[GH-ISSUE #351] Problem with WiFi.scanNetworks(); #295
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#295
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 @nhaduy99 on GitHub (Apr 8, 2017).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/351
Hi,
I am using this library but sometimes the config AP portal doesn't show off when scanning the local wifi (page 192.168.4.1/?wifi). I check on the Serial Monitor:
*WM: Scan done
*WM: Yamaha
*WM: -60
*WM: My Dung_plus
*WM: -87
*WM: Sent config page
Sometimes the web appears with missing parts and one weird word of: "CTYPE html>" appeared. I searched that this wear word appears when the web is not fully HTML website.
How do I fix this?
Best regards,
Seppy
@svh1985 commented on GitHub (Apr 29, 2017):
I'm having the same issues; especially when there are a lot of wifi networks around.
@tablatronix commented on GitHub (Aug 27, 2017):
How many aps?
I have 25 and have never encountered this
@svh1985 commented on GitHub (Aug 27, 2017):
I can test it when I'm back home, we have 40+ WiFi networks from all the neighbours at home.
@tablatronix commented on GitHub (Aug 27, 2017):
k
interestingly enough I am having a similar symptom unrelated to this issue
@svh1985 commented on GitHub (Aug 27, 2017):
I'm guessing that it has something to do with the ESP running out of memory when it has to do all the "find & replace" actions during the HTML output generation.
@tablatronix commented on GitHub (Aug 27, 2017):
Yeah I am going to check the output and see whats mangled, oddly mine only occurs if i am not calling handleclient fast enough, so there is some asynchronous problems with the server handling.
@tablatronix commented on GitHub (Aug 27, 2017):
_apnameis const char and getting lostrefactoring in my dev branch required me to change this anyway for non blocking mode, and inadvertently fixes this bug also. Basically change _apname and _appassword to strings, much easier to deal with.
Possible we will have to restructure
_customHeadElementas well