|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-06-14 16:53 UTC] sniper@php.net
[2006-06-15 16:40 UTC] wangjianjin at hotmail dot com
[2006-06-16 09:59 UTC] mike@php.net
[2006-06-22 16:55 UTC] jwisnewski at sensable dot com
[2006-06-24 01:00 UTC] php-bugs at lists dot php dot net
[2006-11-01 10:14 UTC] wangjianjin at hotmail dot com
[2006-11-01 10:18 UTC] wangjianjin at hotmail dot com
[2010-12-09 09:49 UTC] zoltan dot ackermann at freemail dot hu
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 23:00:02 2025 UTC |
Description: ------------ Environment: Apache 2.2.2+PHP5.cvs snap+MySQL 5.0.21+windows 2003 server the application is Tikiwiki. (tikiwiki.org) the PHP.ini mysql.allow_persistent = On, mysql.max_persistent = -1, mysql.connect_timeout = -1 When I do some operations editing page, and want to save it to mySQL database. after saving operations to database, in PHP script, I will send this to display the edited page. header("location: tiki-index.php?page=$page"); Then errors ocurr.the browser( whatever IE,netscape, firefox) will crash. IE -page can not be displayed, netscape-get no data, firefox--connection is reset. Before i send Function 'header', i checked the connection status with MySQL, it is normal. although only I am connecting to this WEB server, but it still displayed three processes connecting with MySQL. After I send Function 'header', All the processes connecting to the MySQL are broken. Apache error.log Parent: child process exited with status 3221225477 -- Restarting. Apache/2.2.2 (Win32) PHP/5.2.0-dev configured -- resuming normal operations Server built: Apr 29 2006 18:32:31 Parent: Created child process 4728 Child 4728: Child process is running Child 4728: Acquired the start mutex. Child 4728: Starting 250 worker threads. Child 4728: Starting thread to listen on port 8089. Child 4728: Starting thread to listen on port 8080. Child 4728: Starting thread to listen on port 80. if I change to google.com--header("location: http://www.google.com/"), it is no problem. just header("location: tiki-index.php?page=$page"); have some actions with MySQL. I do not know who causes who? SQL operations cause the Apache child process exit, or child process exit cause the broken SQL connection? what situation will the apache produce "Parent: child process exited with status 3221225477 "?