ID: 22056 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Feedback Bug Type: InterBase related Operating System: Linux (Kernel 2.4.20) PHP Version: 4.3.0 New Comment:
Please compile your PHP with --enable-debug flag and generate the backtrace of the crash. Once you have the backtrace please post it here. Previous Comments: ------------------------------------------------------------------------ [2003-02-04 17:05:23] [EMAIL PROTECTED] installed supplied snapshot - 4.3.1-dev Unfortunatly i get the same results! ------------------------------------------------------------------------ [2003-02-04 15:36:02] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-STABLE-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-STABLE-latest.zip ------------------------------------------------------------------------ [2003-02-04 15:09:06] [EMAIL PROTECTED] When executing a script from command line (php -f script.php) i get a segmentation fault after successfully finishing the script. This only happens, when using the ibase functions. Replacing them with mysql everything works fine. executing the script by calling it from a browser it works too. This only happens, when using command-line-interface and ibase-functions. tried the following with same result: - using ibase_prepare, ibase_execute instead of ibase_query - explicit start and commit of transactions - ibase_pconnect instead of ibase_connect Here's the script i use: <?php exec("wget -q http://gateway/accounting/ip.cgi"); $hnd=fopen("ip.cgi","r"); If ($link=ibase_connect("bogus.gdb","xx","xx","WIN1250")) { while (!feof($hnd)) { If ($buf=fgets($hnd)) { $src=""; $dst=""; $bytes="0"; $pack="0"; $buf=trim($buf); if ($buf<>"") { list($src,$dst,$bytes,$pack,$rest)=split(" ",$buf,5); $sql="INSERT INTO AcctInfo(SRC,DST,Bytes,Packets) VALUES ('$src','$dst',$bytes,$pack)"; ibase_query($link,$sql); } } } ibase_close($link); } fclose($hnd); unlink("ip.cgi"); php?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=22056&edit=1