I've finally got Typo3 6.1 installed on my machine, but as soon as i went to the backend section 'Extension Manager' - Apache crashed with no helpful error message or so.
The window popping up was about Apache HTTPD Server crashed with the following messages:Problem signature:
Problem Event Name: APPCRASH
Application Name: httpd.exe
Application Version: 2.2.21.0
Application Timestamp: 4e6a3015
Fault Module Name: php5ts.dll
Fault Module Version: 5.3.26.0
Fault Module Timestamp: 51af7101
Exception Code: c00000fd
Exception Offset: 00181e69
OS Version: 6.0.6002.2.2.0.768.3
Locale ID: 1048
Additional Information 1: f1e8
Additional Information 2: d4eb7cf28a4f910486e91a11f70d294f
Additional Information 3: 15a9
Additional Information 4: 60b89fd8e863194dd520967f621c3aa4
After a few facepalms, i've learned that the problem was described in the INSTALL file of Typo3. It was a problem due to the small Thread Stack size allocated by Windows for apache's threads by default.
I had to add these lines in my httpd.conf:
<IfModule mpm_winnt_module>The above sets the Thread Stack Size for about 18 MB, the original 8 MB given as sample in Typo3's Install file, was not enough.
ThreadStackSize 18388608
</IfModule>
Don't forget to restart Apache after the edit.
Good luck!