Skip to content

Instantly share code, notes, and snippets.

@frace
Last active December 16, 2015 19:49
Show Gist options
  • Select an option

  • Save frace/5487774 to your computer and use it in GitHub Desktop.

Select an option

Save frace/5487774 to your computer and use it in GitHub Desktop.
Since DAM in TYPO3 does not allow batch processing of meta data for non-default languages we HAVE to do it on our own
UPDATE `tx_dam`
SET
`title`='title',
`loc_country`='country',
`loc_city`='city',
`description`='description',
`alt_text`='alt_text',
`caption`='caption',
`abstract`='abstract'
WHERE `sys_language_uid`=1 (AND `file_mime_type`='image')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment