On Thursday 06 September 2001 13:31, Stephane MOREL wrote:
> Hi all
> I'm new on PHP. I've installed PHP interbase Apache correctly. But I
> would like to connect Interbase database through PHP. So I enable
> interbase support for php by doing this :
> ./configure --with-interbase --with-apache --enabled-track-vars

if you compile with --with-apache, you'll have to recompile apache too. You 
can compile it as a shared module --with-apxs=<path to your apxs>.

Note: you'll need Apache development stuff (Depends on your distro).

Any way after running make install make sure you've restarted Apache.

> make
> make install
> Evreything works fine
> When I do this :
> <?
> $conn=ibase_connect("192.168.2.2:/opt/interbase/examples/employee.gdb",
> "SYSDBA", "masterkey");
> if (!$conn)
> { echo "Access Denied!";
> exit; }
> ?>
> my browser say :Call to undifined function :ibase_connect.
> I understood that I must enable the extension in php.ini. I think the
> extension was automatically added to my php.ini but I can not find any
> entry in php.ini for interbase.
> If someone could help
> TIA
>
> Steph

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to