typo3-6.2.x

TYPO3 extbase & IRRE: add existing records with 'foreign_selector'

こ雲淡風輕ζ 提交于 2019-11-29 08:04:42
I "kickstarted" an extension with the extbase extension builder that contains some 1:1 and 1:n relations. It automatically set the field types to 'inline' and displayed a nice IRRE UI in the backend. But by default, there is no way to select an existing record, just create new ones. I found various explanations on how to achieve this with 'foreign_selector', but all of them very sketchy. The feature itself should be working, see https://forge.typo3.org/issues/43239 Can someone walk me through this or point to a working example in the TER? I could create a step-by-step tutorial from the example

TYPO3 6.2 typo3_src should be a link

别来无恙 提交于 2019-11-29 05:11:07
I wanna setup a TYPO3 6.2 Installation on MAMP PRO but when I start I get the error: /typo3_src should be a link, but it does not exist Links cannot be fixed by this system So what to do now? Structure is: Application/MAMP/htdocs/typo3/ Any suggestions? You have to create symlinks manually, checklist: Open the terminal Move downloaded typo3_src-6.2.4.zip to host's root mv ~/Downloads/typo3_src-6.2.4.zip /Application/MAMP/htdocs/typo3/ Go to destination folder: cd /Application/MAMP/htdocs/typo3/ Still in this location unzip downloaded package (you can remove zip file after that) unzip typo3_src

How to upgrade TYPO3 4.5 to 6.2

ⅰ亾dé卋堺 提交于 2019-11-28 18:02:51
What are the recommended steps to upgrade TYPO3 4.5 (or 6.1) to 6.2? I have a mac and my site is running on a shared Linux account. Here's a step by step guide from my upgrading practice which I would like to share. Thanks for the guide on https://jweiland.net/typo3/vortraege/typo3camp-berlin-2014.html that has helped me a lot. Note that these are my personal experiences which may or may not apply to your environment. Treat everything carefully. I differentiate between "Quick" and "Long" upgrades. With "Long" upgrades, you do the upgrading twice. First, you upgrade a copy of the live site, get

Parse an existing JSON string in fluid template?

Deadly 提交于 2019-11-28 11:48:35
问题 I have a JSON string with some data I want to render in a template. As Fluid arrays are notated in JSON too, I thought I might just take that JSON string and hand it over to fluid, telling it to treat it just like some other array and use it in the template. Thus gaining a lot of speed and losing overhead (don't have to split the JSON data up to save it in the DB, can template it easily in fluid). It wouldn't work, at least not how I tried it. <f:alias map="{item.jsonData}"> {fieldname} </f

TYPO3 extbase & IRRE: add existing records with 'foreign_selector'

感情迁移 提交于 2019-11-28 02:00:09
问题 I "kickstarted" an extension with the extbase extension builder that contains some 1:1 and 1:n relations. It automatically set the field types to 'inline' and displayed a nice IRRE UI in the backend. But by default, there is no way to select an existing record, just create new ones. I found various explanations on how to achieve this with 'foreign_selector', but all of them very sketchy. The feature itself should be working, see https://forge.typo3.org/issues/43239 Can someone walk me through