Page tree

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Apache ThreadStackSize to low. Consequence: Silent crash of task import containing TBX files

Problem

Under windows - with the translate5 default XAMPP installation - it can happen that a task import with TBX data crashes silently. The task remains in status import, the import worker remains on running, no other worker (Term Stat etc) were created yet.
No message in the php.log.
In the apache log appears:

[Mon Jul 24 16:22:48.954674 2017] [mpm_winnt:notice] [pid 6264:tid 580] AH00428: Parent: child process 8060 exited with status 3221225725 – Restarting.

In the Windows log there is an application error:

Name der fehlerhaften Anwendung: httpd.exe, Version: 2.4.23.0, Zeitstempel: 0x577e1b96
Name des fehlerhaften Moduls: php5ts.dll, Version: 5.6.24.0, Zeitstempel: 0x579053a1
Ausnahmecode: 0xc00000fd
Fehleroffset: 0x0011f652
ID des fehlerhaften Prozesses: 0x590
Startzeit der fehlerhaften Anwendung: 0x01d304708d9c96b7
Pfad der fehlerhaften Anwendung: C:\xampp\apache\bin\httpd.exe
Pfad des fehlerhaften Moduls: C:\xampp\php\php5ts.dll
Berichtskennung: ae111efe-10c6-47ba-ac94-e0803b9796ac
Vollständiger Name des fehlerhaften Pakets:
Anwendungs-ID, die relativ zum fehlerhaften Paket ist:

The reason is a to small sized ThreadStackSize as described here.

Solution:

Increase the ThreadStackSize in the httpd.conf. In XAMPP this is usually in "C:\xampp\apache\conf\extra\httpd-mpm.conf"
Add/Change the ThreadStackSize to 8MB in the mpm_winnt_module section:

<IfModule mpm_winnt_module>
ThreadStackSize 8388608
</IfModule>

  • No labels