Click here to Skip to main content
15,894,337 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
when i run my flask server, i get this message spammed about every 15 seconds

why is this? how can i stop it?

What I have tried:

192.168.1.42 - - [24/Jul/2019 14:08:35] "POST /inform HTTP/1.1" 404 -
Posted
Updated 24-Jul-19 3:50am

1 solution

Quote:
What does this mean in flask?

The error message tells you there is a problem, you have to track down which page is not found and correct the request.
192.168.1.42 : Ip V4 address
[24/Jul/2019 14:08:35] : DateTime
"POST /inform HTTP/1.1" : Escaped text to highlight it
404 : Typical error number for "Page not found" (in internet domain)

You probably have some server logs that give more details on the error.
 
Share this answer
 
Comments
daviddoyyer32 24-Jul-19 10:22am    
I have been to every page on my website and they are all there.
Dave Kreskowiak 24-Jul-19 11:12am    
No, it's not that. A POST request is coming in, probably for a URL that doesn't exist. From what you posted, it looks like the POST is specifying either a page (with no extension) called "inform", or no page under a folder called "inform".

This is probably coming from a badly formatted URL from somewhere. There isn't enough information in what you posted to determine exactly what sent the request.
Patrice T 24-Jul-19 11:13am    
The error message is useless, there is more information somewhere.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900