typo3-7.6.x

TYPO3 RTE Stylesheet broken link?

狂风中的少年 提交于 2019-12-12 04:28:13
问题 I am using this typoscript in my Page TS Config to add a stylesheet to the RTE: RTE.default.ignoreMainStyleOverride = 1 RTE.default.contentCSS = fileadmin/templates/css/rte_formats.css I have used this several times perfectly, however I am working on a new server running TYPO3 7.6.11 and the stylesheet does not link. If I inspect the RTE the css file is linked there, but the link is broken. I don't know if it is related but in the filelist area if I open the info window for the css file and

TCA selectCheckBox - Output in fluid template

本秂侑毒 提交于 2019-12-12 03:53:56
问题 I use in TCA 'uebersetzungen' => [ 'exclude' => true, 'label' => 'LLL:EXT:maschinen/Resources/Private/Language/locallang_db.xlf:tx_maschinen_domain_model_maschine.uebersetzungen', 'config' => [ 'type' => 'select', 'renderType' => 'selectSingle', 'items' => [ ['6:1', 1], ['8:1', 2], ['11:1', 3], ['14:1', 4], ], 'size' => 4, 'maxitems' => 1, 'eval' => '' ], ], to get the output in fluid template with <f:switch expression="{maschine.uebersetzungen}"> <f:case value="1">6:1</f:case> <f:case value=

TYPO3 EXT tx_news und typoscript USER multi integrations

我只是一个虾纸丫 提交于 2019-12-12 03:39:14
问题 i input multi integrations tx_news elements on my site, via TS: https://docs.typo3.org/typo3cms/extensions/news/AdministratorManual/BestPractice/IntegrationWithTypoScript/Index.html it works fine! but the ext loaded the full tx_news libs again and again on the Frontpage! That even where the news page will not be used / loaded in FE even where the dough is not needed, the ext is loaded... :/ Thus, the website has become very slow. how do I include multiple elements? in the AdminPanel see i the

TYPO3 RTE: Saving mathematical/greek symbols doesn't work

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-12 03:38:14
问题 I need to display some mathematical/greek symbols in the RTE and later in the frontend. Inserting them via copy/paste or the "Insert characters" option works great, but as soon as I save the text, the inserted symbol get's replaced with a question mark and T3 throws following error: 1: These fields of record 56 in table "tt_content" have not been saved correctly: bodytext! The values might have changed due to type casting of the database. I think there is an issue with the character set of T3

TYPO3 Extbase: Set storagepid for Backend Module

时光总嘲笑我的痴心妄想 提交于 2019-12-12 01:42:53
问题 I have written a small extension that provide news for Backend User. Ist is just 2 Parts. One part showing the news for all BE User as a own Module, and the other part are create and edit functions provided by the TCA. To work with the TCA forms and the default extbase getter, i need the correct storagePid. I can't set them via TypoScript, because I'm never in a page context . My Idea was to use the Plugin settings with the file ext_conf_template.txt # cat=persistence/enable; type=int; label

typo3 flexslider should user original image and not cropped one

旧巷老猫 提交于 2019-12-11 19:28:06
问题 In my typo3 7.6.19 Website I want to user the flexslider plugin. That works fine, my problem is that the image is a cropped one and not the original file I uploaded. How can I change it to use the original picture? Thanks in advance 回答1: The plugin sets up a TypoScript constant plugin.tx_wsflexslider.maxwidth=800px You can modify this value in your TypoScript template (Module Template > Constant Editor > select "PLUGIN.TX_WSFLEXSLIDER" About your other problem that is artifacts in the reduced

virtual host settings for typo3

二次信任 提交于 2019-12-11 17:32:14
问题 DocumentRoot "C:/xampp_7/htdocs/BackupForEdow/Eddddddddd" <Directory C:/xampp_7/htdocs/BackupForEdow/Eddddddddd> AllowOverride All Order Allow,Deny Allow from All <IfModule mod_rewrite.c> RewriteEngine On RewriteCond {REQUEST_FILENAME} !-f RewriteRule . /index.php [L] </IfModule> </Directory> Is this correct for a typo3 project? I am not able to access the frontend of typo3 but my backend works correctly. The front-end shows an internal server error. Please help me to create the virtual host.

TYPO3 extension; read custom FAL variable in the domain to use in fluid template

こ雲淡風輕ζ 提交于 2019-12-11 15:36:57
问题 In my custom extension I introduced a binary variable to the image metadata that needs to be read, similar to the "Show in list view" of tx_news . With tx_news as example I was able to add the variable, the new palette shows the checkbox in the backend and the selection is registered in a new database field in the sys_file_reference table ... now I need to use this variable in my fluid templates, and here I lose the trail; the objects are items and the new variable is named opentab , I

Combining TypoScript and Fluid: Iterations?

扶醉桌前 提交于 2019-12-11 12:47:22
问题 I'm combining a TypoScript CONTENT Object with a fluid template. In the page template: <f:cObject typoscriptObjectPath="lib.myItem" /> In TS: lib.myItem = CONTENT lib.myItem { table = tt_content select.where = colPos = 0 select.languageField = sys_language_uid renderObj = FLUIDTEMPLATE renderObj { file = {$customContentTemplatePath}/Myfile.html layoutRootPath = {$customContentLayoutPath} partialRootPath = {$customContentPartialPath} dataProcessing { 10 = TYPO3\CMS\Frontend\DataProcessing

How to disable an extension for one page in TYPO3

余生长醉 提交于 2019-12-11 07:30:13
问题 There is a conflict between two installed extentions in one page. I want to disable one of the extentions only for this specific Page. Is there a way to accomplish this? Maybe somehow in Backend Templates? 回答1: On the page where you want to disable the extension you can create a template where you disable the extension by TypoScript: plugin.tx_badextension > tt_content.list.20.tx_badextension > This works recursive, that means all sub-pages of the page where this snippet is included in a