Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/esp-link/commit/e3d150a6c5d8788960e636fe13835594dbd888bf?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

From os_printf to DBG

pull/84/head
KatAst 9 years ago
parent 7fea51185a
commit e3d150a6c5
  1. 2
      esp-link/cgiwifi.c

@ -821,7 +821,7 @@ int ICACHE_FLASH_ATTR checkString(char *str){
// Alphanumeric and underscore allowed // Alphanumeric and underscore allowed
if (!(isalnum((unsigned char)str[i]) || str[i] == '_')) if (!(isalnum((unsigned char)str[i]) || str[i] == '_'))
{ {
os_printf("Error: String has non alphanumeric chars\n"); DBG("Error: String has non alphanumeric chars\n");
return 0; return 0;
} }
} }

Loading…
Cancel
Save