Actions
Bug #42989
closedModule ist broken under Windows in T3 RC1
Status:
Rejected
Priority:
Must have
Assignee:
-
Category:
Extension Manager
Target version:
-
Start date:
2012-11-14
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.0
PHP Version:
5.4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
- on webserver (linux) it works fine
- on home-pc (win7 + apache2.2 + (php 5.3 / php 5.4 (both tested))) it breaks like below
----
typo3\sysext\fluid\Classes\Core\Parser\TemplateParser.php
----
protected function splitTemplateAtDynamicTags($templateString) { $regularExpression = $this->prepareTemplateRegularExpression(self::$SPLIT_PATTERN_TEMPLATE_DYNAMICTAGS); return preg_split($regularExpression, $templateString, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); //<= here it breaks }
---
Files
Updated by Martin Huber about 12 years ago
The new EM works fine for me in RC1.
Windows 7 + apache 2.2.21 + PHP 5.3.8 (from XAMPP 1.7.7)
Updated by Martin Huber about 12 years ago
After an fresh install of XAMPP the EM won't for me.
Solution:
Put this in your httpd.conf:<IfModule mpm_winnt_module>
ThreadStackSize 8388608
</IfModule>
and the EM is working again
Huaba
Updated by Oliver Hader over 11 years ago
- Project changed from 2269 to TYPO3 Core
Updated by Anja Leichsenring over 11 years ago
- Status changed from New to Rejected
This variable cannot be changed from within the system, but with the newly introduced environment check at least you get a warning, if TreadStackSize is not high enough.
Actions