http://qs321.pair.com?node_id=11123186


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

Do you mean this wouldn't be rendered? It is outputted sometimes, between either a 500 page or a software error message regarding failing to find a sub routine.
<!doctype html> <html> <head> <title>$pageTitle</title> </head> <body></body> </html>

Replies are listed 'Best First'.
Re^3: Why server error out with module
by hippo (Bishop) on Oct 26, 2020 at 15:44 UTC

    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!


    🦛

      Thank you for the 'print' advice.