Hello all,

I am attempting to open and/or create a DBASE file on a NOVELL network.

When I attemp a command such as
  if (!dbase_open("C:\\orders.dbf",2)){
   print "COULD NOT OPEN DB";
  }else{
   print "DB WAS OPENED";
  }

I receive a message that says "DB WAS OPENED - no problem...

On my IIS server, I have Novell drive map to P: - I can browse this using
explorer or in CMD I can go to P: and do DIR etc etc.

When I try :
  if (!dbase_open("P:\\orders.dbf",2)){
   print "COULD NOT OPEN DB";
  }else{
   print "DB WAS OPENED";
  }

I receive a message that says :
Warning: unable to open database P:\orders.dbf in
C:\InetPub\wwwroot\pappreport.php on line 81
COULD NOT OPEN DB

Yes, the database exists, as I copied it FROM here to C:\ to do my test.

Any ideas??? I have checked the PHP.INI file, and all the regular settings
in IIS - and could not find anything misconfigured.. but I am by no means an
IIS expert, so I am not sure.

Thanks in advance
Dave




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to