Archives
I’ve tried to get indexed_search in Typo3 to work. If you try to do this the first time it isn’t really easy. After the basic setup the normal search was fine. However external documents like pdf and winword were not being indexed. Of course I’ve installed the needed tools and checked the path to them [...]
While trying to get indexed_search in Typo3 to work I’ve discoverd a lot of log_setTSlogMessage functions in the code. I ask myself where to find the output of these function. I digged around and found a reference to $GLOBAL['TT']. Ok. Not much better. Again I had to dig around. Finally I got a simple answer: [...]
If you ever need to install a Typo3 4.3 or higher on a Strato you may encounter a problem with ImageMagick. First of all you need an package which supports ImageMagick! If you package supports it then you may have the problem that ImageMagick Version 4.2.9 will not work and gives you that error: “There [...]
To speed up the render process of Typo3 of you may try this extension: nc_staticfilecache This extension will cache each rendered page of Typo3 into a static file. When a user tries to access this page the next time the page is delivered directly. Of course the extension takes care of the cache timeout configuration [...]
When you setup your Typo3 installation with realURL you may also want to add a more informative 404 error page. At a first look this doesn’t seems to be a problem. Just open your localconf.php and add these lines at the end of the file. $TYPO3_CONF_VARS["FE"]["pageNotFound_handling"] = 'http://www.example.com/not-found-404.html'; $TYPO3_CONF_VARS["FE"]["pageNotFound_handling_statheader"] = 'HTTP/1.1 404 Not Found'; An [...]
If your Tyop3 installation is a bit slow the following tips my help to speed up you site. Use a php cache module Adjust the caching parameter of you mysql Installation.For me these setting helps for a performance boost key_buffer = 32M table_cache = 128 query_cache_size = 64M query_cache_type = 1 log-bin Try this Typo3 [...]
When writing your own Typo3 extension you may come to the day where you need to enter some free HTML content. This content may also include some links. No Problem so far. But if you save the stuff to the db Typo3 transforms the text. For example all a-Tags are written as <link XX>Test</link> and [...]
When you try to write your own front end (FE) extensions with Typo3 there are common pitfalls. First of all be sure you enabled your table to hold the information. (Can be done very easy via the kickstarter). Next be sure you don’t query do much information of your table. All you need are the [...]
When using RealURL in multi language environment sending an real 404 is sometimes not so easy. Some I just want to give you some hints: First of all enable the pageNotFound_handling of Typo3. open the file typo3conf/localconf.php add these lines $TYPO3_CONF_VARS["FE"]["pageNotFound_handling"] = ‘http://www.my-domain.com/en/not-found.html’; $TYPO3_CONF_VARS["FE"]["pageNotFound_handling_statheader"] = ‘HTTP/1.1 404 Not Found’; Now you need to check your [...]
If you like to use the link wizard to link to an internal or external url you may want to change the start tab. You can to this very easy. Just open the tca.php of your extension. Find the field you want to change and replace “script” => “browse_links.php?mode=wizard”, with “script” => “browse_links.php?mode=wizard&act=page”, to start [...]