typo3

TYPO3: How do i render tt_content text elements in my own extensions?

I'm currently writing a TYPO3 extension which is configured with a list of tt_content UID's. These point to content elements of type "text" and i want to render them by my extension. Because of TYPO3s special way of transforming the text you enter in the rich text editing when it enters the database, and again transforming it when it is...

TYPO3: setting plugin as of the "USER_INT type"

I have a working TYPO3 extension. It is attached this wiki page. How can I change the code of this extension so it is of the USER_INT type? I.e. I don't want TYPO3 to cache the output of this plugin, and want TYPO3 to invoke the extension ever time a page that uses the extension, i.e. disable the caching for this extension. ...

TYPO3 TCA - How to use "inline" type without all the interface options

I'm currently working on a project that uses the t3blog extension. In the backend, when creating a new post, you first enter a title and then you have to click on "create new" to add content to the post. Ideally the client wants to remove the "create new" or at least have it create a new piece of content by default. I'm digging through...

Dynamic database record icons in the list module?

In typo3, is there is a way to render a thumbnail of an image contained inside an extension table as the icon for the record in the list module?The TCA documentation doesn't seem to say you can! ...

Typo3 protected sites access to GET variables

I am writing an Typo3 Extension and everything is working fine right now. I Access the GET Variables via t3lib_div::_GET('rid'); This does work on the testsite I added my Extension to, but if I add it on another subsite of the same page which is in an access-restricted area this does not work. I use var_dump to look at the GET vars, ...

Change typo3 content to templavoila

I want to use templavoila on an existing website. So i have to link all the regular content in the templavoila Page Module. I dont want to do this by hand as there are multiple thousand entrys. I looked up how TV saved those entries and they just have a Flexform field in the database with an xml where i can list the UIDs of the content e...

Typo3: How do I insert page content into template

I have some content, that I want to appear on multiple pages of my typo3 site. I could just insert this into the template, but I also want that content to be editable in the Rich Text Editor. So I had the idea of creating a hidden page, but I don't know how to insert this content into a template. Does it require the select typoscript s...

What enterprise-class open source CMS has the steepest (easiest) learning curve for a programmers team?

As a company specialized in developing custom CMS, we have been asked to deploy a open source CMS in our next project. We are free to choose a system. What would you recommend for a team familiar with MVC model and OOP in PHP5? I was told that Drupal and TYPO3 are very hard at the beginning, so what are the other options? eZ Publish o...

I need an IDE for typo3 core development in php

Php in itself is difficult for IDEs because of the dynamic nature of the language. My current development environment is mostly netbeans against a local svn copy of the codebase setup in a local development webserver. The code is full text indexed by vistas search engine for almost instant searches. I do a lot of development directly a...

How can I insert the current page title automaticly into a typo3 template?

actually the title is the whole question... i just want to modify the template so that the current page title is automaticly shown (i'm working with html templates so I just need the bit of typoscript to get the page title out of the database) i hope that's possible and somebody knows how ...

Typo3 Extension Alphabetical site index - How to add additional wrap?

Add extra wrap in Alphabetical site index Situation described in the code. I think my problem is the right scope, but i don't how to solve it. Thanks a lot. # # Alphabetical site index # # @see http://typo3.org/documentation/document-library/extension-manuals/cl_alphabeticalindex/0.1.3/view/toc/0/# # @note typoscript/templates/ext/cl_...

typo 3, simple user interface in backend

Hi, I would like to have a simple interface in typo3 backend for viewing the data from database (joining two tables) and also to be able to edit the data. I tired something with tca array but I dont know how display the data that are already in database. Is there an option that says foe example that this tca configuration should display ...

access data from another content element in templavoila data structure

I defined a page content element which has a background picture. It's a simple mapping on an attribtue with a wrap. Everything is working fine and the typoscript part of the data structure looks like this: 10 = IMG_RESOURCE 10.file.import = uploads/tx_templavoila/ 10.file.import.current = 1 10.file.import.listNum = 0 10.stdWrap.wrap = b...

Typo 3 - Change website language in frontend?

Hello! Is it possible to change the website language in my frontend typo templates? I want to have a list or a dropdown of all website languages i have created in my typo backend. On click, I want to show my page in the chosen language. plz help me! ...

TYPO3: getTypoLink_URL alternative (generating url aliases)

Is there an alternative way of getting the URL to a page (by id) apart from using cObj->getTypoLink_URL? I'm trying to create URL aliases, so a page can have multiple URLs (for example "/about" could actually point to "/corporate/home/about"). I'm currently hooking into realurl's hook decodeSpURL_preProc, but TSFE and cObj are not init...

Typo3 - how to set the <base> tag in the header of generated html pages?

I have inherited ownership of a website running on Typo3 version 4.2.1. There are two pages that are not rendering correctly, and this seems to be down to a failure to load css and javascript files. Inspecting the page source, I can see that the <base href="blah..." /> tag is missing from the page header. The question: how on Earth do I...

wurfl2 integration in typo3

everytime i try to install the wurfl2 extension in tpyo3 i get the following error message: Fatal error: require_once() [function.require]: Failed opening required '' (include_path='.:/usr/local/php/lib/php:/usr/local/php/lib/php/PEAR') in /html/typo3conf/temp_CACHED_ps9b8e_ext_localconf.php on line 501 is anyone familiar with this er...

Does a svn frontend for git exist

We are planing to migrate our repositories from svn to git. However there are some people using np_subversion which integrates SVN into the TYPO3-Backend. np_subversion calls the svn client to make updates, commits, show logs etc. I am looking for a tool that behaves like the svn client but works on a git repository as its backend. (Kin...

typo3 Indexed Search Engine - not all the page content is indexed

I have a typo3 site with Indexed Search Engine extension... The problem is that not all the content is indexed (with debug option activated in conf content not all the page is present but the page size is corect), only the firts part of the page (witch is the head/title and the begining of the menu...). So for every page the words are on...

htacces with two domains. Point domain1/folder to domain1/anotherfolder/

Hello I have a hotel with two domains. Now the customer want a redirect: domain1.dk/folder/ [nothing should happen] domain2.dk/folder/ -> domain1.dk/anotherfolder/ The two URL's above (domain1.dk/folder/, domain2.dk/folder/) does not exist in the navigation structure today. I am not sure if htaccess is the way to go when there are m...