typo3-8.x

TYPO3 installation issue - FIRST_INSTALL

旧街凉风 提交于 2021-02-08 03:57:36
问题 Hi I'm new to TYPO3 and have followed the installation instructions and my installation is stuck at the following point; CMS 8.7.0 Thank you for downloading TYPO3 To proceed with the installation, create the file FIRST_INSTALL in your root directory. The filename is case-sensitive but the file itself can be empty. Note: The file will be deleted once you proceed with the installation. I have added the file and till the installation shows the same message, please check my server directory

TYPO3: what is the field “access_group” for?

爱⌒轻易说出口 提交于 2021-02-05 11:28:48
问题 I don't know what is the field "access_group int(11) DEFAULT 0 NOT NULL" for? First I thought it's for restriction by user_group, but there is an field "fe_group varchar(100) DEFAULT '' NOT NULL" for it. You can find the field also at the documentation Preparing the database , but I couldn't find a description for it, only for "fe_group". 回答1: access_group is the be_user group. In TYPO3 you have an access-system similar to the unix-rights, where you can grnat access to pages (and records in

TYPO3 8 form - Define several file upload folders

自作多情 提交于 2021-01-29 15:08:37
问题 I want to define different upload folders in the TYPO3 form extension. Following the example in the manual (https://docs.typo3.org/c/typo3/cms-form/8.7/en-us/Concepts/FormFileStorages/Index.html) I tried the below configuration. In the form wizzard I can select the different folders. The two folders fileadmin/myfolder/folder1/ and fileadmin/myfolder/folder2/ exist, but in the frontend I get the error that the folder /myfolder/folder1/ does not exist. What am I doing wrong? TYPO3: CMS: Form:

TYPO3 - Overriding & adding meta tags (from tx_metaseo) on detail view of custom extension

时间秒杀一切 提交于 2021-01-28 08:23:29
问题 I have a custom extension and on the detail page of the records I want to seo pimp the profile sites. I'm also using tx_metaseo. I'm already changing the 'title' tag via the show action like this: /** * action show * * @param Application $record * @return void */ public function showAction(Application $record=null) { // For the search $GLOBALS['TSFE']->indexedDocTitle = $record->getName(); } } But since I have tx_metaseo installed ... I'm also getting the generall meta tags. So on the detail

How can I get back access to the backend of TYPO3 when fluidpages are causing an error on backend and frontend?

给你一囗甜甜゛ 提交于 2020-03-25 13:57:01
问题 I got to work on a Typo3 page and I have to say I'm at the very beginning if it comes to TYPO3. So I wanted to fix a bug and updated the plugin "fluidpages" from version 4.1.0 (I guess) to 4.3. That cause the "Oops, an error occurred!" in the backend and frontend, so I dont have access from that side. I still have the FTP login for the website. The version of TYPO3 is 8.7.18. The errorcode I get is that one: Could not analyse class: "FluidTYPO3\Flux\Configuration\ConfigurationManager" maybe

How can I get back access to the backend of TYPO3 when fluidpages are causing an error on backend and frontend?

只愿长相守 提交于 2020-03-25 13:56:06
问题 I got to work on a Typo3 page and I have to say I'm at the very beginning if it comes to TYPO3. So I wanted to fix a bug and updated the plugin "fluidpages" from version 4.1.0 (I guess) to 4.3. That cause the "Oops, an error occurred!" in the backend and frontend, so I dont have access from that side. I still have the FTP login for the website. The version of TYPO3 is 8.7.18. The errorcode I get is that one: Could not analyse class: "FluidTYPO3\Flux\Configuration\ConfigurationManager" maybe

Show category names of current page in TYPO3 8

萝らか妹 提交于 2020-01-25 09:02:41
问题 I am trying to display the category name(s) of the current page on a TYPO3 8 installation. In TYPO3 7 it used to work like this (see below), however now I only receive a random error code and no Text output. Any Ideas? lib.catclass = CONTENT lib.catclass { wrap = <div class="categories">|</div> table = sys_category select { pidInList = 35 // UiD of your category_page join = sys_category_record_mm ON(sys_category_record_mm.uid_local=sys_category.uid) where = sys_category_record_mm.tablenames=

Dedicated RTE config per CType

此生再无相见时 提交于 2020-01-06 12:29:14
问题 I want to give the user the minimal RTE for some kinds of custom content elements in TYPO3 8.7. I found this old approach here but it is not compatible with the ckeditor of TYPO3 8. RTE.config.tt_content.bodytext.types.ccc_teasertext { showButtons = bold, italic, underline, link, chMode, orderedlist, unorderedlist RTEHeightOverride = 600 } RTE.config.tt_content.bodytext.types.ccc_introtext { showButtons = bold, italic, chMode RTEHeightOverride = 300 } How do I use RTE.config with the new

How to add cropVariants to an image field in TYPO3 flexform

我只是一个虾纸丫 提交于 2020-01-03 02:06:41
问题 I can override the cropVaraints for an image field in TCA like this: 'columnsOverrides' => [ 'image' => [ 'label' => 'LLL:EXT:myext/Resources/Private/Language/locallang_be.xlf:general.field.image', 'config' => [ 'overrideChildTca' => [ 'columns' => [ 'crop' => [ 'config' => [ 'cropVariants' => [ 'default' => [ 'title' => 'LLL:EXT:myext/Resources/Private/Language/locallang_be.xlf:wizard.banner.title', 'allowedAspectRatios' => [ '2:1' => [ 'title' => 'LLL:EXT:myext/Resources/Private/Language