[PHP-DEV] Warning: Unable to open database file From: Tiago Edgar Padilha (padilha <email protected>)
Date: 01/29/00

I use Linux, Php 3.012 and Apache server on my server. I wrote a script
that acess a dbase files with dbase_open function, I able the read-write
attributes of these files to all users. I run the script with the
function mode read only, it functs correctly, but I change this mode to
write only or read-write, it return a warning like the file didn't have
th attirbutes from read write to all users.

OBS: The database used in example exists.

Here it's the example that I used:

<? php
$db = "/tmp/test.dbf";
$handle = dbase_open($db,1);
?>

Or:

<?php
$db = "/tmp/test.dbf";
$handle = dbase_open($db,2);
?>

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>