WeatherDuino Forum

Full Version: [SOLVED]4Pro DB - No answer from the web server
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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)
Hello chrisww,

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

Rgs.
(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.