void WiFiManager::startWebConfig() {
DEBUG_PRINT("");
DEBUG_PRINT("WiFi connected");
DEBUG_PRINT(WiFi.localIP());
DEBUG_PRINT(WiFi.softAPIP());
/* <---- comment this block out
if (!mdns.begin(_apName, WiFi.localIP())) {
DEBUG_PRINT("Error setting up MDNS responder!");
while (1) {
delay(1000);
}
}
DEBUG_PRINT("mDNS responder started");
*/
// Start the server
server.begin();
===
int WiFiManager::serverLoop()
{
// Check for any mDNS queries and send responses
// mdns.update(); <--- comment this out
// Check if a client has connected
WiFiClient client = server.available();
Then upload again should be OK.