You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apache-bugdb@apache.org by ma...@apache.org on 1998/10/01 00:17:07 UTC

Re: mod_auth-any/2550: No such file or directory: could not open dbm auth file: /etc/dbmpasswd

[In order for any reply to be added to the PR database, ]
[you need to include <ap...@Apache.Org> in the Cc line ]
[and leave the subject line UNCHANGED.  This is not done]
[automatically because of the potential for mail loops. ]
[If you do not include this Cc, your reply may be ig-   ]
[nored unless you are responding to an explicit request ]
[from a developer.                                      ]
[Reply only with text; DO NOT SEND ATTACHMENTS!         ]


Synopsis: No such file or directory: could not open dbm auth file: /etc/dbmpasswd

State-Changed-From-To: open-feedback
State-Changed-By: manoj
State-Changed-When: Wed Sep 30 15:17:04 PDT 1998
State-Changed-Why:
I don't understand what the bug is here. As you've seen,
dbmmanage creates a DB file by default. So, mod_auth_db
works. mod_auth_dbm fails because it is looking for a DBM.

If your bug is that dbmmanage is not creating DBMs, then you
can change this. 

Look at the line:

BEGIN { @AnyDBM_File::ISA = qw(DB_File NDBM_File GDBM_File) }

Reorder the qw() structure so that the type of file you want
comes first. If you want NDBM files by default, use:

BEGIN { @AnyDBM_File::ISA = qw(NDBM_File DB_File GDBM_File) }

for example.

Please reply telling us what bug you are reporting
specifically, or if the above change fixes your problem.
Severity-Changed-From-To: critical-non-critical
Severity-Changed-By: manoj
Severity-Changed-When: Wed Sep 30 15:17:04 PDT 1998