in reply to Re: file input problem
in thread file input problem

The reason you are getting 500 error is becuase you are not printing anything out if the username and password don't match. You need to do an else statement after the if ($pass eq $refpass && $log eq $reflog) that prints out invalid login or something, to account for failed logins.

-thabenksta
my $name = 'Ben Kittrell'; $name=~s/^(.+)\s(.).+$/\L$1$2/g; my $nick = 'tha' . $name . 'sta';

Replies are listed 'Best First'.
Re: Re: Re: file input problem
by Anonymous Monk on Apr 25, 2001 at 22:56 UTC
    THANK YOU thabenksta!!!!

    although I can't use the else the way the script is now, you were 100% right... no more 500's...

    I have taken some of the other suggestions to heart as well... so thanks to everyone who replied!!!

    now if I knew how to delete the question...