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


in reply to 302 Found Location Message

print header; print start_html("Login"); ... print redirect("http//192.168.1.5/train/main.htm");

You can't use both redirect and output something else to the browser. If I understand what your code is doing, you probably want to wait with outputting the header and HTML until it's clear the user isn't being redirected.

I see a few more points in your code that could be improved:

Replies are listed 'Best First'.
Re^2: 302 Found Location Message
by Walter_T (Initiate) on Mar 09, 2020 at 18:10 UTC
    Thank you haukex. I will look over my code and take a look at Mojolicious. Thank you again for your help.