<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Kommentare zu: Duplicate Headers bei Magento 1.1.3</title>
	<atom:link href="http://www.exanto.de/duplicate-headers-bei-magento-113.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 16:06:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Von: Jed</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-109534</link>
		<dc:creator>Jed</dc:creator>
		<pubDate>Wed, 18 Jan 2012 00:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-109534</guid>
		<description>&lt;p&gt;We sure appreciate this post. This fix is required for Magento Enterprise Full Page Cache to work with cgi. Except in our case, we&#039;re using &#039;fpm&#039; so we had to make the following adjustment.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;if (substr(php_sapi_name(), 0, 3) == &#039;fpm&#039;)&lt;/code&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>We sure appreciate this post. This fix is required for Magento Enterprise Full Page Cache to work with cgi. Except in our case, we&#8217;re using &#8216;fpm&#8217; so we had to make the following adjustment.</p>

<p><code>if (substr(php_sapi_name(), 0, 3) == 'fpm')</code></p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Ingo</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-87710</link>
		<dc:creator>Ingo</dc:creator>
		<pubDate>Fri, 24 Jun 2011 07:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-87710</guid>
		<description>&lt;p&gt;Glad to hear that. If your Apache is configured to deliver in UTF-8 that shouldn&#039;t be an issue, but on a shared environment it may be necessary to force UTF-8 through the Header you added.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Glad to hear that. If your Apache is configured to deliver in UTF-8 that shouldn&#8217;t be an issue, but on a shared environment it may be necessary to force UTF-8 through the Header you added.</p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Anna</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-87709</link>
		<dc:creator>Anna</dc:creator>
		<pubDate>Fri, 24 Jun 2011 07:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-87709</guid>
		<description>&lt;p&gt;Strange I added  
&lt;pre lang=&quot;php&quot;&gt;Mage::app()-&gt;getResponse()-&gt;setHeader(&quot;Content-Type&quot;, &quot;text/html; charset=UTF-8&quot;,true);&lt;/pre&gt;to function above and it helped me.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Strange I added

</p>
<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">Mage<span style="color: #339933;">::</span><span style="color: #004000;">app</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getResponse</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setHeader</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Content-Type&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;text/html; charset=UTF-8&quot;</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>


to function above and it helped me.]]></content:encoded>
	</item>
	<item>
		<title>Von: Ingo</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-87708</link>
		<dc:creator>Ingo</dc:creator>
		<pubDate>Fri, 24 Jun 2011 07:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-87708</guid>
		<description>&lt;p&gt;Hi Anna, the encoding is a server issue and has nothing to do with the above patch. You will have to mess with PHP/Apache Config to fix this.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Anna, the encoding is a server issue and has nothing to do with the above patch. You will have to mess with PHP/Apache Config to fix this.</p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Anna</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-87706</link>
		<dc:creator>Anna</dc:creator>
		<pubDate>Fri, 24 Jun 2011 06:20:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-87706</guid>
		<description>&lt;p&gt;This patch works great but after it my header send me data in incorrect encoding, I need to get it in UTF-8  but I get them in ISO-8859-1.
Adding AddDefaultCharset UTF-8 in htaccess doesn&#039;t help.
Could you please help me ?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This patch works great but after it my header send me data in incorrect encoding, I need to get it in UTF-8  but I get them in ISO-8859-1.
Adding AddDefaultCharset UTF-8 in htaccess doesn&#8217;t help.
Could you please help me ?</p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Fischl Otto</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-80946</link>
		<dc:creator>Fischl Otto</dc:creator>
		<pubDate>Wed, 16 Mar 2011 09:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-80946</guid>
		<description>&lt;p&gt;Vielen Danke f&#252;r den Tipp. Das betraf bei mir die Seitenausgabe f&#252;r 404-Fehler, sowie die Anzeige der Chart-Grafik im Adminbereich! Jetzt wird wieder alles korrekt angezeigt.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Vielen Danke f&#252;r den Tipp. Das betraf bei mir die Seitenausgabe f&#252;r 404-Fehler, sowie die Anzeige der Chart-Grafik im Adminbereich! Jetzt wird wieder alles korrekt angezeigt.</p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Steve Lorek</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-78519</link>
		<dc:creator>Steve Lorek</dc:creator>
		<pubDate>Mon, 07 Feb 2011 16:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-78519</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I had to modify the above code slightly to allow import/export profiles to work.&lt;/p&gt;

&lt;p&gt;Below is the modified section:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;&lt;code&gt;        if (strcasecmp($header[&#039;name&#039;], &#039;content-type&#039;)===0) {&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;        if ($contentSent &#124;&#124; (substr($header[&#039;value&#039;], 0, 9) == &#039;text/html&#039;)) {
            unset($this-&gt;_headers[$i]);
        } else {
            $contentSent = true;
        }
    }
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>I had to modify the above code slightly to allow import/export profiles to work.</p>

<p>Below is the modified section:</p>

<p><pre><code>        if (strcasecmp($header['name'], 'content-type')===0) {</code></pre></p>

<pre><code>        if ($contentSent || (substr($header['value'], 0, 9) == 'text/html')) {
            unset($this-&amp;gt;_headers[$i]);
        } else {
            $contentSent = true;
        }
    }
</code></pre>

<p></p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Sean</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-76185</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Mon, 03 Jan 2011 18:18:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-76185</guid>
		<description>&lt;p&gt;Thank you for the patch. 
Makes 1.4.1.1 work with FastCGI. 
It&#039;s an ongoing problem.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you for the patch. 
Makes 1.4.1.1 work with FastCGI. 
It&#8217;s an ongoing problem.</p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Mike</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-70520</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 26 Oct 2010 22:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-70520</guid>
		<description>&lt;p&gt;Danke vielmals, jetzt gehts.&lt;/p&gt;

&lt;p&gt;Der Fix ist noch immer nicht im Core drinnen. Ich kann nur jedem raten, die Finger von Magento zu lassen. Es gibt so viele Sachen, die nicht gehen und das 2,5 Jahre nach Release 1. Eine Schande f&#252;r die Jungs.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Danke vielmals, jetzt gehts.</p>

<p>Der Fix ist noch immer nicht im Core drinnen. Ich kann nur jedem raten, die Finger von Magento zu lassen. Es gibt so viele Sachen, die nicht gehen und das 2,5 Jahre nach Release 1. Eine Schande f&#252;r die Jungs.</p>]]></content:encoded>
	</item>
	<item>
		<title>Von: Chris</title>
		<link>http://www.exanto.de/duplicate-headers-bei-magento-113.html/comment-page-1#comment-55267</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 30 Nov 2009 07:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.exanto.de/?p=185#comment-55267</guid>
		<description>&lt;p&gt;Jaaa geil, hast mir grad mein Arsch gerettet, Feeds rennen wieder, thx man =)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jaaa geil, hast mir grad mein Arsch gerettet, Feeds rennen wieder, thx man =)</p>]]></content:encoded>
	</item>
</channel>
</rss>

