<?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; blumentritt</title>
	<atom:link href="http://blog.team-noir.net/author/blumentritt/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>fragmente Blog &#8211; comment function FIXED</title>
		<link>http://blog.team-noir.net/2012/01/fragmente-blog-comments-fixed/</link>
		<comments>http://blog.team-noir.net/2012/01/fragmente-blog-comments-fixed/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 15:04:42 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=500</guid>
		<description><![CDATA[Dear readers, our comment function is fixed. We are ready for your posts, answers and questions. Sorry for the circumstances! No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Dear readers,</p>
<p>our comment function is <span style="text-decoration: underline;"><strong>fixed</strong></span>.</p>
<p>We are ready for your posts, answers and questions. Sorry for the circumstances!</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2012/01/fragmente-blog-comments-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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; use WLAN USB-Stick D-Link DWA-160 A2 with Ubuntu (802.11n)</title>
		<link>http://blog.team-noir.net/2012/01/how-to-use-wlan-usb-stick-d-link-dwa-160-a2-with-ubuntu-802-11n/</link>
		<comments>http://blog.team-noir.net/2012/01/how-to-use-wlan-usb-stick-d-link-dwa-160-a2-with-ubuntu-802-11n/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 17:28:21 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[WLAN]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=485</guid>
		<description><![CDATA[How to If you want to use the fast WLAN 802.11n Standard with Ubuntu 11.04 you&#8217;ll need to choose the right driver. The Ubuntu Wiki offers a nice driver/chip overview: http://wiki.ubuntuusers.de/wlan/karten In my case: DWA-160 A2 &#124; USB &#124; Atheros AR-9170 &#124; ID:07d1:3c10 Normally Ubuntu use the ar9170usb driver, but there are probably connectivity problems. [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
<li><a href='http://blog.team-noir.net/2010/03/aptana-studio-2-0-under-ubuntu-9-10/' rel='bookmark' title='Aptana Studio 2.0 under Ubuntu 9.10'>Aptana Studio 2.0 under Ubuntu 9.10</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>How to</strong></p>
<p>If you want to use the fast <a href="http://de.wikipedia.org/wiki/IEEE_802.11n">WLAN 802.11n Standard</a> with Ubuntu 11.04 you&#8217;ll need to choose the right driver.</p>
<p><span id="more-485"></span>The Ubuntu Wiki offers a nice driver/chip overview: <a href="http://wiki.ubuntuusers.de/wlan/karten">http://wiki.ubuntuusers.de/wlan/karten</a><br />
In my case:</p>
<pre><strong>DWA-160 A2</strong> | USB | Atheros AR-9170 | ID:07d1:3c10</pre>
<p>Normally Ubuntu use the <strong>ar9170usb driver</strong>, but there are probably connectivity problems. So let&#8217;s use the second &#8220;standard-driver&#8221; (Ubuntu &gt;= 11.04) <a href="http://www.linuxwireless.org/en/users/Drivers/carl9170"><span style="text-decoration: underline;"><strong>carl9170</strong></span></a>.</p>
<p>&nbsp;</p>
<p><strong>1.</strong> Therefore you just need to &#8220;blacklist&#8221; the first &#8220;standard-driver&#8221; <strong>ar917usb</strong> with this shell command:</p>
<pre>echo 'blacklist ar9170usb' | sudo tee -a /etc/modprobe.d/blacklist.conf</pre>
<p><strong>2.</strong> restart your system</p>
<p><strong>3.</strong> have a look at your wlan symbol and choose &#8220;connection information&#8221; -&gt; here you will find now &#8220;carl9170&#8243; as loaded driver</p>
<p>&nbsp;</p>
<p>Jap, that&#8217;s all! Now WLAN runs with &gt;150Mbit/s <img src='http://blog.team-noir.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2010/04/how-to-add-german-amazon-de-opensearch-plugin-to-firefox-3-5-on-ubuntu-9-1/' rel='bookmark' title='How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1'>How to add german Amazon.de OpenSearch Plugin to Firefox 3.5 on Ubuntu 9.1</a></li>
<li><a href='http://blog.team-noir.net/2010/03/aptana-studio-2-0-under-ubuntu-9-10/' rel='bookmark' title='Aptana Studio 2.0 under Ubuntu 9.10'>Aptana Studio 2.0 under Ubuntu 9.10</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2012/01/how-to-use-wlan-usb-stick-d-link-dwa-160-a2-with-ubuntu-802-11n/feed/</wfw:commentRss>
		<slash:comments>0</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>css3 snippets for every day: border-radius, gradient, shadow, &#8230;</title>
		<link>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/</link>
		<comments>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 17:01:53 +0000</pubDate>
		<dc:creator>blumentritt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://blog.team-noir.net/?p=432</guid>
		<description><![CDATA[How to Some nice CSS3 snippets for every day work &#8230; rounded corners:  border-radius -moz-border-radius: 5px; border-radius: 5px; prefix is only necessary for mozilla! reference: border-radius -moz-border-radius border-top-left-radius -moz-border-radius-topleft border-top-right-radius -moz-border-radius-topright border-bottom-right-radius -moz-border-radius-bottomright border-bottom-left-radius -moz-border-radius-bottomleft more border-radius linear gradients /* Firefox 3.6 */ -moz-linear-gradient(top, #ddd, #fff); /* Safari &#38; Chrome */ -webkit-gradient(linear,left bottom,left top,color-stop(0, #fff),color-stop(1, [...]
Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</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/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to</p>
<p>Some nice CSS3 snippets for every day work &#8230;</p>
<p><span id="more-432"></span></p>
<h4>rounded corners:  <strong>border-radius</strong></h4>
<pre>-moz-border-radius: 5px;
border-radius: 5px;
</pre>
<p>prefix is only necessary for mozilla!</p>
<p>reference:</p>
<pre>border-radius
-moz-border-radius
border-top-left-radius
-moz-border-radius-topleft
border-top-right-radius
-moz-border-radius-topright
border-bottom-right-radius
-moz-border-radius-bottomright
border-bottom-left-radius
-moz-border-radius-bottomleft
</pre>
<p><a href="http://www.css3.info/preview/rounded-border/">more border-radius</a></p>
<h4><strong>linear gradients</strong></h4>
<pre>/* Firefox 3.6 */
-moz-linear-gradient(top, #ddd, #fff);
/* Safari &amp; Chrome */
-webkit-gradient(linear,left bottom,left top,color-stop(0, #fff),color-stop(1, #ddd));
/* IE6 &amp; IE7 */
filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ddd',
endColorstr='#fff');
/* IE8 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ddd',
endColorstr='#fff')";
</pre>
<p><a href="http://codecandies.de/2010/02/16/css-3-gradients/">more gradients 1</a><br />
<a href="http://robertnyman.com/2010/02/15/css-gradients-for-all-web-browsers-without-using-images/">more gradients 2</a><br />
<a href="http://www.colorzilla.com/gradient-editor/">more gradients 3 (generator)</a></p>
<h4><strong>box-shadow:</strong></h4>
<pre>/*Schlagschatten*/
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;

/*inner shadow */
-moz-box-shadow: inset 0 0 5px #888;
-webkit-box-shadow: inset 0 0 5px#888;
box-shadow: inner 0 0 5px #888;
</pre>
<p><a href="http://www.css3.info/preview/box-shadow/">more box-shadow</a></p>
<h4><strong>text-shadow:</strong></h4>
<pre>text-shadow: 2px 2px 2px #000;
</pre>
<p>and for our best friend -&gt; internet explorer some nice <a href="http://www.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/">workarounds</a></p>
<p>Related posts:<ol>
<li><a href='http://blog.team-noir.net/2009/08/css-border-bottom-for-ie-6/' rel='bookmark' title='CSS border-bottom for IE 6'>CSS border-bottom for IE 6</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/2009/08/how-to-style-the-dotted-link-border-in-firefox/' rel='bookmark' title='How to &#8230; style the dotted link border in Firefox'>How to &#8230; style the dotted link border in Firefox</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.team-noir.net/2011/01/css3-snippets-for-every-day-border-radius-gradient-shadow/feed/</wfw:commentRss>
		<slash:comments>1</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>
	</channel>
</rss>

