> $file_to_name = "/cgi-bin/passwd~1"; #Name the file
> open(file_handler,$file_to_name); #Open the file
> @lines_to_read = <file_handler>; #Read it into an array
> close(file_handler);   #Close the file
> print @lines_to_read;  #Print the array

There is no file called "/cgi-bin/passwd~1"; use the full path.
Alternatively, a relative path could be used (e.g. "passwd~1"). A second
alternative is to set a var in the .conf files specifying the name of the
password file.

ELB

--
Eric L. Brine  |  Chicken: The egg's way of making more eggs.
[EMAIL PROTECTED]  |  Do you always hit the nail on the thumb?
ICQ# 4629314   |  An optimist thinks thorn bushes have roses.

Reply via email to