|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-08-14 02:09 UTC] sniper@php.net
[2003-08-14 04:26 UTC] fabio_heller at yahoo dot it
[2003-08-15 08:50 UTC] sniper@php.net
[2003-08-15 14:33 UTC] helly@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 15:00:01 2025 UTC |
Description: ------------ Using mod php 4.3.2 on Apache 1.3.27 phpinfo() says thah supported handlers are cdb, cdb_make, db3, flatfile. dba extension enabled. It is not a permission problem as "flatfile" handler works as expected Reproduce code: --------------- <?php $id = dba_open('d:/www_new/xyz.db', 'c', 'db3') ; dba_replace('fookey', 'foovalue', $id) ; dba_close($id) ; ?> Expected result: ---------------- File creation and no driver initialization errors, instead only 'flatfile' works as expected Actual result: -------------- ------------- Warning: dba_open(d:/www_new/xyz.db,c): Driver initialization failed for handler: db3: Permission denied in d:\www_new\sqlite\dba.php on line 5 Warning: dba_replace(): supplied argument is not a valid DBA identifier resource in d:\www_new\sqlite\dba.php on line 7 Warning: dba_close(): supplied argument is not a valid DBA identifier resource in d:\www_new\sqlite\dba.php on line 9 ----------------- Anyway *** file is created *** in spite of errors