|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-01-18 04:50 UTC] aharvey@php.net
-Status: Open
+Status: Feedback
[2011-01-18 04:50 UTC] aharvey@php.net
[2011-01-18 08:55 UTC] pajoye@php.net
-Status: Feedback
+Status: Bogus
[2011-01-18 08:55 UTC] pajoye@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 20:00:01 2025 UTC |
Description: ------------ Adding "extension=php_interbase.dll" to the end of php.ini causes Apache 2.2 to fail to start ANY services. Without "extension=php_interbase.dll", ibase_connect fails as an undefined function, so Interbase is not enabled as a service by default even though php.ini contains the basic defaults such as "ibase.allow_persistent = 1". This system is also running PHPEd, with its associated PHP which works fine. When bypassing Apache and confining the pages to PHPEd, everything works. The "extension=php_interbase.dll" is in the PHPEd php.ini. The InterBase server is running on this system, and PHPEd has no trouble finding it without any explicit directions. Either there is another way to enable InterBase on 5.35, or something is wrong. Test script: --------------- $DBUser='MAINUSER'; $DBPass='MAINPASS'; $DB=ibase_connect('127.0.0.1:C:/SDB/George.gdb', $DBUser, $DBPass); Expected result: ---------------- ibase_connect should be recognized as a valid function. Actual result: -------------- ibase_connect is declared an undefined function.