Chat freely about anything...

User avatar
By Yasir Ateeq
#30754 Yes ,see these interesting and curious things

Code: Select allGET http://192.168.8.101/receiver.php?apples=93&oranges=75 

working in browser perfectly on my notebook ,and even tried on my cell phone browser ,working there as well
but for ESp8266 is not working
Code: Select allAT+CIPSEND=74\r\n
GET /receiver.php?apples=87&oranges=90 HTTP/1.0\r\nHost: 192.168.8.101\r\n\r\n\r\n\



For the above command when i saw the wamp access log its says 408 --->i think it is request time out ,i even increase the max_exc _time in php.ini (i have even attached the access log for refrence)
but of no use though these indiviual commands are working fine
Code: Select allGET /receiver.php?oranges=43 HTTP/1.0\r\nHost: 192.168.8.101\r\n\r\n\n

GET /receiver.php?apples=13 HTTP/1.0\r\nHost: 192.168.8.101\r\n\r\n\r\n

I am really stuck in something in which i i have no clue yet !.... :(
Attachments
(14.01 KiB) Downloaded 490 times
User avatar
By EspFan
#30762 FYI, You can leave out the "Host:" header since you are communicating via IP. Host is only required when you have a domain involved. But that will not cause the problem you are having.

What does the rest of your code look like? Can you post the full code?