Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/0a44cb9fbef09be58ab26565a14e36c033eadc5a?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
examples/mqttRSSI/mqttRSSI.ino
@ -283,7 +283,7 @@ String saveParams(AutoConnectAux& aux, PageArgument& args) {
AutoConnectRadio & period = mqtt_setting - > getElement < AutoConnectRadio > ( " period " ) ;
AutoConnectRadio & period = mqtt_setting - > getElement < AutoConnectRadio > ( " period " ) ;
updateInterval = period . value ( ) . substring ( 0 , 2 ) . toInt ( ) * 1000 ;
updateInterval = period . value ( ) . substring ( 0 , 2 ) . toInt ( ) * 1000 ;
String uniqueid = mqtt_setting - > getElement < AutoConnectInput > ( " uniqueid " ) . value ;
bool uniqueid = mqtt_setting - > getElement < AutoConnectCheckbox > ( " uniqueid " ) . checked ;
AutoConnectInput & hostname = mqtt_setting - > getElement < AutoConnectInput > ( " hostname " ) ;
AutoConnectInput & hostname = mqtt_setting - > getElement < AutoConnectInput > ( " hostname " ) ;
hostName = hostname . value ;
hostName = hostname . value ;
@ -305,7 +305,7 @@ String saveParams(AutoConnectAux& aux, PageArgument& args) {
echo . value + = " User Key: " + userKey + " <br> " ;
echo . value + = " User Key: " + userKey + " <br> " ;
echo . value + = " API Key: " + apiKey + " <br> " ;
echo . value + = " API Key: " + apiKey + " <br> " ;
echo . value + = " Update period: " + String ( updateInterval / 1000 ) + " sec.<br> " ;
echo . value + = " Update period: " + String ( updateInterval / 1000 ) + " sec.<br> " ;
echo . value + = " Use APID unique: " + uniqueid + " <br> " ;
echo . value + = " Use APID unique: " + String ( uniqueid = = true ? " true " : " false " ) + " <br> " ;
echo . value + = " ESP host name: " + hostName + " <br> " ;
echo . value + = " ESP host name: " + hostName + " <br> " ;
return String ( ) ;
return String ( ) ;