ID:               13660
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Feedback
+Status:           No Feedback
 Bug Type:         DBM/DBA related
 Operating System: Linux kernel 2.4.10 i686
 PHP Version:      4.0.6
 New Comment:

No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.




Previous Comments:
------------------------------------------------------------------------

[2002-08-28 12:57:41] [EMAIL PROTECTED]

think you can try a recent non-stable snapshot?

------------------------------------------------------------------------

[2002-06-11 08:25:08] [EMAIL PROTECTED]

For anyone else with this problem:

Apparently calling the optimize function immediately after the create
will set everything back to nulls so the script itself is removed:

$dbRC = dba_optimize($dbID);

I would still like to know how the default size is determined of the
database file.  I guess I will look for that info on GNU sites though.

------------------------------------------------------------------------

[2002-05-29 09:22:48] [EMAIL PROTECTED]

I have seen the same thing.  It only seems to happen to me when I am
including other php files.  If I take out all require()'s, the db is
zero'ed out again.

Any suggestions?

------------------------------------------------------------------------

[2001-10-13 11:49:31] [EMAIL PROTECTED]

Show the script below the text.

When I create a new db file, extras data has been stored. 
In all cases, it was the script itself (ask me if you need 
the new db file directly).
I think it's a bug (or a new backup feature ;).

Config details :
gdbm 1.8.0
libc6
kernel 2.4.10
data on a reiserfs partition

Is it due to a default filesize ?
If yes do you make a zero fill of the extra memory used ?

<?
$id = dba_open("/tmp/test2.db","n","gdbm");
if(!$id){
        echo "Erreur dba_open";
        exit;
}
dba_replace("key","This a test!",$id);
if(dba_exists("key",$id)){
        echo dba_fetch("key",$id);
}else{
        echo "Not found";
}
dba_close($id);
?>


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=13660&edit=1

Reply via email to