typo3

I cannot see thumbnails for images in the backend anymore. Why?

微笑、不失礼 提交于 2019-12-12 16:27:32
问题 If I go to Filelist in the Typo3 backend and check the option to display thumbnails, I only see broken image links. Yet I remember that the thumbnails displayed ok at some point. A test of ImageMagick in the install tool of typo shows, that ImageMagick is working ok. What to do? 回答1: It's not only RealURL's problem - although it's most common while users are manipulating this file manually to add custom rules. Anyway this problem also ocures with typo3conf/localconf.php . How to confirm:

Which PHP functions are necessary for TYPO3 6?

纵饮孤独 提交于 2019-12-12 13:49:15
问题 I just did a fresh install of TYPO3 6.1. The system environment check tells me, that some PHP functions are disabled on my server. I'm using Froxlor on my server to administrate domains and alike. Thus, I have complete control over this machine but I'm not sure which functions are really necessary. Some functions seem to be pretty dangerous to me, so I don't want to enable every function which are disabled on my box. TYPO3 lists the following functions as disabled: disable_functions=parse_ini

TYPO3: Set more than one storage pid for one extension

半世苍凉 提交于 2019-12-12 12:12:36
问题 I builded an extension that has a 'details' table that holds details with a title and a description that be included inline to another object. Right now new details are stored in the same pid as the object, but I'd like to change that. this question was answered by Merec and in the comments he points to a solution (add the column "pid" to your model, this is the first the model looks at) but asked to formulate a separate question for it ... I took his suggestion but could not get it to work,

TYPO3 distribution.png issue when posting images

只谈情不闲聊 提交于 2019-12-12 10:25:40
问题 This issue has already been raised here but without answer. I am not sure it is exactly the same problem. My website uses TYPO3 6.2. It includes 3 static templates: CSS Styled Content Bootstrap Package Fluid content elements: Twitter Bootstrap The Typoscript is only a custom CSS that can be removed without change. The problem is that every image added through the page editor in a typical page content (as "Text and Images" or "Images Only"), the displayed image is always the following: https:/

TYPO3 news - How to show different media files in default language and overlay language

别等时光非礼了梦想. 提交于 2019-12-12 10:23:12
问题 I use the following syntax in my fluid template to render the media files in news: <f:for each="{v:content.resources.fal(field: 'fal_media',table:'tx_news_domain_model_news',uid:'{newsItem.uid}')}" as="singleImage"> <div style="background-image: url({singleImage.url})" class="teaser__image"></div> </f:for> German is my default language, English the overlay language. In the English news I have implemented a different media image, but only the German (default) image is shown. How can I render

.htaccess redirect to language subfolder

自作多情 提交于 2019-12-12 10:12:58
问题 What I have: there are two languages installed: German and English language-versions are managed with subfolders (www.domain.com/de/ and www.domain.com/en/) machine: Typo3 4.5.4 / RealUrl installed mod_rewrite is enabled an works What I want to do: redirect requests without language subfolder to the German version e.g. domain.com/any/test/folder/ to domain.com/ de /any/test/folder What I tried: RedirectMatch permanent ^/(?!(?:(?:de|en)/))(.*)$ /de/$1 Occuring problems: all requests were

Additional page property fields in TYPO3 CMS 6.2

≡放荡痞女 提交于 2019-12-12 09:19:32
问题 What would be the recommended method to add custom page property fields in TYPO3 6.2? In 4.5 I used TemplaVoila which had its own page module and made it easy to add data records on a page level. 回答1: There are several approaches: The "vanilla" approach: Create an extension (and with it the file ext_emconf.php ) and then create a file ext_tables.sql in the extension root. In it you can put SQL-definitions for the new fields, by defining a CREATE TABLE statement for the pages table: CREATE

TYPO3 references

自古美人都是妖i 提交于 2019-12-12 08:41:44
问题 I'm working recently on many TYPO3 Projects and I'd like to have a good tutorial/reference to work my way up. I'm looking for something like Agile Web Development with Rails but for TYPO3 if you like. The documentation of TYPO3 is good but not incredible so I was wondering if there was a better option out there. 回答1: For extension development with Extbase and Fluid : Michael Schams: TYPO3 Extbase: Modern Extension Development for TYPO3 CMS with Extbase & Fluid (2019, third edition, TYPO3 9)

What is “Fluid powered TYPO3” and is it recommended?

这一生的挚爱 提交于 2019-12-12 08:39:42
问题 What is to be understood by "Fluid powered TYPO3" (as stated by http://fedext.net/) and what are its benefits for the integration? Are there other modern templating approaches for TYPO3 6.x that would be best practice to switch to now? I don't understand the different systems that are around at the moment and I need some clarification. The background of the question, what I am looking for: Don't use Templavoila Keep it simple, little coding overhead That's why I still use markers! Enable

TYPO3 6.2 -> PHP 5.3 -> MySQL issue

大憨熊 提交于 2019-12-12 06:45:16
问题 I am stuck at a problem about setup a old TYPO3 6.2 project. I am forced to use PHP 5.3 and I am not able to use MySQLi, TYPO3 throws an error: 1271492607:Database Error: PHP mysqli extension not loaded. This is a must have for TYPO3 CMS! How can I enable MySQLi now? Using Ubuntu 16.04, downloaded PHP 5.3 and the MySQL extension from ppa, here I am thankful for any help 回答1: Is the php53-mod-mysql installed and also activated? Create an test.php with the content <?php php_info(): ?> to check