I'm using flat file for a minimal effort install on Compaq OSF 4.0 platform. I would like to use dbm/dba for the MostPopular feature to work. However, if I configure that way, the screens come up blank.
php4.0.5
thanks for any help
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm using flat file for a minimal effort install on Compaq OSF 4.0 platform. I would like to use dbm/dba for the MostPopular feature to work. However, if I configure that way, the screens come up blank.
php4.0.5
thanks for any help
The most likely cause for this is that PHP doesn't have the 'gdbm' driver compiled into the dba
Here's the first thing to try:
Edit line 39 of lib/dbalib.php. Change:
... @dba_open($file, "c", "gdbm") ...
to
... @dba_open($file, "c", "db2") ...
Also see the notes near the bottom of:
http://phpwiki.sf.net/phpwiki/?Robert%20Brook
If that doesn't work, write back.
Jeff
Aha, I do not have dbm/dba/gdbm support installed in PHP. I'll try rebuilding PHP.