Project

General

Profile

Actions

Bug #42911

closed

new ExtMgm causes Apache crash

Added by Kay Strobach over 11 years ago. Updated over 11 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Extension Manager
Target version:
Start date:
2012-11-13
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Trying to access the ExtMgm causes the following error.

Apache error log:

[Tue Nov 13 13:44:52 2012] [notice] Parent: child process exited with status 3221225725 -- Restarting.
[Tue Nov 13 13:44:56 2012] [notice] Apache/2.2.11 (Win32) PHP/5.3.5 configured -- resuming normal operations
[Tue Nov 13 13:44:56 2012] [notice] Server built: Dec 10 2008 00:10:06
[Tue Nov 13 13:44:56 2012] [notice] Parent: Created child process 7640
[Tue Nov 13 13:44:59 2012] [notice] Child 7640: Child process is running
[Tue Nov 13 13:44:59 2012] [notice] Child 7640: Acquired the start mutex.
[Tue Nov 13 13:44:59 2012] [notice] Child 7640: Starting 250 worker threads.
[Tue Nov 13 13:44:59 2012] [notice] Child 7640: Starting thread to listen on port 80.

Sadly i got no php error

I run TYPO3 6.0rc1 on PHP 5.3.3 with Apache2 on Windows8 64bit (Release Version)

Regards
Kay

Actions #1

Updated by Georg Ringer over 11 years ago

  • Status changed from New to Needs Feedback

see install tool

ThreadStackSize
Fluid uses complex regular expressions which require a lot of stack space during the first processing. On Windows the default stack size for Apache is a lot smaller than on unix. You can increase the size to 8MB (default on unix) by adding to the httpd.conf:

<IfModule mpm_winnt_module>
ThreadStackSize 8388608
</IfModule>

please check and give feedback

Actions #2

Updated by Kay Strobach over 11 years ago

ok, i will try this tomorrow, if this value is readable, i would suggest to make a warning message in the installtool :D

Actions #3

Updated by Jigal van Hemert over 11 years ago

The value is not readable from PHP (it's Apache configuration). There is a warning in INSTALL.txt and in the Install Tool (if you run Windows).

Actions #4

Updated by Kay Strobach over 11 years ago

the warning must be placed more prominent - i haven't recognized one - and i wouldn't expect that problem ;)

Actions #5

Updated by Kay Strobach over 11 years ago

mhmm:

# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
<IfModule mpm_winnt.c>
ThreadsPerChild 50
MaxRequestsPerChild  0
ThreadStackSize 8388608
</IfModule>

works, but it's not fine ;D

Actions #6

Updated by Christian Kuhn over 11 years ago

  • Status changed from Needs Feedback to Closed

The issue is solved for now by adapting the system setup.

We already have two points where this is mentioned (install tool and install.txt). Currently, there is no other and more direct way to show such setup issues. This might be handled with a new 'step 1' in the install tool that at first checks such system things, but this re-work should be a different issue then.

For now, I'll close this issue.

Actions

Also available in: Atom PDF