I'm trying to use the dbase library in php5.3 to open a .dbf file. I've got the dbase.so library installed and active on my php5 build and I'm executing the following code:
$db = dbase_open('CMX.dbf', 0);
if( $db ){
echo 'success';
dbase_close($db);
}
Where CMX.dbf is a Visual FoxPro9 data table and is located in the same directory as the executing script with read/write/execute permissions enabled.
The following is an exert from /var/log/apache2/error.log:
PHP Warning: dbase_open(): unable to open database CMX.dbf in /var/www/test.php on
line 28
As this error/warning is not very descriptive, I'm having issues tracking down the root cause. Can anyone help with this?
