';
$this->message($ext, 'PHPdoc comments are stripped', $description, 2);
}
+ // ThreadStackSize on Windows systems with Apache
+ $threadStackSizeDescription = '
+ <p>
+ 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:
+ <br /><br /><IfModule mpm_winnt_module>
+ <br />ThreadStackSize 8388608
+ <br /></IfModule>
+ <br /><br />Restart Apache after this change.
+ </p>';
+ if (TYPO3_OS === 'WIN' && substr($_SERVER['SERVER_SOFTWARE'], 0, 6) === 'Apache') {
+ $this->message($ext, 'ThreadStackSize', $threadStackSizeDescription, 2);
+ }
}
/**
}
}
-?>
\ No newline at end of file
+?>