typo3-8.x

TYPO3 lists all tables in DB compare because of COLLATE

ⅰ亾dé卋堺 提交于 2019-12-07 11:36:26
问题 I'm using TYPO3 8.7.4 with PHP 7.0.22 and MariaDB 10.2.7. The DB Compare inside the InstallTool shows me that TYPO3 wants to alter all tables because the current value differs from the expected by the collation of the table: ALTER TABLE `be_groups` CHANGE `title` `title` VARCHAR(50) DEFAULT '' NOT NULL Current value: title VARCHAR(50) DEFAULT '''' NOT NULL COLLATE utf8_general_ci 回答1: MariaDB implemented a change to the Information Schema COLUMNS table which is not backwards compatible with

TYPO3: CKEditor strips data-attributes in <span>-Tags

百般思念 提交于 2019-12-06 09:06:40
问题 I want to use a data-attribute in a span-Tag. The CKEditor removes this attribute. If I add it in a p-Tag it will not removed and this is OK. processing: allowAttributes: [data-count] is added in the YAML-file. I've tried this and other combinations, nothing works. config extraAllowedContent: '*(*)[data-*]' What do I have to do, to keep the data-attribute in a span-Tag? 回答1: I have done this for iframe tag with attribbuts, no allowAttributes used for this: processing: allowTags: - iframe

TYPO3 lists all tables in DB compare because of COLLATE

梦想的初衷 提交于 2019-12-05 16:17:49
I'm using TYPO3 8.7.4 with PHP 7.0.22 and MariaDB 10.2.7. The DB Compare inside the InstallTool shows me that TYPO3 wants to alter all tables because the current value differs from the expected by the collation of the table: ALTER TABLE `be_groups` CHANGE `title` `title` VARCHAR(50) DEFAULT '' NOT NULL Current value: title VARCHAR(50) DEFAULT '''' NOT NULL COLLATE utf8_general_ci MariaDB implemented a change to the Information Schema COLUMNS table which is not backwards compatible with the output expected from the 'original' MySQL: https://jira.mariadb.org/browse/MDEV-13132 来源: https:/

TYPO3: CKEditor strips data-attributes in <span>-Tags

女生的网名这么多〃 提交于 2019-12-04 12:36:33
I want to use a data-attribute in a span-Tag. The CKEditor removes this attribute. If I add it in a p-Tag it will not removed and this is OK. processing: allowAttributes: [data-count] is added in the YAML-file. I've tried this and other combinations, nothing works. config extraAllowedContent: '*(*)[data-*]' What do I have to do, to keep the data-attribute in a span-Tag? I have done this for iframe tag with attribbuts, no allowAttributes used for this: processing: allowTags: - iframe editor: config: extraAllowedContent: - iframe[*] for you this should do the trick: editor: config:

TYPO3 8.7 can not override Fluid Styled Content templates

倾然丶 夕夏残阳落幕 提交于 2019-12-03 15:56:23
I've tried to override the Fluid Styled Content elements but it doesn't work at all in latest TYPO3 version 8.7.0. I've got a template extension (key: biv_main) in which I add my overriding template pathes: lib { fluidContent { templateRootPaths { 30 = EXT:biv_main/Resources/Private/Content/fluid_styled_content/Templates/ } partialRootPaths { 30 = EXT:biv_main/Resources/Private/Content/fluid_styled_content/Partials/ } layoutRootPaths { 30 = EXT:biv_main/Resources/Private/Content/fluid_styled_content/Layouts/ } } } The TypoScript in the Backend via TS Object Browser looks correct to me:

dotenv-connector within TYPO3 CMS

给你一囗甜甜゛ 提交于 2019-12-03 13:27:27
问题 I try to use helhum/dotenv-connector in my TYPO3 Project. I have done the following: my composer.json : { "require": { "typo3/cms": "^8.5", "helhum/dotenv-connector": "1.0.0", "helhum/typo3-console": "^4.1" }, "extra": { "helhum/typo3-console": { "install-extension-dummy": false }, "typo3/cms": { "cms-package-dir": "{$vendor-dir}/typo3/cms", "web-dir": "web" }, "helhum/dotenv-connector": { "env-dir": "", "allow-overrides": true, "cache-dir": "var/cache" } } } Then I ran composer install After

dotenv-connector within TYPO3 CMS

夙愿已清 提交于 2019-12-03 03:35:13
I try to use helhum/dotenv-connector in my TYPO3 Project. I have done the following: my composer.json : { "require": { "typo3/cms": "^8.5", "helhum/dotenv-connector": "1.0.0", "helhum/typo3-console": "^4.1" }, "extra": { "helhum/typo3-console": { "install-extension-dummy": false }, "typo3/cms": { "cms-package-dir": "{$vendor-dir}/typo3/cms", "web-dir": "web" }, "helhum/dotenv-connector": { "env-dir": "", "allow-overrides": true, "cache-dir": "var/cache" } } } Then I ran composer install After that I setup the TYPO3 using the command php vendor/bin/typo3cms install:setup This should be similar

TYPO3 - TCA in ext_tables.php check and TCA/Overrides for v8

浪尽此生 提交于 2019-12-02 11:27:32
Updated ext_tables.php, TCA and TCA/Overrides for TYPO3 8LTS? I moved the TCA definitions from ext_tables.php to /TCA folder and the query in list view is working again: ext_tables.php <?php if (!defined('TYPO3_MODE')) {die('Access denied.');} \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin( $_EXTKEY, 'Code', 'Description' ); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addLLrefForTCAdescr('tx_code_domain_model_code', 'EXT:code/Resources/Private/Language/locallang_csh_tx_code_domain_model_code.xlf'); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility:

Typo3 8 How to properly customize felogin extension

僤鯓⒐⒋嵵緔 提交于 2019-12-02 10:38:59
I would like to customize felogin (frontend lofin) extension template. I would like to copy the template file inside of my template extension folder, but I don´t know how to change the path with TypoScript, so Typo3 can look first into the template file which is located inside of my extension template folder. Thanks in advance! Denis The configuration is done like with every other extension: plugin.tx_felogin_pi1 { templateFile = EXT:your_extension/Resources/Private/Templates/Felogin.html } Notice that felogin does not use Fluid, you might want to look at alternatives like Hairu if you need