in reply to appending a file
You might get few more clues with:open(DATABASE, ">>/http01/cgi-bin/form/db/db.txt")
You might try looking at the server logs.my $fname="/http01/cgi-bin/form/db/db.txt" open(DATABASE,">>$fname") || die " $fname $!";
You might try posting how the "not working" manifests itself. No data in file? error message? bad data in the file?
Hope this helps
|
|---|