platformsh / example-typo3

Starter kit for running TYPO3 on Platform.sh. Maintained by the TYPO3 Community Interest Group (CIG Platform.sh)
http://platform.sh/
GNU General Public License v3.0
16 stars 9 forks source link

l10n directory not writeable #11

Closed geldmacher closed 7 years ago

geldmacher commented 7 years ago

It is impossible to import translations because typo3conf/l10n/ is not writeable.

JGrubb commented 7 years ago

Hi, try adding that directory to the mounts section of your .platform.app.yaml file. Like so,

mounts:
  "web/typo3temp/assets": "shared:files/tmp-assets"
  "web/typo3temp/var": "shared:files/tmp-var"
  "web/uploads": "shared:files/uploads"
  "web/fileadmin": "shared:files/fileadmin"
  "web/typo3conf/writeable": "shared:files/config"
  "web/typo3conf/l10n": "shared:files/l10n"
JGrubb commented 7 years ago

This file here - https://github.com/platformsh/platformsh-example-typo3/blob/master/.platform.app.yaml#L69

geldmacher commented 7 years ago

Ah, ok. First steps with platform.sh. There it is ... ;D THX

ksjogo commented 7 years ago

Will fix it in the template.