This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RUN apt update | |
| RUN apt upgrade -y | |
| RUN apt install -y apt-utils | |
| RUN a2enmod rewrite | |
| RUN apt install -y libmcrypt-dev | |
| RUN docker-php-ext-install mcrypt | |
| RUN apt install -y libicu-dev | |
| RUN docker-php-ext-install -j$(nproc) intl | |
| RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev | |
| RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {namespace b=OliverThiele\OtBootstrap3\ViewHelpers} | |
| <html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true"> | |
| <f:spaceless> | |
| $END$ | |
| <f:render section="Content" /> | |
| </f:spaceless> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # after typo3 4.2 > 4.5 update backend loads on some page very slow (or newer) -- after activating firebug i learned thumbs.php doesn't load. | |
| # next step was imagemagick via install tool > image processing, same very slow. finally i found an older posting which recommends to | |
| # disable im_useStripProfileByDefault at localconf.php | |
| $TYPO3_CONF_VARS['GFX']['im_useStripProfileByDefault'] = '0'; | |
| # tt_news && cache, always a pain for editors | |
| # enable cache reset for editors at user ts config | |
| options.clearCache.pages=1 # allow be user to clear cache of a page | |
| options.clearCache.all=1 # allow be user to clear fe cache |