typo3

TYPO3 Service Unavailable (503) standard error after installing existing project

心已入冬 提交于 2019-12-25 01:36:08
问题 I installed a copy of a TYPO3 project. So, I'm using an existing TYPO3 database. When running the home page of the site, I get the 'standard error': Service Unavailable (503) The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. More information regarding this error might be available online. which refers to following site: https://wiki.typo3.org/Exception/CMS/1294587217 But when I modify the setup of the template of the

Set backend title for Mask-Elements in Typo3

此生再无相见时 提交于 2019-12-25 00:13:38
问题 I have a Typo3 server. On that I created some different content elements with mask. In this elements there are often repeating content, like texts or other stuff. So the editors make a new element in the backend, there they can add a headline and as much text parts as they want. Often it looks like this: Thats good, the editor can see a "preview" of the textparts. In this example "Karriere,Partner...". This naming happens automatically. My Problem is, some times there arent any titles. Its

Is it possible to write a specific query in typoscript

旧城冷巷雨未停 提交于 2019-12-24 23:05:25
问题 my question may seem trivial, sorry if it is! I am currently learning typo3 and typoscript. I want to create a template with a dynamic background image. This image is stored in a directory. I would like to get the image name from the table tt_content. However, the way this works confuses me a bit and i don't know if my take on it is the right one. The code looks like this: 20 = CONTENT 20.table = tt_content 20.select{ where = pid = 79 } 20.headerImagePath = COA 20.headerImagePath { 10 = TEXT

TYPO3 integrating HTML

杀马特。学长 韩版系。学妹 提交于 2019-12-24 20:39:23
问题 I'm newbie at TYPO3, trying to install my custom template. I have HTML/CSS/IMAGES files, but can't find how to implement it. Find file /fileadmin/default/templates/typo3-intro-template.html changes on it affects on site. But I can't understand how to use it to show dynamic content. When I add this: page = PAGE page.typeNum = 0 #page.10 = USER page.10 = TEXT #page.10.userFunc = tx_templavoila_pi1->main_page page.10.value = Hello world to page Setup , got Hello world, but without design. Is

typo3 fe Login does not work

牧云@^-^@ 提交于 2019-12-24 19:53:53
问题 I have a typo3 6.2 instance running with feLogin. Until yesterday the login works perfectly, since 2pm yesterday login is not possible anymore. There haven't been any code changes. What could be the issues? The redirect works fine. Thanks in advance 回答1: Check the logs Check the TYPO3 configuration for FE|loginSecurityLevel Check if rsaauth is installed when using loginSecurityLevel = rsa 来源: https://stackoverflow.com/questions/51493992/typo3-fe-login-does-not-work

Multiple controllers in an extension

强颜欢笑 提交于 2019-12-24 19:15:24
问题 Is it actually possible to write an extension with multiple controllers that will work automatically on all sites? What i want is an extension that would call controller A when site A is opened, controller B when site B is opened and so on. I saw here https://docs.typo3.org/typo3cms/extensions/news/ that multiple controllers is possible with FlexForms and switchableControllerActions . The thing is, when i add the plugin to the site, i have to specify which controller should work for this site

Links at the start of content elements

南楼画角 提交于 2019-12-24 17:53:37
问题 TYPO3 adds these links at the start of almost every element: <a id="c1427"></a> where number is, I guess, UID of the element. How TYPO3 render this link and is it possible to disable it for a specific FCE? 回答1: It depends on your TYPO3 Version. In 4.5 it is defined via: tt_content.stdWrap.innerWrap.cObject.default.10.value = <div id="c{field:uid}" If you use the TS-Objectbrowser, you should find it somewhere in tt_content.stdWrap.* Depending on the rendering you are using, you could be able

Random image with v:iterator.random | cache issue

自作多情 提交于 2019-12-24 16:42:33
问题 I try to output 1 random image with VHS (version 2.4.0) RandomViewHelper v:iterator.random . This is my code: {namespace flux=FluidTYPO3\Flux\ViewHelpers} {namespace v=FluidTYPO3\Vhs\ViewHelpers} <f:layout name="Content" /> <f:section name="Configuration"> <flux:form id="random-image" label="Random Image" options="{icon: 'Icons/Content/Example.gif', group: 'Joya'}"> <flux:field.input name="classname" label="Classname" /> </flux:form> <flux:form.section name="images" label="Images"> <flux:form

TYPO3 ckeditor: allow img tag without enabling image plugin

霸气de小男生 提交于 2019-12-24 13:32:33
问题 On a plain TYPO3 8 installation, I want ckeditor to allow the img tag in the source, without enabling the image plugin. The default configuration of ckeditor in TYPO3 removes the image plugin, which causes img tags to be removed as well. According to the ckeditor documentation, this can be achieved with the property config.extraAllowedContent = 'img' but it does not work in my custom yaml configuration. img tags are always striped when I switch from source to wysiwyg mode. If I enable the

How to implement the sourceCollection responsive image rendering in TYPO3?

可紊 提交于 2019-12-24 12:05:13
问题 I want to implement responsive image rendering according to the different scale (media) in TYPO3 using sourceCollection? <picture> <source src="fileadmin/_processed_/imagefilenamename_595cc36c48.png" media="(max-device-width: 600px)" /> <source src="fileadmin/_processed_/imagefilenamename_42fb68d642.png" media="(max-device-width: 600px) AND (min-resolution: 192dpi)" /> <img src="fileadmin/_processed_/imagefilenamename_595cc36c48.png" alt="" /> </picture> I can render it using TypoScript but