|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-10-13 04:02 UTC] cja at arte dot ru
"driver initialization failed" warning happened
when i tried to do
smth like this
dba_open("./anybase.dbm", "c", "gdbm");
i compiled PHP with dba_support
and with --with-GDBM key...
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 05:00:01 2025 UTC |
The user with which you run Apache (?) with doesn't have write access to the current directory. You can check this by changing the path to /tmp/ e.g. dba_open("/tmp/anybase.dbm", "c", "gdbm"); or making the current directory writeable for all (chmod a+w) --Jani