This post also appears in Italian at
http://forum.arduino.cc/index.php?topic=208512.0
I have followed the excellent posts at the link above to send sensor data from arduino to emoncms.org. I am using a local lan server with emoncms installed under www/emoncms on a WAMP setup. The address is 192.168.xxx.xxx/emoncms. How do I direct the arduino sketch to the local IP + the /emoncms directory instead than to the public server at emoncms.org? So far I get an error 404 when I tried using the "no DNS" line.
//Emoncms configurations
//char server[] = "emoncms.org"; // name address for emoncms.org
IPAddress server(192, 168, xxx, xxx); // numeric IP for emoncms.org (no DNS)
I still need to point to /emoncms somewhere to send the data appropriately.
My local setup works well as I have been able to send data manually following Mirco's test suggestions in his guide here, by specifying the full address including /emoncms). I also tried an .htaccess redirect on the server side which worked well when logging in, but not when data was getting sent by arduino through the GET request.
Thanks for any help.