typo3

Typo3 Indexed Search Local_Lang path

牧云@^-^@ 提交于 2019-12-24 11:30:54
问题 i am wondering what TS code is needed to set path to my own indexed search local_lang. I changed what i needed in pi1/local_lang but i would like to set it to my own so i can have the edited (Croatian in this case) for future projects. Something like: plugin.tx_indexedsearch.templateFile = fileadmin/search_temp.html but for Local_lang of it? 回答1: with this lines you can overwrite individual translations: plugin.tx_myPlugin_pi1._LOCAL_LANG.de.key = value; plugin.tx_myPlugin_pi1._LOCAL_LANG.en

How to enable header_position in TYPO3 7.6

这一生的挚爱 提交于 2019-12-24 11:01:13
问题 In versions prior to TYPO3 7.6 you could select a position for your header within your content element (left, middle, right as far as I remember). The field which has been used for storing that information in tt_content header_position is still available. However, it will not appear in the backend. I'm also using fluid_styled_content for rendering my content, and the Header partial doesn't contain any reference to the position, but only to the layout field. My question is: How can I reenable

Typo3: 8.7.9 CKeditor removes block-styles after save

青春壹個敷衍的年華 提交于 2019-12-24 09:47:21
问题 I have the following YAML-config of the CKEditor in Typo3: # Load default processing options imports: - { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" } - { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" } - { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" } # Add configuration for the editor # For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config editor: config: # can be "default", but a custom stylesSet can be

Typo3 | CookieConsent2 change message

筅森魡賤 提交于 2019-12-24 08:57:46
问题 I got the problem that I cannot change the message shown in the box. Even though I changed the message in the file: 'Root/typo3conf/ext/cookieconsent2/Resources/Private/Language/de.locallang.xlf' I first thought there could be another file but I were not able to find any other and my next guess was maybe a problem with the cache. But this did not work either. I appreciate any help! 回答1: The Messages of the translationfiles are cached, so if you changed something in these files you've to

Typo3 Version 8 login loop

我只是一个虾纸丫 提交于 2019-12-24 08:44:02
问题 I have a question regarding Typo3 Version 8 LTS. I've installed en configured TYPO3 through the installer tool. But when I try to log in after the installation the login process gets stuck. The only information I get is the login button displaying 'verifying login data..' with a spinning loading symbol next to it. Can someone help me to solve this problem? Thanks in advance 回答1: This is all because of RSA auth. make sure ssl enabled in your server. If you're using in localhost then you can

Typo3 Version 8 login loop

和自甴很熟 提交于 2019-12-24 08:44:00
问题 I have a question regarding Typo3 Version 8 LTS. I've installed en configured TYPO3 through the installer tool. But when I try to log in after the installation the login process gets stuck. The only information I get is the login button displaying 'verifying login data..' with a spinning loading symbol next to it. Can someone help me to solve this problem? Thanks in advance 回答1: This is all because of RSA auth. make sure ssl enabled in your server. If you're using in localhost then you can

TYPO3: How to render localized tt_content in own extension

瘦欲@ 提交于 2019-12-24 08:39:08
问题 One way to render a tt_content element from own extension is this: function getCE($id) { $conf['tables'] = 'tt_content'; $conf['source'] = $id; $conf['dontCheckPid'] = 1; return $this->cObj->cObjGetSingle('RECORDS', $conf); } Is it possible to add something to $conf so tt_content is rendered localized? Lets say I want the tt_content row with sys_language_uid = 2. Alternative is to use the "getRecordOverlay", but then some functionality from cObjGetSingle will be lost. UPDATE (it is for TYPO3

How can I make a Condition in TypoScript for loading different JavaScript-Files to different Backend-Layouts? (TYPO3)

笑着哭i 提交于 2019-12-24 08:38:06
问题 After a "long way" with Google, Searching and many tries: I created a lib.variable for the current Page: lib.currentPage = TEXT lib.currentPage.data = page:uid If I debug it in my FluidTemplate in the Frontend with: Testing currentPage: <f:cObject typoscriptObjectPath="lib.currentPage" /> I got the correct value. Now I want to use that Variable in a Condition in my pageSetup.ts like follows: [DB:pages:lib.currentPage:backend_layout = pagets__pagelayout_logoclaim_subpage] page.includeJSFooter

TYPO3 fe_user how login user via php code?

时间秒杀一切 提交于 2019-12-24 08:15:18
问题 I have TYPO3 7.6.18 and extension femanager. $GLOBALS['TSFE']->fe_user->checkPid = ''; $info = $GLOBALS['TSFE']->fe_user->getAuthInfoArray(); $user = $GLOBALS['TSFE']->fe_user->fetchUserRecord($info['db_user'], $username); $loginData = array('uname' => $username, 'uident' => $password, 'status' => 'login'); $GLOBALS['TSFE']->fe_user->forceSetCookie = TRUE; $GLOBALS['TSFE']->fe_user->createUserSession($user); $GLOBALS['TSFE']->fe_user->user = $GLOBALS['TSFE']->fe_user->fetchUserSession();

Load register inside TMENU

别来无恙 提交于 2019-12-24 07:45:59
问题 In a TYPO3 HMENU, the second level TMENU should reproduce the abstract of the first level page. I do manage to fill the register with a value and use it in the second level TMENU - but I am unable to load the field's content into the register. So field = abstract as well as value = {field:abstract} value.insertData = 1 don't produce any output. How can that register be filled with the parent page's abstract? Here's the full code. temp.main_nav = HMENU temp.main_nav { wrap = <nav id="cbp