-
11th May, 2012 by Christian Koch | 0 Comments | Categorie: t3 extension development
To assign html code to the corresponding fluid variable it has to be in one of the following fluid tags:
read more…
-
8th April, 2012 by Christian Koch | 0 Comments | Categorie: t3 extension development
read more…
-
3rd February, 2012 by Christian Koch | 0 Comments | Categorie: t3 extension development
Change the following line typo3conf/ext/ke_troubletickets/mod1/index.php on line 181
read more…
-
5th January, 2012 by Christian Koch | 0 Comments | Categorie: php, t3 extension development
You have seo_basics installed and want to change your title tag from within your own extension.
Use the following code snippet:
read more…
-
13th November, 2011 by Christian Koch | 0 Comments | Categorie: t3 extension development
Who didn’t have this problem yet, you upload your old Typo3 Installation to a new hoster and nothing is working!
You don’t have any Log files, nothing!
To see what is going on simply add the following line to your typo3conf/localconf.php
$TYPO3_CONF_VARS['SYS']['displayErrors'] = '1';
-
15th October, 2011 by Christian Koch | 0 Comments | Categorie: t3 extension development
After updating Typo3 4.3, 4.4 to Typo3 4.5 I received some Deprecation Warnings: Validation failed for: …
Also I had had one project where the mail text was krypted.
read more…
-
6th March, 2011 by Christian Koch | 0 Comments | Categorie: t3 extension development
<f:form.submit name="select-name" value="{f:translate(key:'send')}"/>
-
14th October, 2010 by Christian Koch | 1 Comment | Categorie: t3 extension development, typoscript
To turn off Typo3′s deprecation log messages insert following line to your typo3conf/localconf.php
$TYPO3_CONF_VARS['SYS']['enableDeprecationLog'] = '0';
To turn them on again delete the Line or:
$TYPO3_CONF_VARS['SYS']['enableDeprecationLog'] = '1';
Don’t forget to clear your Typo3 caches.
Cheers