typo3-6.2.x

Set TYPO3 page cache lifetime to an exact month (and not 31 days)

眉间皱痕 提交于 2020-03-22 09:31:30
问题   i have a page with a TYPO3 plugin, that shows the "tip of the month". I populated items in the list module, having a start/end date to the respective month. The thing is I have to either disable the cache (or set it to only 1 day) or flush it manually, or the tip of the last month is still shown. I want the page to be cached, but the cache only be valid until the 1st of each month. Setting page lifetime in the background to "1 month", actually sets a lifetime of 2678400 seconds (31 days),

TYPO3 website doesn't work after changing db

ⅰ亾dé卋堺 提交于 2020-01-25 08:00:06
问题 I want to make a copy of my TYPO3 CMS 6.2.18 website - what I did so far: Copied the entire website folder (including the TYPO3 installation) Copied the entire database (with a new name) Created a new db user for the copied db Adjusted the file /typo3conf/LocalConfiguration.php accordingly to the new DB+User Now I'm receiving following errors when calling different urls of my copied TYPO3 website: When I try calling the "Upgrade Wizard" from inside the install tool /typo3/install (which is

TYPO3 Form send via JQuery.submit()

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-24 12:02:59
问题 I have an typo3 form (action="update") which should be sended via jquery. Form looks like this: <f:form action="update" name="note" object="{note}"> <textarea class="form-control gettooltip" rows="1" placeholder="Kommentar" title="Kommentar zur Note">{note.kommentar}</textarea> </f:form> 回答1: Just to warn you to not follow our team way, when you try to use some custom AJAX dispatcher, then switch to different pageType, after that to eID or whatever. My recommended way to do AJAX calls within

TYPO3 Form send via JQuery.submit()

白昼怎懂夜的黑 提交于 2020-01-24 12:02:07
问题 I have an typo3 form (action="update") which should be sended via jquery. Form looks like this: <f:form action="update" name="note" object="{note}"> <textarea class="form-control gettooltip" rows="1" placeholder="Kommentar" title="Kommentar zur Note">{note.kommentar}</textarea> </f:form> 回答1: Just to warn you to not follow our team way, when you try to use some custom AJAX dispatcher, then switch to different pageType, after that to eID or whatever. My recommended way to do AJAX calls within

TYPO3 6.2 performance, Typoscript Select, Typoscript Cache

时光总嘲笑我的痴心妄想 提交于 2020-01-07 05:50:15
问题 The problem itself is solved, but the question is still open cause I want to test the tipps from Krystian. See Edit 3 at the bottom of this question. I have a TYPO3 project that is very slow. So I did some tests and found some problems. I tested the startpage, the startpage containers 2 news list (total 9 articles) (tx_news version 2.3.0 - not the newest one). It contains the menu (created with fluid v:page.menu), the footer (also created with v:page.menu), a right column (mainly image

Typo3 accessing an existing table to consume data of it

天涯浪子 提交于 2020-01-06 06:01:34
问题 I tried to integrate an existing table to my extension. The problem is that the content of the table isn't taken over. I created a new model with the name of the existing table and named the properties according to the existing column names. I also implemented the corresponding getters and setters of the properties. The name of the existing table is tx_institutsseminarverwaltung_domain_model_event. What is my failure in this case? Just want to access the data of an existing table from another

Rich Text Editor inside Flux Form

点点圈 提交于 2020-01-04 23:04:13
问题 I am using flux and I want to display rte(Rich text editor) in backend form using flux. <f:section name="Configuration"> //...Here i want to display rte element </f:section> 回答1: With Flux Form you can use Below code <f:section name="Configuration"> <flux:field.text name="Text" label="Whatever" enableRichText="1" /> </f:section> In the Form You can use below <f:section name="Main"> <f:format.html>{Text}</f:format.html> <f:section name="Main"> Please Enable Rich Text Editor From Tools >> User

TYPO3 Extbase: persisting domain model with datetime property

我怕爱的太早我们不能终老 提交于 2020-01-02 21:48:06
问题 I am really stuck here (maybe the sickness is not helping...). Setting: - typo3 6.2 with according extbase and fluid - checked about 20 blog entries, the official docu, and a few code snippets I found - Senior on developing TYPO3, but relatively new to extbase/fluid Goal: As many of you, I try to realize a form in the frontend to create a new object. This object contains some datetime properties. Symptoms: - I can create an object in the backend and correctly output it with fluid creating

How to add Tooltips to a Flexform Plugin Configuration?

时光毁灭记忆、已成空白 提交于 2020-01-02 04:38:27
问题 I guess its quite Simple as soon as you know it once, but I am searching on this Topic now for 4+ Hours. So maybe someone can help me out, with a push to the right direction. I develop an Extension for TYPO3 6.2 with Extbase. The Plugin Configuration is done with a FlexForm. To increase Usabillity I want to add Tooltips (helptexts or CSH) to my FlexForm. Approach 1: I tryed it with the Tag <cshFile> and adding the corresponding XML to the Extension Files. As many Forums and Blogs suggest,

Foreign Key to TYPO3 Frontend User

旧巷老猫 提交于 2019-12-29 07:11:27
问题 How can I set a ForeignKey to the TYPO3 FrontendUsers in the Extension Builder? Do I have to set the param map to existing table? oder make a relation? What I want to do: I've got a Model (People) with its own fields and values. and now I want to have a new Releation between this Model and the TYPO3 FE Users PeopleNr = fe_user with uid 123 回答1: Note: As stated in other question creating relations between tables/models doesn't require adding foreign keys I'm not quite sure what do you need it