<?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: PHP, cURL und die SESSION</title>
	<atom:link href="http://martin.schurbohm.net/wordpress/2010/02/08/php-curl-und-die-session.html/feed" rel="self" type="application/rss+xml" />
	<link>http://martin.schurbohm.net/wordpress/2010/02/08/php-curl-und-die-session.html</link>
	<description>Aaah - Venedig!</description>
	<lastBuildDate>Tue, 15 Mar 2011 08:31:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Von: Rene</title>
		<link>http://martin.schurbohm.net/wordpress/2010/02/08/php-curl-und-die-session.html/comment-page-1#comment-47</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Tue, 15 Mar 2011 08:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://martin.schurbohm.net/wordpress/?p=339#comment-47</guid>
		<description>Hey,

ich nutze Firefox 3.6.15. Wordpress dürfte damit eigentlich keine Probleme haben...

Gruß

Rene</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>ich nutze Firefox 3.6.15. WordPress dürfte damit eigentlich keine Probleme haben&#8230;</p>
<p>Gruß</p>
<p>Rene</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: MarS</title>
		<link>http://martin.schurbohm.net/wordpress/2010/02/08/php-curl-und-die-session.html/comment-page-1#comment-46</link>
		<dc:creator>MarS</dc:creator>
		<pubDate>Mon, 14 Mar 2011 16:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://martin.schurbohm.net/wordpress/?p=339#comment-46</guid>
		<description>Hmm, komisch, ich kann die beiden Code-Blöcke in Opera 11 sehen - welchen Browser nutzt du?
Ich kopier den Code mal hier in die Antwort (der untere Absatz ist der funktionierende)


Das sieht dann so aus:

&lt;code&gt;&lt;?php session_start();  
  // beliebiger Code  
  $ch = curl_init();  
  curl_setopt($ch, CURLOPT_URL, &quot;http://www.example.com/&quot;);  
  curl_setopt($ch, CURLOPT_HEADER, 0);  
  curl_setopt($ch, CURLOPT_COOKIE, session_name() . &quot;=&quot; . session_id());  
  curl_exec($ch);  
  curl_close($ch);  
?&gt;&lt;/code&gt;


...........


Das erledigt session_write_close(); für uns.

&lt;code&gt;&lt;?php session_start();  
  // beliebiger Code  
  session_write_close();  
  $ch = curl_init();  
  curl_setopt($ch, CURLOPT_URL, &quot;http://www.example.com/&quot;);  
  curl_setopt($ch, CURLOPT_HEADER, 0);  
  curl_setopt($ch, CURLOPT_COOKIE, session_name() . &quot;=&quot; . session_id());  
  curl_exec($ch);  
  curl_close($ch);  
?&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hmm, komisch, ich kann die beiden Code-Blöcke in Opera 11 sehen &#8211; welchen Browser nutzt du?<br />
Ich kopier den Code mal hier in die Antwort (der untere Absatz ist der funktionierende)</p>
<p>Das sieht dann so aus:</p>
<p><code>< ?php session_start();<br />
  // beliebiger Code<br />
  $ch = curl_init();<br />
  curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");<br />
  curl_setopt($ch, CURLOPT_HEADER, 0);<br />
  curl_setopt($ch, CURLOPT_COOKIE, session_name() . "=" . session_id());<br />
  curl_exec($ch);<br />
  curl_close($ch);<br />
?></code></p>
<p>&#8230;&#8230;&#8230;..</p>
<p>Das erledigt session_write_close(); für uns.</p>
<p><code>< ?php session_start();<br />
  // beliebiger Code<br />
  session_write_close();<br />
  $ch = curl_init();<br />
  curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");<br />
  curl_setopt($ch, CURLOPT_HEADER, 0);<br />
  curl_setopt($ch, CURLOPT_COOKIE, session_name() . "=" . session_id());<br />
  curl_exec($ch);<br />
  curl_close($ch);<br />
?></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: MarS</title>
		<link>http://martin.schurbohm.net/wordpress/2010/02/08/php-curl-und-die-session.html/comment-page-1#comment-45</link>
		<dc:creator>MarS</dc:creator>
		<pubDate>Mon, 14 Mar 2011 16:37:11 +0000</pubDate>
		<guid isPermaLink="false">http://martin.schurbohm.net/wordpress/?p=339#comment-45</guid>
		<description>Hallo Rene,

die beiden Code-Blöcke sind vermutlich bei einem der letzten Wordpress-Updates abhanden gekommen.
Ich versuche das heute Abend zu rekonstruieren bzw. aus dem Projekt auszulesen.

Gruß, Martin</description>
		<content:encoded><![CDATA[<p>Hallo Rene,</p>
<p>die beiden Code-Blöcke sind vermutlich bei einem der letzten WordPress-Updates abhanden gekommen.<br />
Ich versuche das heute Abend zu rekonstruieren bzw. aus dem Projekt auszulesen.</p>
<p>Gruß, Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Student</title>
		<link>http://martin.schurbohm.net/wordpress/2010/02/08/php-curl-und-die-session.html/comment-page-1#comment-44</link>
		<dc:creator>Student</dc:creator>
		<pubDate>Mon, 14 Mar 2011 12:27:25 +0000</pubDate>
		<guid isPermaLink="false">http://martin.schurbohm.net/wordpress/?p=339#comment-44</guid>
		<description>Hallo,

vielen Dank für den Beitrag das ist genau das was ich suche....aber wo ist der Code hin? =(

Gruß

Rene</description>
		<content:encoded><![CDATA[<p>Hallo,</p>
<p>vielen Dank für den Beitrag das ist genau das was ich suche&#8230;.aber wo ist der Code hin? =(</p>
<p>Gruß</p>
<p>Rene</p>
]]></content:encoded>
	</item>
</channel>
</rss>

