This one baffles me:
> print "<p>$listfn, I guess we got here.</p>\n";
>
> # write additions to their file
> open(LISTFILE, ">>$listfn") || print "<p class=error>$listfn could not be
> written: $!\n";
> print LISTFILE join("\n", @newlist, "");
> close(LISTFILE);
>
> print "<p>Here too?</p>\n";
This is part of a CGI script that I�ve written. It prints the first �...we
got here�, but doesn�t get past the �open� statement, and it doesn�t print
the �could not be written� message.
Typical value of $listfn: ./lists/123.456.789.123-38267
The script resides in /cgi-bin, and there�s a folder /cgi-bin/lists with
permissions 777 (I�ve tried other permissions w/o success). It just doesn�t
want to create a file within that folder.
Any ideas why?
Thanks in advance! You all are great!
- Bryan