NeverMore has asked for the wisdom of the Perl Monks concerning the following question:
What could be the problem? The permissions should be fine, to test it, I chmoded everything to 777; the script, the directory...#!/usr/bin/perl use CGI qw(:all); use MLDBM qw(DB_File); use Fcntl; print header; print start_html; tie(%messages, 'MLDBM', 'messages', O_CREAT|O_RDWR, 0777) || print "$! +";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tie() doesn't work
by geektron (Curate) on Dec 30, 2000 at 06:25 UTC | |
|
Re: Tie() doesn't work
by ichimunki (Priest) on Dec 30, 2000 at 06:22 UTC | |
|
Re: Tie() doesn't work
by eg (Friar) on Dec 30, 2000 at 06:03 UTC | |
by NeverMore (Acolyte) on Dec 30, 2000 at 06:08 UTC | |
by tye (Sage) on Dec 30, 2000 at 06:42 UTC |