|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-02-26 15:50 UTC] tony2001@php.net
[2007-02-26 18:32 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-02-26 19:12 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-02-26 20:14 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-02-26 20:25 UTC] tony2001@php.net
[2007-02-28 14:32 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-02-28 14:53 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-02-28 15:00 UTC] tony2001@php.net
[2007-02-28 22:12 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-03-02 18:22 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-03-09 19:37 UTC] jfgingras at cegep-ste-foy dot qc dot ca
[2007-03-09 23:50 UTC] tony2001@php.net
[2007-03-17 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 23:00:01 2025 UTC |
Description: ------------ If open_basedir if defined in a <Directory>, any call to a php file, event if this file is empty, will either throw a Bus error or a Segmentation fault. This problem appears as soon as I upgraded php 5.1.6 to 5.2.1 I didn't change anything in any configuration file of apache, and I did not upgrade apache either. My Apache version is 2.0.58 When I remove the open_basedir directive, it solve the problem. Here's the logfile of apache: [...] [Mon Feb 26 09:21:43 2007] [notice] child pid 31432 exit signal Segmentation fault (11) [Mon Feb 26 09:27:13 2007] [notice] child pid 65784 exit signal Bus error (10) [Mon Feb 26 09:27:44 2007] [notice] child pid 65537 exit signal Segmentation fault (11) [Mon Feb 26 09:28:27 2007] [notice] child pid 68909 exit signal Bus error (10) [Mon Feb 26 09:34:19 2007] [notice] child pid 32270 exit signal Bus error (10) [Mon Feb 26 09:36:58 2007] [notice] child pid 68902 exit signal Bus error (10) [Mon Feb 26 09:37:13 2007] [notice] child pid 69863 exit signal Bus error (10) Reproduce code: --------------- Here's what I have in my <Directory>: <Directory /var/www/htdocs/stages/> php_admin_value open_basedir /var/www/htdocs/stages php_admin_value upload_tmp_dir /var/www/htdocs/stages/tmp php_value register_globals 1 </Directory>