http://www.perlmonks.org?node_id=11123188


in reply to Re^2: Why server error out with module
in thread Why server error out with module

My mistake - you are quite right. I had missed the print qq($doctypeAndHeader); line. You don't need to quote a single variable when you print it like that, BTW. print $doctypeAndHeader; will do just as well and might be less confusing.

So, you should be seeing this on each call. If not, check the webserver error log for the reasons. Good luck!


🦛

Replies are listed 'Best First'.
Re^4: Why server error out with module
by keen2learn (Novice) on Oct 28, 2020 at 18:29 UTC
    Thank you for the 'print' advice.