Skip to main content

PHP weird Seg-faults on mysqli_stmt_bind_result


When migrating a PHP script from PHP 5.2 to PHP 5.3, I've stumbled to the following problem: The general purpose of the script is data mining. I have a procedure inside that adds data to the MySQL server. Since it is really repetitive, I've rewritten it (a while ago) to use MySQLi, in particular prepared statements, since there are a total of 3 possible queries to perform. Anyway, now, on the PHP 5.3 server, the script is crashing on the following line:




mysqli_stmt_bind_result($prepCheck, $id1);



Where $prepCheck is created with $prepCheck = mysqli_prepare($con, $checkQuery) or die("Error"); . The query runs fine on the MySQL server ($checkQuery, that is) and the PHP code was working, too, on the previous server.



Running the script with strace didn't reveal anything, since the last thing in it is the system call for echo "Execute"; , which is 29936 19:44:18 write(1, "Execute\n", 8) = 8 .



The connection object is not FALSE , and even if it was, it should fail with another error, right?



Here comes the weirdest part: This procedure does not fail when I run the script, limiting the number of pages visited and the script completes successfully. However, when I set a higher limit, it fails, always on the first call to this procedure, and precisely on this line.



If anyone has any suggestions what could be causing this, they would be deeply appreciated.



I can paste code if anyone needs to see a larger picture, but the procedure is very long and boring to death (may be that's why the script is failing :).



Here is how the script starts: error_reporting(E_ALL); ini_set('display_errors', '1'); . No error is reported besides the 'magical' Segmentation fault . I'm not using APC.



Not sure if it's relevant, but I'm using CLI to run the script, not a web-interface.



PHP version is 5.3.8, MySQL version is 5.1.56. The memory limit is set to 64MB.



EDIT: The procedure failing + some of the other code is uploaded here: http://codepad.org/KkZTxttQ . The whole file is huge and ugly, and I believe irrelevant, so I'm not posting it for now. The line that's failing is 113.


Source: Tips4allCCNA FINAL EXAM

Comments

  1. An answer to my own question, since I've solved the issue, and there are no other answers...

    Credit goes to @jap1968 for pointing to me to the function mysqli_stmt_error (which I assumed I would not need, since I have error_reporting(E_ALL)).

    The problem was that MySQL had a very weird default configuration: particularly

    connect_timeout = 10
    wait_timeout = 30


    This caused the MySQL server to close the connection after only 30 seconds (default is more than a half hour, according to MySQL website). This in turn, caused the mysqli_stmt_bind_result function to fail with a Segmentation Fault.

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...