<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>fragmente &#187; TYPO3</title>
	<atom:link href="http://blog.team-noir.net/category/typo3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.team-noir.net</link>
	<description>team noir blog</description>
	<lastBuildDate>Thu, 19 Jan 2012 15:04:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3</title>
		<link>http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/</link>
		<comments>http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 20:32:30 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[ssl-proxy]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=494</guid>
		<description><![CDATA[How to Two questions and my solution (works with TYPO3 4.5 on HostEurope Webpack 3.0) 1. Use ssl or ssl-proxy at your website (in my case TYPO3) 2. Use only the www. variant from your website (duplicate content). Caution: Code is especially for HostEurope, change IP and Proxyaddress ! &#160; force ssl (.htaccess) #redirect for [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/03/typo3-4-5-sendmail-on-host-europe-server/' rel='bookmark' title='TYPO3 4.5 &#8211; sendmail on Host Europe Server'>TYPO3 4.5 &#8211; sendmail on Host Europe Server</a></li>
<li><a href='http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/' rel='bookmark' title='How to &#8211; redirect restricted TYPO3 pages to loginform and back'>How to &#8211; redirect restricted TYPO3 pages to loginform and back</a></li>
<li><a href='http://blog.team-noir.net/2011/07/how-to-autoupdate-wordpress-hosted-at-host-europe/' rel='bookmark' title='How to autoupdate WordPress hosted at Host Europe'>How to autoupdate WordPress hosted at Host Europe</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to</strong></p>
<p>Two questions and my solution (works with TYPO3 4.5 on HostEurope Webpack 3.0)</p>
<p><strong>1.</strong> Use ssl or ssl-proxy at your website (in my case TYPO3)</p>
<p><strong>2.</strong> Use only the www. variant from your website (<a href="http://support.google.com/webmasters/bin/answer.py?hl=de&amp;answer=66359" target="_blank">duplicate content</a>).</p>
<p><strong><span id="more-494"></span>Caution</strong>: Code is especially for HostEurope, change IP and Proxyaddress !</p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;"><strong>force ssl (.htaccess)</strong></span></p>
<pre>#redirect for non-ssl
RewriteCond %{SERVER_PORT} ^80$
RewriteCond %{HTTP_HOST} !^www\.domain\.de$ [NC]
RewriteRule ^(.*)$ http://www.domain.de/$1 [R=301,L]

#redirect for ssl
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{HTTP_HOST} !^www\.domain\.de$ [NC]
RewriteRule ^(.*)$ https://www.domain.de/$1 [R=301,L]</pre>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;"><strong>force ssl-proxy (.htaccess)</strong></span></p>
<pre>#1st option, ssl.proxy ip with wildcard
RewriteCond %{REMOTE_ADDR} !10.9.0.*$
#2nd option, use ssl-proxy address
#RewriteCond %{HTTP:X-Forwarded-Server}  !^ssl.webpack\.de$ 

#redirect non-www to www
RewriteCond %{HTTP_HOST} !^www\.domain\.de$
RewriteRule (.*) http://www.domain.de/$1 [L,R=301]</pre>
<p>&nbsp;</p>
<p>You will also need some Extensions and php-Code</p>
<ul>
<li>Install &#8220;<em>https_enforcer&#8221;</em> in TYPO3, Instructions: <a href="http://typo3.org/documentation/document-library/extension-manuals/https_enforcer/current/">http://typo3.org/documentation/document-library/extension-manuals/https_enforcer/current/</a></li>
<li>Follow the Instructions for ssl-proxy from here: <a href="http://wiki.typo3.org/De:Installation_at_Hosteurope" target="_blank">http://wiki.typo3.org/De:Installation_at_Hosteurope</a></li>
<li>more helpful links: <a href="http://blog.marit.ag/2009/06/02/ssl-einstellungen-https-enforce-dmc-https/" target="_blank">ssl on TYPO3 #1</a>, <a href="http://jweiland.net/typo3/anleitung/allgemeines/ssl.html" target="_blank">ssl on TYPO3 #2</a></li>
</ul>
<p>So, that&#8217;s all &#8211; enjoy (or post your solution!)</p>
<p>&nbsp;</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/03/typo3-4-5-sendmail-on-host-europe-server/' rel='bookmark' title='TYPO3 4.5 &#8211; sendmail on Host Europe Server'>TYPO3 4.5 &#8211; sendmail on Host Europe Server</a></li>
<li><a href='http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/' rel='bookmark' title='How to &#8211; redirect restricted TYPO3 pages to loginform and back'>How to &#8211; redirect restricted TYPO3 pages to loginform and back</a></li>
<li><a href='http://blog.team-noir.net/2011/07/how-to-autoupdate-wordpress-hosted-at-host-europe/' rel='bookmark' title='How to autoupdate WordPress hosted at Host Europe'>How to autoupdate WordPress hosted at Host Europe</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to &#8230; &#8211; TYPO3 fe_userlisting sort by &#8230;</title>
		<link>http://blog.team-noir.net/2012/01/typo3-hint-fe_userlisting_sort_by/</link>
		<comments>http://blog.team-noir.net/2012/01/typo3-hint-fe_userlisting_sort_by/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 13:47:37 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[TYPO3]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=477</guid>
		<description><![CDATA[How to &#8230; sort the fe_userlisting view in frontend? In my project i needed to sort the usertable in frontend by first_name or last_name. The extension manual list the following typoscript setup: tx_feuserlisting_pi1._DEFAULT_PI_VARS.sort = last_name:0 tx_feuserlisting_pi1._DEFAULT_PI_VARS.sort = first_name:0 But nothing happened &#8230; So i searched for a while an found the solution here. You need [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/04/how-to-sort-the-feuserlist-typo3/' rel='bookmark' title='How to &#8230; sort the feuserlist in TYPO3'>How to &#8230; sort the feuserlist in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-change-the-rte-linktext-in-typo3/' rel='bookmark' title='How to &#8230; change the RTE linktext in TYPO3'>How to &#8230; change the RTE linktext in TYPO3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to</strong></p>
<p>&#8230; sort the <a href="http://typo3.org/documentation/document-library/extension-manuals/feuserlisting/current/">fe_userlisting</a> view in frontend?</p>
<p>In my project i needed to sort the usertable in frontend by <strong>first_name</strong> or <strong>last_name</strong>.<br />
<span id="more-477"></span> The extension manual list the following typoscript setup:</p>
<pre>tx_feuserlisting_pi1._DEFAULT_PI_VARS.sort = last_name:0
tx_feuserlisting_pi1._DEFAULT_PI_VARS.sort = first_name:0</pre>
<p>But nothing happened &#8230;</p>
<p>So i searched for a while an found the solution <a href="http://www.typo3.net/forum/beitraege/diverse_sonstige_module/84844/seite/1/" target="_blank">here.</a></p>
<p>You need to edit the file &#8220;class.tx_feuserlisting_pi1.php&#8221; and extend on line 170 the following:</p>
<pre>$this-&gt;internal['orderByList'] = 'username,name,email,country,city,zip';</pre>
<p>to</p>
<pre>$this-&gt;internal['orderByList'] = '<strong>first_name,last_name</strong>,username,name,email,country,city,zip';</pre>
<p>THAT&#8217;s ALL!</p>
<p>&nbsp;</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/04/how-to-sort-the-feuserlist-typo3/' rel='bookmark' title='How to &#8230; sort the feuserlist in TYPO3'>How to &#8230; sort the feuserlist in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-change-the-rte-linktext-in-typo3/' rel='bookmark' title='How to &#8230; change the RTE linktext in TYPO3'>How to &#8230; change the RTE linktext in TYPO3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2012/01/typo3-hint-fe_userlisting_sort_by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mixed TYPO3 &amp; TypoScript Snippets Vol. 3</title>
		<link>http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/</link>
		<comments>http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/#comments</comments>
		<pubDate>Tue, 24 May 2011 09:53:01 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=465</guid>
		<description><![CDATA[some nice typoscript snippets for everybody &#38; TYPO3 configuration hints show some tt_content via typoscript object on every place you want: lib.tsobject = RECORDS lib.tsobject{   tables = tt_content    source = content id } activate BE-compressing: Compressing resource files will save bandwidth and so improve loading speed especially for users with slower internet connections. [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/' rel='bookmark' title='mixed TypoScript Snippets Vol. 1'>mixed TypoScript Snippets Vol. 1</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>some nice typoscript snippets for everybody &amp; TYPO3 configuration hints</p>
<p><span id="more-465"></span></p>
<p><strong>show some tt_content via typoscript</strong> object on every place you want:</p>
<pre>lib.tsobject = RECORDS
lib.tsobject{
  tables = tt_content
   source = <em>content id</em>
}
</pre>
<p><strong>activate BE-compressing:</strong></p>
<p>Compressing resource files will save bandwidth and so improve loading speed especially for users<br />
with slower internet connections. TYPO3 can compress the .js and .css files for you.</p>
<p><em>localconf.php:</em></p>
<pre>$TYPO3_CONF_VARS['BE']['compressionLevel'] = '9';</pre>
<p><em>.htaccess:</em></p>
<pre>&lt;FilesMatch "\.js\.gzip$"&gt;
    AddType "text/javascript" .gzip
&lt;/FilesMatch&gt;
&lt;FilesMatch "\.css\.gzip$"&gt;
    AddType "text/css" .gzip
&lt;/FilesMatch&gt;
AddEncoding gzip .gzip</pre>
<p><strong>show page-id&#8217;s in BE</strong>, type the following lines into the BE-USER-TS oder BE-USERGROUP-TS:</p>
<pre>options.pageTree.showPageIdWithTitle=1</pre>
<p><strong>automatically fill out author</strong> in BE (tt_news &amp; pages):</p>
<pre>TCAdefaults.pages.author :=author_return(realName)
TCAdefaults.tt_news.author :=author_return(realName)</pre>
<p>That&#8217;s all for today &#8211; have fun!</p>
<p>TYPO3 inspiring people to share</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/' rel='bookmark' title='mixed TypoScript Snippets Vol. 1'>mixed TypoScript Snippets Vol. 1</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3 4.5 &#8211; sendmail on Host Europe Server</title>
		<link>http://blog.team-noir.net/2011/03/typo3-4-5-sendmail-on-host-europe-server/</link>
		<comments>http://blog.team-noir.net/2011/03/typo3-4-5-sendmail-on-host-europe-server/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 21:55:01 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[install tool]]></category>
		<category><![CDATA[sendmail]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=453</guid>
		<description><![CDATA[Hi. With the new TYPO3 Version 4.5 a new problem appears &#8230; damn. No more sendmail function, no testmail (install tool), no mail from contact-forms &#8230; Here is the solution: Change in localconf.php $TYPO3_CONF_VARS['MAIL']['transport'] = 'mail'; $TYPO3_CONF_VARS['MAIL']['transport_sendmail_command'] = '/usr/sbin/sendmail -bs' to $TYPO3_CONF_VARS['MAIL']['transport'] = 'sendmail'; $TYPO3_CONF_VARS['MAIL']['transport_sendmail_command'] = '/usr/sbin/sendmail -t -f mail@domain.com'; Of course you need a [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/' rel='bookmark' title='How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3'>How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2011/07/how-to-autoupdate-wordpress-hosted-at-host-europe/' rel='bookmark' title='How to autoupdate WordPress hosted at Host Europe'>How to autoupdate WordPress hosted at Host Europe</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-add-metatags-to-typo3-website/' rel='bookmark' title='How to &#8230; add metatags to TYPO3 website'>How to &#8230; add metatags to TYPO3 website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Hi.</p>
<p>With the new TYPO3 Version 4.5 a new problem appears &#8230; damn.</p>
<p>No more sendmail function, no testmail (install tool), no mail from contact-forms &#8230;</p>
<p><span id="more-453"></span></p>
<p>Here is the solution: <em>Change in localconf.php</em></p>
<pre>$TYPO3_CONF_VARS['MAIL']['transport'] = 'mail';
$TYPO3_CONF_VARS['MAIL']['transport_sendmail_command'] = '/usr/sbin/sendmail -bs'</pre>
<p>to</p>
<pre>$TYPO3_CONF_VARS['MAIL']['transport'] = 'sendmail';
$TYPO3_CONF_VARS['MAIL']['transport_sendmail_command'] = '/usr/sbin/sendmail -t -f mail@domain.com';</pre>
<p>Of course you need a valid email address!</p>
<p>That&#8217;s all &#8211; it works!</p>
<p>further information:</p>
<ul>
<li><a href="# http://jweiland.net/typo3/versionen/version-45.html">http://jweiland.net/typo3/versionen/version-45.html</a></li>
<li><a href="# http://faq.hosteurope.de/index.php?cpid=11073">http://faq.hosteurope.de/index.php?cpid=11073</a></li>
</ul>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/' rel='bookmark' title='How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3'>How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2011/07/how-to-autoupdate-wordpress-hosted-at-host-europe/' rel='bookmark' title='How to autoupdate WordPress hosted at Host Europe'>How to autoupdate WordPress hosted at Host Europe</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-add-metatags-to-typo3-website/' rel='bookmark' title='How to &#8230; add metatags to TYPO3 website'>How to &#8230; add metatags to TYPO3 website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2011/03/typo3-4-5-sendmail-on-host-europe-server/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to &#8211; redirect restricted TYPO3 pages to loginform and back</title>
		<link>http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/</link>
		<comments>http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 20:12:03 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[m_forum]]></category>
		<category><![CDATA[realurl]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=426</guid>
		<description><![CDATA[Hi. I think this is a well known problem in TYPO3 &#8211; i found several forum posts &#8211; but no solution. If you have a website with some &#8220;member only&#8221; pages, probably a forum (i use mm_forum in this installation) and users get a email with a notification for new topics or something like this [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/03/how-to-change-the-title-in-typo3/' rel='bookmark' title='How to &#8230; change the title-element in TYPO3'>How to &#8230; change the title-element in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/' rel='bookmark' title='How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3'>How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-add-a-redirect-for-realurl-ext/' rel='bookmark' title='How to &#8230; add a simple REDIRECT with realurl Extension'>How to &#8230; add a simple REDIRECT with realurl Extension</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Hi.</p>
<p>I think this is a well known problem in TYPO3 &#8211; i found several forum posts &#8211; but no solution.</p>
<p><span id="more-426"></span></p>
<p>If you have a website with some &#8220;member only&#8221; pages, probably a forum (i use <a href="http://typo3.org/extensions/repository/view/mm_forum/current/">mm_forum</a> in this installation) and users get a email with a notification for new topics or something like this &#8230;</p>
<p>Inside the email you get a direct link to your &#8220;member-only&#8221; page.</p>
<pre>http://www.domain.de/forum/post/123/
</pre>
<p>In combination with <a href="http://typo3.org/extensions/repository/view/realurl/current/">realurl</a> the link will cause  &#8220;404 &#8211; Page not found&#8221; situation. Test it &#8211; it is horrible.</p>
<p>You must consider,  if you restrict the hole page, you will never solve this problem.<br />
You must <span style="text-decoration: underline;"><strong>only restrict the pagecontent</strong></span> for fe_users. I write it again: <strong>never restrict the hole page</strong>!</p>
<p>So, i searched for a solution. Found <a href="http://sanderrr.com/?p=67">this one</a>, very nice and it works! Thank you Sanderrr!</p>
<pre>[usergroup=*]
[else]
config &gt;
config.additionalHeaders = Location: /index.php?id=PID_DES_LOGINFORMULARS
page &gt;
page = PAGE
page.10 = TEXT
page.10.value=No Access!
[global]
</pre>
<p>But what&#8217;s up with a <strong>redirect</strong> to your first link location <strong>after</strong> login? config.additionalHeaders dislike COA_INT or TEXT.</p>
<p>A new problem &#8211; so we need a new solution &#8230; page redirect with condition in TYPOP3. Help me!</p>
<p>After one night without sleep, bad dreams and beer i build my own typoscript legendary redirect setup. Praise me <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre>#page 123 is restricted
[PIDinRootline = 123]
page.headerData.666 = COA_INT
page.headerData.666.10 = TEXT
page.headerData.666.10.value = &lt;meta http-equiv="refresh" content="0; URL=/index.php?id=11&amp;referer=
#index.php?id=11 -&gt; my loginpage
page.headerData.666.20 = TEXT
page.headerData.666.20.insertData = 1
page.headerData.666.20.data = getIndpEnv:TYPO3_REQUEST_URL
page.headerData.666.30 = TEXT
page.headerData.666.30.value = " /&gt;
[global]

#remove redirect, if user logged in
[usergroup = *] &amp;&amp; [PIDinRootline = 123]
page.headerData.666 &gt;
[global]
</pre>
<p>You can see, i use the page.meta.refresh function to redirect my restricted pages. Not sweet but it works like a charm.</p>
<p>That&#8217;s enough for today. TYPO3 inspiring to share!<br />
Good night!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/03/how-to-change-the-title-in-typo3/' rel='bookmark' title='How to &#8230; change the title-element in TYPO3'>How to &#8230; change the title-element in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2012/01/how-to-use-ssl-and-ssl-proxy-on-host-europe-via-htaccess-with-typo3/' rel='bookmark' title='How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3'>How to &#8230; use ssl and ssl-proxy on Host Europe via .htaccess with TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/09/how-to-add-a-redirect-for-realurl-ext/' rel='bookmark' title='How to &#8230; add a simple REDIRECT with realurl Extension'>How to &#8230; add a simple REDIRECT with realurl Extension</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mixed TypoScript Snippets Vol. 2</title>
		<link>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/</link>
		<comments>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 15:36:07 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=419</guid>
		<description><![CDATA[New stuff, just copy&#38;paste Today i present: Disable  Flexform Elements from tt_news: paste into PageTS: TCEFORM.tt_news.datetime.disabled = 0 TCEFORM.tt_news.editlock.disabled = 1 TCEFORM.tt_news.image.disabled = 0 TCEFORM.tt_news.imagecaption.disabled = 1 TCEFORM.tt_news.imagealttext.disabled = 1 TCEFORM.tt_news.imagetitletext.disabled = 0 TCEFORM.tt_news.related.disabled = 1 TCEFORM.tt_news.short.disabled = 1 TCEFORM.tt_news.bodytext.disabled = 0 TCEFORM.tt_news.author.disabled = 0 TCEFORM.tt_news.author_email.disabled = 1 TCEFORM.tt_news.news_files.disabled = 1 TCEFORM.tt_news.links.disabled = 0 TCEFORM.tt_news.keywords.disabled [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/' rel='bookmark' title='mixed TypoScript Snippets Vol. 1'>mixed TypoScript Snippets Vol. 1</a></li>
<li><a href='http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/' rel='bookmark' title='css3 snippets for every day: border-radius, gradient, shadow, &#8230;'>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>New stuff, just copy&amp;paste <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Today i present:</p>
<p><span id="more-419"></span></p>
<h4>Disable  Flexform Elements from tt_news:</h4>
<p>paste into PageTS:</p>
<pre>TCEFORM.tt_news.datetime.disabled = 0
TCEFORM.tt_news.editlock.disabled = 1
TCEFORM.tt_news.image.disabled = 0
TCEFORM.tt_news.imagecaption.disabled = 1
TCEFORM.tt_news.imagealttext.disabled = 1
TCEFORM.tt_news.imagetitletext.disabled = 0
TCEFORM.tt_news.related.disabled = 1
TCEFORM.tt_news.short.disabled = 1
TCEFORM.tt_news.bodytext.disabled = 0
TCEFORM.tt_news.author.disabled = 0
TCEFORM.tt_news.author_email.disabled = 1
TCEFORM.tt_news.news_files.disabled = 1
TCEFORM.tt_news.links.disabled = 0
TCEFORM.tt_news.keywords.disabled = 1
TCEFORM.tt_news.archivedate.disabled = 1
TCEFORM.tt_news.ext_url.disabled = 1
TCEFORM.tt_news.fe_group.disabled = 1
...
</pre>
<h4>activate new tt_news articles automatically (not hidden):</h4>
<p>again, paste into PageTS:</p>
<pre>TCAdefaults.tt_news.hidden = 0
</pre>
<h4>insert a Logout-Button on feeditadvanced Layout:</h4>
<p>First, add this to your root TS-Setup:</p>
<pre>[globalVar = TSFE : beUserLogin &gt; 0]
lib.belogout = TEXT
lib.belogout.value = &lt;a class="belogout" title="Logout!" href="typo3/logout.php?redirect=../index.php"&gt;Logout&lt;/a&gt;
[global]
</pre>
<p>now you will need a TS-Object or a PageMARKER inside your FE-Template, like &#8230;</p>
<pre>lib.belogout
</pre>
<p>just add some CSS like:</p>
<pre>.belogout {
 display: inline-block;
 padding-top: 4px;
 margin: 2px 10px 0 0;
 height: 21px;
 text-decoration: none;
 cursor: pointer;
 text-align: center;
 color: #c6c6c6;
 background: url(../../typo3conf/ext/feeditadvanced/res/icons/menubar/button.png) no-repeat 0 0;
 font-size: 12px;
 width: 92px;
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 z-index: 8001;
 position: fixed;
 right: 100px;
 top:1px;
 color: #fff;
}
.belogout:hover, .belogout:active, .belogout:visited {color:#fff; text-decoration:none;}
</pre>
<p>Now your Logout-Button looks like the feeditadvanced Layout und works &#8230;</p>
<p><a href="http://blog.team-noir.net/wp-content/uploads/2010/08/logout_button.png"><img class="alignnone size-full wp-image-421" title="logout_button" src="http://blog.team-noir.net/wp-content/uploads/2010/08/logout_button.png" alt="" width="382" height="107" /></a></p>
<p>That&#8217;s all for today.</p>
<p>TYPO3 &#8211; <strong>Inspiring people to share</strong> &#8211; Yeah that&#8217;s right!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/' rel='bookmark' title='mixed TypoScript Snippets Vol. 1'>mixed TypoScript Snippets Vol. 1</a></li>
<li><a href='http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/' rel='bookmark' title='css3 snippets for every day: border-radius, gradient, shadow, &#8230;'>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mixed TypoScript Snippets Vol. 1</title>
		<link>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/</link>
		<comments>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 09:07:45 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=415</guid>
		<description><![CDATA[Today i will start a new Session and post some nice and tricky TypoScript Snippets for Typo3 (tested in Ver. 4.4) show restricted Pages &#38; add css (class=&#8221;locked&#8221;) make restricted pages visible for all, but not accessible # 11 = Page with Login Plugin config.typolinkLinkAccessRestrictedPages = 11 config.typolinkLinkAccessRestrictedPages_addParams = &#38;referer=###RETURN_URL### #for the menu lib.menu.1 { [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/' rel='bookmark' title='How to &#8211; redirect restricted TYPO3 pages to loginform and back'>How to &#8211; redirect restricted TYPO3 pages to loginform and back</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today i will start a new Session and post some nice and tricky TypoScript Snippets for Typo3 (tested in Ver. 4.4)</p>
<h4>show restricted Pages &amp; add css (class=&#8221;locked&#8221;)</h4>
<p><span id="more-415"></span></p>
<p>make restricted pages visible for all, but not accessible</p>
<pre># 11 = Page with Login Plugin
config.typolinkLinkAccessRestrictedPages = 11
config.typolinkLinkAccessRestrictedPages_addParams = &amp;referer=###RETURN_URL###

#for the menu
lib.menu.1 {
 showAccessRestrictedPages = NONE
 showAccessRestrictedPages.addParams = &amp;redirect_url=###RETURN_URL###
}
</pre>
<p>now, add some class or attributes to the restricted pages</p>
<pre>[usergroup = *]
# after login
...
[else]
#without login
...
lib.menu.1.NO = 1
lib.menu.1.NO.ATagParams.if {
         value=0
         isGreaterThan.field = fe_group
     }
lib.menu.1.NO.ATagParams = class="locked"
lib.menu.1.IFSUB = 1
lib.menu.1.IFSUB.ATagParams.if {
         value=0
        isGreaterThan.field = fe_group
     }
lib.menu.1.IFSUB.ATagParams = class="locked"
[end]
</pre>
<p>hard to find the right solution, i spent several hours for this snippets &#8211; so have fun!</p>
<p><a href="http://typo3.org/"><img class="alignnone" title="Inspiring people to share" src="http://typo3.org/fileadmin/templates/images/logo-typo3.gif" alt="Inspiring people to share" width="123" height="34" /></a></p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-2/' rel='bookmark' title='mixed TypoScript Snippets Vol. 2'>mixed TypoScript Snippets Vol. 2</a></li>
<li><a href='http://blog.team-noir.net/2010/11/how-to-redirect-restricted-typo3-pages-to-loginform-and-back/' rel='bookmark' title='How to &#8211; redirect restricted TYPO3 pages to loginform and back'>How to &#8211; redirect restricted TYPO3 pages to loginform and back</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/08/mixed-typoscript-snippets-vol-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3 Version 4.4.0 released</title>
		<link>http://blog.team-noir.net/2010/06/typo3-440-released/</link>
		<comments>http://blog.team-noir.net/2010/06/typo3-440-released/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 10:47:31 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[new version]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=387</guid>
		<description><![CDATA[Yesterday they did it &#8230; The latest TYPO3 version 4.4 makes TYPO3 easier than ever – especially for newbies. Your TYPO3 website can be up and running in five minutes after it has been downloaded – use the included template and it is ready to go right away. Below you will find the most important [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/11/typo3-ver-4-3-released/' rel='bookmark' title='TYPO3 ver. 4.3 released'>TYPO3 ver. 4.3 released</a></li>
<li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Yesterday they did it &#8230;</p>
<blockquote><p><strong>The latest TYPO3 version 4.4 makes TYPO3 easier than ever –  especially for newbies. Your TYPO3 website can be up and running in five  minutes after it has been downloaded – use the included template and it  is ready to go right away. Below you will find the most important  innovations.</strong></p></blockquote>
<p>from: <a href="http://typo3.org/download/release-notes/typo3-44/">http://typo3.org/download/release-notes/typo3-44/</a></p>
<p><span id="more-387"></span></p>
<p><a href="http://typo3.org/download/release-notes/typo3-44/"><img class="alignnone" title="official view" src="http://typo3.org/typo3temp/pics/8ae7447e01.png" alt="screenshot TYPO3 4.4.0" width="300" height="227" /></a></p>
<p>Last night i checked my own &#8220;starterpackage&#8221; with the new version. Everything seems to be fine.</p>
<p>The new Backend looks great, loads fast and is really easy to use.</p>
<p><strong>Thanks to the Core-team of TYPO3</strong>! Great work, guys!</p>
<h4><span style="text-decoration: underline;"><strong>UPGRADING from 4.3 to 4.4:</strong></span></h4>
<p>Here you&#8217;ll finde some nice tricks and tutorials &#8230;</p>
<ul>
<li><a href="http://wiki.typo3.org/index.php/Upgrade#Upgrading_to_4.4">http://wiki.typo3.org/index.php/Upgrade#Upgrading_to_4.4</a></li>
<li><a href="http://www.youtube.com/watch?v=iE2tFVtm5Is">http://www.youtube.com/watch?v=iE2tFVtm5Is</a></li>
<li><a href="http://www.youtube.com/watch?v=5ksV41wfJIo">http://www.youtube.com/watch?v=5ksV41wfJIo</a></li>
</ul>
<p><a href="http://typo3.org/download/release-notes/typo3-44/"><img class="alignnone" title="easy 1-2-3 Installation" src="http://typo3.org/typo3temp/pics/85c972c930.png" alt="screenshot 1-2-3 installation" width="200" height="155" /></a></p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/11/typo3-ver-4-3-released/' rel='bookmark' title='TYPO3 ver. 4.3 released'>TYPO3 ver. 4.3 released</a></li>
<li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2009/07/fight-old-browsers-youtube-follows/' rel='bookmark' title='Fight old Browsers &#8211; YouTube follows'>Fight old Browsers &#8211; YouTube follows</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/06/typo3-440-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems after upgrading TYPO3 4.2 to 4.3 with stylesheets and images</title>
		<link>http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/</link>
		<comments>http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 15:51:31 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=361</guid>
		<description><![CDATA[TYPO3 Upgrade 4.2 to 4.3  &#8211; Backendview Today i had some trouble after upgrading TYPO3 Installation 4.2.10 to 4.3.3 . After the big security announcement i decided to update all costumers TYPO3 Installations. With my short step-by-step upgrade sheet everything works fine, only one &#8230; After Uploading the files the TYPO3 Install-Tool appears with basic [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-set-chmod-typo3/' rel='bookmark' title='How to &#8230; set permission chmod for TYPO3'>How to &#8230; set permission chmod for TYPO3</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>TYPO3 Upgrade 4.2 to 4.3  &#8211; Backendview</h3>
<p>Today i had some trouble after upgrading TYPO3 Installation 4.2.10 to 4.3.3 .<br />
After the big <a href="http://typo3.org/teams/security/security-bulletins/typo3-sa-2010-008/">security announcement</a> i decided to update all costumers TYPO3 Installations.</p>
<p><span id="more-361"></span></p>
<p>With my short <a href="http://blog.team-noir.net/2009/07/how-to-update-typo3-42/">step-by-step upgrade sheet</a> everything works fine, only one &#8230;</p>
<p>After Uploading the files the TYPO3 Install-Tool appears with basic black/white stylesheet, no images, no alignement &#8230; *strange*<br />
The Backend doesn&#8217;t show any image, the menu couldn&#8217;t get clicked &#8211; aahhhhrgh! Whats up?!</p>
<p>But here&#8217;s my solution: <em>SEARCH, READ, UNDERSTAND, ADJUST</em></p>
<p>I found some hints in the <em>install.txt</em> from TYPO3 source:</p>
<blockquote><p>Make sure that AllowOverride allows &#8220;Indexes&#8221; and &#8220;FileInfo&#8221; in the Apache<br />
configuration. If you cannot ensure this, rename .htaccess files to<br />
_.htaccess. TYPO3 will run but considerably slower.<br />
Here is the list of the files to rename:<br />
typo3/contrib/.htaccess<br />
typo3/gfx/.htaccess<br />
typo3/mod/user/ws/.htaccess<br />
typo3/sysext/.htaccess<br />
typo3/sysext/t3skin/stylesheets/.htaccess<br />
If the error does not disappear, web server error logs should help.</p></blockquote>
<p>That&#8217;s all. First i tested mith renaming the .htaccess to _.htaccess, in the second step i adjust the apache-config manually -&gt; tataaaam, it works fine!</p>
<p>So have fun with TYPO3.</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/07/how-to-update-typo3-42/' rel='bookmark' title='How to &#8230; update TYPO3 4.2'>How to &#8230; update TYPO3 4.2</a></li>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2009/02/how-to-set-chmod-typo3/' rel='bookmark' title='How to &#8230; set permission chmod for TYPO3'>How to &#8230; set permission chmod for TYPO3</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/04/problems-after-upgrading-typo3-4-2-to-4-3-with-stylesheets-and-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete csc-default and id tag in TYPO3 4.3</title>
		<link>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/</link>
		<comments>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 15:48:34 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[htmlcode]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=350</guid>
		<description><![CDATA[How to &#8230; Since TYPO3 Version 4.3 all the source code is tagged with unlovely id and class tags with div-wrapper. &#60;div id="c1" class="csc-default"&#62; But with one little typoscript snippet you will get rid off it: tt_content.stdWrap.innerWrap &#62; Now everything looks clean and sweet. I love TYPO3 anyway! Related posts: mixed TYPO3 &#038; TypoScript Snippets [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2009/03/how-to-set-the-favicon-in-typo3/' rel='bookmark' title='How to &#8230; set the favicon in TYPO3'>How to &#8230; set the favicon in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to &#8230;</strong></p>
<p>Since TYPO3 Version 4.3 all the source code is tagged with unlovely <em>id</em> and <em>class</em> tags with <em>div-wrapper</em>.</p>
<pre>&lt;div id="c1" class="csc-default"&gt;</pre>
<p>But with one little typoscript snippet you will get rid off it:</p>
<pre>tt_content.stdWrap.innerWrap &gt;
</pre>
<p>Now everything looks clean and sweet. I love TYPO3 anyway!</p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2011/05/mixed-typo3-and-typoscript-snippets-vol-3/' rel='bookmark' title='mixed TYPO3 &amp; TypoScript Snippets Vol. 3'>mixed TYPO3 &#038; TypoScript Snippets Vol. 3</a></li>
<li><a href='http://blog.team-noir.net/2009/03/how-to-set-the-favicon-in-typo3/' rel='bookmark' title='How to &#8230; set the favicon in TYPO3'>How to &#8230; set the favicon in TYPO3</a></li>
<li><a href='http://blog.team-noir.net/2009/05/how-to-sort-the-typoscript-template/' rel='bookmark' title='How to &#8230; sort the Typoscript Template'>How to &#8230; sort the Typoscript Template</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2010/04/how-to-delete-csc-default-and-id-tag-in-typo3-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

