Subject Re: [firebird-php] Firebird, PHP on CentOS 5 again
Author Anderson Farias
Hi,

> I've too little knowledge to understand this post:
> http://tech.groups.yahoo.com/group/firebird-php/message/2703
>
> Is there by now a more simple procedure to get php-firebird going on
> CentOS 5.3 with an existing Firebird 2.1.2 and PHP 5.1.6 installation?

Well, the steps I folow is install php5-dev (so I get php build tools like
phpize) and download the sources for the php version in use. Than folow
build process. Example:

# cd /home/someuser/phpsources/ext/interbase
# phpize
# ./configure --with-interbase=shared,/opt/firebird
# make
# cp modules/interbase.so /usr/lib/php5


You must edit php.ini adding:

extension = interbase.so;

and last, restart apache.


Regards,
Anderson Farias