WeatherDuino Forum
[SOLVED]4Pro DB - No answer from the web server - Printable Version

+- WeatherDuino Forum (https://www.meteocercal.info/forum)
+-- Forum: Weather Stations & Environmental Measurement Equipment - WeatherDuino 4Pro Line (https://www.meteocercal.info/forum/Forum-Weather-Stations-Environmental-Measurement-Equipment-WeatherDuino-4Pro-Line)
+--- Forum: 4Pro Weather Stations - Receivers (https://www.meteocercal.info/forum/Forum-4Pro-Weather-Stations-Receivers)
+---- Forum: User support forum for 4Pro Weather Station Receivers (https://www.meteocercal.info/forum/Forum-User-support-forum-for-4Pro-Weather-Station-Receivers)
+---- Thread: [SOLVED]4Pro DB - No answer from the web server (/Thread-SOLVED-4Pro-DB-No-answer-from-the-web-server)



[SOLVED]4Pro DB - No answer from the web server - chrisww - 06-09-2021

When I point my browser to the 4pro IP all I get is  404: Not found
I can ping it ok.

Here is part of my config file.

Code:
// --------------------------------------------------------------------------------------
//   Enable / Disable WiFi connection
// --------------------------------------------------------------------------------------
#define ENABLE_WIFI     1                          // 1= Enable WiFi connection, 0= Disable


// --------------------------------------------------------------------------------------
//   Broadcasting data to Wireless Display Units using WiFi
// --------------------------------------------------------------------------------------
#define BROADCAST_DATA      1         // 0= Disables Data Relay, 1= Enables Data Relay
#define UDP_BROADCAST_PORT  9889      // Define the UPD broadcast port


// --------------------------------------------------------------------------------------
//   Enable / Disable send data to Weather Wunderground
// --------------------------------------------------------------------------------------
#define ENABLE_WU_UPLOAD   0                         // 1= Enable upload to Wunderground, 0= Disable
#define WU_UPLOAD_INTEMP   0                         // 1= Enable upload of Inside Temperature / Humidity, 0= Disable
byte    WU_upload_period = 6;                        // Period in minutes between uploads to WU. (Should be >= 4 minutes)  


// --------------------------------------------------------------------------------------
//   Enable / Disable send data to WeatherCloud
//   ATTENTION - You can only change the default 10 minutes interval, if you have an WeatherCloud Pro or Premium account
// --------------------------------------------------------------------------------------
#define ENABLE_WC_UPLOAD   0                         // 1= Enable upload to WeatherCloud, 0= Disable
#define WC_UPLOAD_INTEMP   0                         // 1= Enable upload of Inside Temperature / Humidity, 0= Disable
byte    WC_upload_period = 10;                       // Period in minutes between uploads to WC (Default for free and PLUS accounts is 10 minutes)


// --------------------------------------------------------------------------------------
//   Enable / Disable Air Quality send data to ThingSpeak
// --------------------------------------------------------------------------------------
#define ENABLE_TS_UPLOAD   0                         // 1= Enable, 0= Disable


// --------------------------------------------------------------------------------------
// Enable / Disable Air Quality send data to your own server ----
// Be sure you have already created the database and table. See AirQuality_LogToSQL.php script for info
// --------------------------------------------------------------------------------------
#define ENABLE_AQM_TO_MYSERVER    0                 // 1= Enable, 0= Disable


// --------------------------------------------------------------------------------------
//   Enable / Disable internal Web Server
// --------------------------------------------------------------------------------------
#define ENABLE_WEBSERVER      1                       // 1= Enable 0= Disable
#define WEBSERVER_PORT       80                       // WebServer port (default 80)



RE: 4pro Rx web server problems - werk_ag - 06-09-2021

Hello chrisww,

Please add /weather to IP address of the 4Pro DB receiver.

Rgs.


RE: 4pro Rx web server problems - chrisww - 07-09-2021

(06-09-2021, 21:33)Werk_AG Wrote:  Hello chrisww,

Please add /weather to IP address of the 4Pro DB receiver.

Rgs.

Thanks, working now.
Chris.