From: [EMAIL PROTECTED]
Operating system: freebsd 4.2 and 4.1
PHP version: 4.0.4pl1
PHP Bug Type: InterBase related
Bug description: php forces the apache to wait for ever
workaround: apache 1.3.14 + ssl + interbase (firebird 1.0) + 4.04pl1
<?
function ib6_LogOn($username='',$password='',$connectto) {
$conn = ibase_connect("/usr/interbase/$connectto", $username, $password,'ISO8859_1');
if (!$conn || ibase_errmsg()) ib6_errorlogs();
return $conn;
}
$conn = ib6_logn('test','test','test.gdb');
print "Connection $conn<br>\n";
ibase_close($conn);
?>
when exec, this small script in a very fast sequence, php forces the apache for ever.
the apache is still working fine, when u exec a script that doesn't use ib6.
the browser responses: Doc. contains no data (500)
php doesn't seem to disconnect the connection.
--
Edit Bug report at: http://bugs.php.net/?id=9990&edit=1
--
PHP Development 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]