While attempting to convert some code to run on a Debian/Stable box†, I have encountered an error that has me truly stumped.
I have a script that generates static HTML pages using data from a dbm, and templates used by the dynamic ortions of the site - thus it needs to use HTML::Mason and MLDBM at the same time. However, the line that ties the dbm:
tie %Data, 'MLDBM', 'linkdata.dbm', O_RDONLY, 0640 or die "Tie Failed +on 'linkdata.dbm': $!\n";
generates the following error:
MLDBM error: Second level tie failed, "No such file or directory" at . +/dbmreader_mason.pl line 34 Tie Failed on 'linkdata.dbm': No such file or directory
The file is clearly there; I can see it, and wrapping the offending line in 'if (-e $filename) { ... }' still causes it to be executed. There is no NFS or symlink weirdness going on, the file has the right permissions, and it happens irrespective of whether I use an absolute path or not.
I know this is a Mason issue, as removing all references to HTML::Mason causes the script to run without errors (though also without doing anything useful).
I have a vague recollection of something similar happening when the options given to MLDBM in the script are different from those in Mason's configuration ('/etc/apache/mason_handler.pl', iirc) - but in this case, both are using DB_File and Storable.

Anyone experienced anything similar or have any advice?

†: This means I'm using Perl 5.053, Mason 0.72-1 and MLDBM 2.00-6. Unforunately I don't have root on this machine, so installing newer versions of packages is not an option.

In reply to HTML::Mason and MLDBM by kilinrax

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.