in reply to Re^2: Non-CGI perl scripts on a web server?
in thread Non-CGI perl scripts on a web server?
Every request to a HTTP server is supposed to return something. There is no empty reply.
If there really is "nothing" to return, consider either outputting a redirect:
Status: 302 Location: http://somewhere.example.com/
... or alternatively, outputting a page that says "Request submitted, thank you.".
|
|---|