Subject | Re: [firebird-php] please help me to connect firebird with xampp on windows 7. |
---|---|
Author | Frank |
Post date | 2012-09-04T09:12Z |
On 02/09/12 20:29, amrit sandhu wrote:
Install xammpp to c:\xampp
I had to change the Apache Port to 8080 as windows 7 has its own
http.sys listening on Port 80.
Then I followed mainly
http://www.ot55.net/blog/index.php?p=218&wpmp_switcher=mobile
As I already had a working Firebird 2.5 version, I simply copied
fbclient.dll from my existing Firebird/bin folder to
c:\xampp\apache\bin
modified php.ini as mentioned in above blog post
I had to modify status.php and FirebirdTest.php a bit because of my
existing Firebird installation and the different Apache port:
status.php:
...
line($TEXT['status-ssi'], $ssi);
if (file_exists("$partwampp\\htdocs\\xampp\\FirebirdTest.php")) {
$a = @file("http://{$hostauth}{$host}:8080/xampp/FirebirdTest.php");
$fbi = $a[0];
line("Firebird", $fbi);
}
...
FirebirdTest.php:
<?php
if(@ibase_connect('localhost:C:\Program Files
(x86)\Firebird\Firebird_2_5\examples\empbuild\employee.fdb', 'sysdba',
'myfirebirdpassword')) {
echo "OK";
} else {
echo "NOK";
}
?>
http://localhost:8080/xampp/FirebirdTest.php then should return 'OK'
hth
fsg
--
"Fascinating creatures, phoenixes, they can carry immensely heavy loads,
their tears have healing powers and they make highly faithful pets."
- J.K. Rowling
> Hello,I m looking for Urgent help, step by step instruction to install firbird with xampp(PHP).Here is what I did:
> I m new to firebird and want to learn firebird,please help me to connect firebird with xampp on windows 7.
>
> I
> m trying for Last 3 days on google,but nothing found,Tried too many
> things but getting this error again and again "Warning: ibase_connect()
> [function.ibase-connect]: Unable to complete network request to host
> "localhost". Failed to establish a connection."
> Please Help As soon As Possible. Thanks In Advance.
Install xammpp to c:\xampp
I had to change the Apache Port to 8080 as windows 7 has its own
http.sys listening on Port 80.
Then I followed mainly
http://www.ot55.net/blog/index.php?p=218&wpmp_switcher=mobile
As I already had a working Firebird 2.5 version, I simply copied
fbclient.dll from my existing Firebird/bin folder to
c:\xampp\apache\bin
modified php.ini as mentioned in above blog post
I had to modify status.php and FirebirdTest.php a bit because of my
existing Firebird installation and the different Apache port:
status.php:
...
line($TEXT['status-ssi'], $ssi);
if (file_exists("$partwampp\\htdocs\\xampp\\FirebirdTest.php")) {
$a = @file("http://{$hostauth}{$host}:8080/xampp/FirebirdTest.php");
$fbi = $a[0];
line("Firebird", $fbi);
}
...
FirebirdTest.php:
<?php
if(@ibase_connect('localhost:C:\Program Files
(x86)\Firebird\Firebird_2_5\examples\empbuild\employee.fdb', 'sysdba',
'myfirebirdpassword')) {
echo "OK";
} else {
echo "NOK";
}
?>
http://localhost:8080/xampp/FirebirdTest.php then should return 'OK'
hth
fsg
--
"Fascinating creatures, phoenixes, they can carry immensely heavy loads,
their tears have healing powers and they make highly faithful pets."
- J.K. Rowling