typo3

TYPO3 and RealUrl don't use translated page titles in url

最后都变了- 提交于 2019-12-12 05:52:02
问题 I use TYPO3 7.1 and RealUrl 1.13.3. Auto configuration is not using the page title from translated pages and it is not changing ?L=1 to fx /en/ It is just using the default Danish page titles and adding ?L=1 to English pages and ?L=2 to German pages. The content is shown in the right languages. What could be the problem? 回答1: First switch to manual config, then add config for L param in preVars section according to your languages like described in doc array( 'GETvar' => 'L', 'valueMap' =>

How do I get typo3 running

亡梦爱人 提交于 2019-12-12 05:48:49
问题 I am a complete newbie in typo3 and I hope someone can find time to guide me to get my installation running. Going through the getting started page, I untarred typo3_src-7.6.10.tar.gz" in /var/www/html on Linux (Ubuntu). At this step am stuck. I have also created the recommended links in htdocs contained in my rootdocument, which I named "weaconsort". I have even created an empty file "FIRST_INSTALL". Below are contents of htdocs: FIRST_INSTALL -rw-r--r-- 1 root root 13363 Aug 10 19:30

userfunctions.php why I can't add this file in Typo3 fileadmin/

女生的网名这么多〃 提交于 2019-12-12 04:59:04
问题 I am following a tutorial how to create modern templates using typo3.the website with the tutorial I am instructed to add a php file under the in fileadmin/userfunctions.php, but for some reason Typo3 says that this file is not allowed> 回答1: The red error is more than enought to answer your question php extension is not allowed to upload. Just add the file manualy to the directory. By clickng to the folder nat via web panel 回答2: It is sometimes because of BE allowed file extension. Go to

PIDinRootline for TCA mm relation for 'foreign_table_where'

落爺英雄遲暮 提交于 2019-12-12 04:42:22
问题 I have an extension (Typo3 8.7.4) with categories in mm relation. The categories are saved in different pages. So i want to select only categories who are saved in the tree of a certain page and the subpages of this certain page. Is there a marker like the condition in typoscript "PIDinRootline" for selectin entries for foreign_table_where in TCA? 回答1: rootUid ist the correct treeConfig 回答2: The TCA foreign_table_where is documented on this page: https://docs.typo3.org/typo3cms/TCAReference

My manually built TYPO3 lightbox isn't working properly

本小妞迷上赌 提交于 2019-12-12 04:37:52
问题 In a COA, I have this TypoScript to add an image linked to a larger copy of itself. But the Javascript plugin I'm using (Colorbox) isn't able to resize the image properly. 20 = CONTENT 20 { wrap = <div class="lightbox clearfix">|</div> required = 1 table = tt_content select.languageField = sys_language_uid select.where = colPos = 2 select.selectFields = bodytext,image,header renderObj=COA renderObj{ 10 = FILES 10 { required = 1 references { table = tt_content fieldName = image } renderObj =

Hook into TYPO3 form creation

不羁的心 提交于 2019-12-12 04:34:59
问题 I'm looking for a hook to hook into the creation of a frontend form in TYPO3 (e.g. a contact form) which will allow me to pass the form structure to my extensions the moment a form is created (or edited). I'm not so sure where to look, and I have asked before, but might have formulated my question unclear. Does anyone know if such a hook exists, or is available in the new formengine of TYPO3 8? Or if you have a better solution I could use, I'm open for everything. Thanks! 来源: https:/

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

Typo3: How can I read the value of a field in page->edit->tab: Metadata

爷,独闯天下 提交于 2019-12-12 04:18:17
问题 I create a header based on one image, one Main Header and one Sub Header. The following fields/labels in page/edit/Metadata are renamed like that: TCEFORM.pages.author.label.default = HeaderImageMainTitle TCEFORM.pages.author_email.label.default = HeaderImageSubTitle Now I get the content of the media/create new relation/image file and that works fine. But the values of the above two fields with former label 'author' and 'author_email' stay empty (the format tags are there, but no content):

TYPO3 7.6. change typoscript hierarchy via extension-template

走远了吗. 提交于 2019-12-12 04:15:00
问题 Is there a possibility to change the typoscript template hierarchy via an extension-template? Currently i have defined everything including all typoscript in my extension. This works fine with real_url configuration etc. But everything regarding indexed_search is overwritten by the original extension itself. Is there a possibility to define the loading/parsing order of extensions? Thanks! 回答1: You need to define a dependency to all extensions that should load before your extension. If you do

TYPO3 8.7.0 does not include TypoScript

放肆的年华 提交于 2019-12-12 04:08:16
问题 I use TYPO3 with bootstrap package and try to include a backend layout from file. I added this TypoScript in Template > Home > Edit ... > Constants: <INCLUDE_TYPOSCRIPT: source="FILE:fileadmin/typoscript/layouts/test.txt"> test.txt is a copy of a default.txt with "title=Test". However, I am unable to select the backend layout "Test" in the page module. Has anyone a hint? 回答1: first things first: You might want to include your template files in your own template extension, rather than saving