<?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>Comments on: ajax-proxy: A PHP AJAX Proxy with Cookie Support</title>
	<atom:link href="http://codefury.net/2010/06/ajax-proxy-a-php-ajax-proxy-with-cookie-support/feed/" rel="self" type="application/rss+xml" />
	<link>http://codefury.net/2010/06/ajax-proxy-a-php-ajax-proxy-with-cookie-support/</link>
	<description>One programmer's formatted output stream</description>
	<lastBuildDate>Thu, 17 May 2012 17:20:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Lesson learned: You can&#8217;t access DOM elements within an external iFrame &#124; Vidal Quevedo</title>
		<link>http://codefury.net/2010/06/ajax-proxy-a-php-ajax-proxy-with-cookie-support/comment-page-1/#comment-1090</link>
		<dc:creator>Lesson learned: You can&#8217;t access DOM elements within an external iFrame &#124; Vidal Quevedo</dc:creator>
		<pubDate>Wed, 13 Apr 2011 16:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://codefury.net/?p=234#comment-1090</guid>
		<description>[...] accessing them directly if they weren&#8217;t generated from your own domain. Of course, you can create a proxy file with PHP to retrieve the data first and then add the resulting HTML to your script to go around [...]</description>
		<content:encoded><![CDATA[<p>[...] accessing them directly if they weren&#8217;t generated from your own domain. Of course, you can create a proxy file with PHP to retrieve the data first and then add the resulting HTML to your script to go around [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Bush</title>
		<link>http://codefury.net/2010/06/ajax-proxy-a-php-ajax-proxy-with-cookie-support/comment-page-1/#comment-644</link>
		<dc:creator>Scott Bush</dc:creator>
		<pubDate>Thu, 30 Dec 2010 20:49:52 +0000</pubDate>
		<guid isPermaLink="false">http://codefury.net/?p=234#comment-644</guid>
		<description>Kenny, this proxy sounds like *exactly* what I need for my current project; I&#039;m so glad you&#039;re sharing it. But I have yet to get it to work. I&#039;ve tried a number of configurations but all I ever get is:

Fatal proxy Exception: &#039;A valid response was not received from the host&#039; in /var/www/vhosts/[path]/[to]/[site]/ajaxProxy.php:505

The same result appears whether the proxy is accessed directly through the browser (a number of them, actually) or through code, multiple data sources (including delicious&#039;s feeds in XML, JSON and RSS formats), with or without the two optional parameters to AjaxProxy constructor,  on a true webserver or a local webserver, with or without web proxies configured for my computer. I really want this to work, but haven&#039;t been able to find an example to follow anywhere.

Do you have any thoughts on this, or can you post a simple example that works?</description>
		<content:encoded><![CDATA[<p>Kenny, this proxy sounds like *exactly* what I need for my current project; I&#8217;m so glad you&#8217;re sharing it. But I have yet to get it to work. I&#8217;ve tried a number of configurations but all I ever get is:</p>
<p>Fatal proxy Exception: &#8216;A valid response was not received from the host&#8217; in /var/www/vhosts/[path]/[to]/[site]/ajaxProxy.php:505</p>
<p>The same result appears whether the proxy is accessed directly through the browser (a number of them, actually) or through code, multiple data sources (including delicious&#8217;s feeds in XML, JSON and RSS formats), with or without the two optional parameters to AjaxProxy constructor,  on a true webserver or a local webserver, with or without web proxies configured for my computer. I really want this to work, but haven&#8217;t been able to find an example to follow anywhere.</p>
<p>Do you have any thoughts on this, or can you post a simple example that works?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MJ</title>
		<link>http://codefury.net/2010/06/ajax-proxy-a-php-ajax-proxy-with-cookie-support/comment-page-1/#comment-470</link>
		<dc:creator>MJ</dc:creator>
		<pubDate>Thu, 23 Sep 2010 20:43:45 +0000</pubDate>
		<guid isPermaLink="false">http://codefury.net/?p=234#comment-470</guid>
		<description>Hi, I&#039;m trying to use this together with 404 error handlers to port a part of heavy ajax html form to my server (for the sake of letting it work on my server, while posting the results to the original server) -
I&#039;ve got couple comments - it doesn&#039;t work on all servers because of getallheaders compatibility - you might want to use that function (found somewhere on the web) to handle that:

function emu_getallheaders() {
foreach($_SERVER as $h=&gt;$v)
if(ereg(&#039;HTTP_(.+)&#039;,$h,$hp))
$headers[$hp[1]]=$v;
return $headers;
}

That would have been a cool concept... unfortunately it doesn&#039;t work as expected, since the browser get all too serious about 404 error and are failing to work with 404&#039;d documents :/</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m trying to use this together with 404 error handlers to port a part of heavy ajax html form to my server (for the sake of letting it work on my server, while posting the results to the original server) -<br />
I&#8217;ve got couple comments &#8211; it doesn&#8217;t work on all servers because of getallheaders compatibility &#8211; you might want to use that function (found somewhere on the web) to handle that:</p>
<p>function emu_getallheaders() {<br />
foreach($_SERVER as $h=&gt;$v)<br />
if(ereg(&#8216;HTTP_(.+)&#8217;,$h,$hp))<br />
$headers[$hp[1]]=$v;<br />
return $headers;<br />
}</p>
<p>That would have been a cool concept&#8230; unfortunately it doesn&#8217;t work as expected, since the browser get all too serious about 404 error and are failing to work with 404&#8242;d documents :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajax-proxy.php; easily send cross-domain ajax requests via PHP &#124; Sankho Mallik . com</title>
		<link>http://codefury.net/2010/06/ajax-proxy-a-php-ajax-proxy-with-cookie-support/comment-page-1/#comment-422</link>
		<dc:creator>ajax-proxy.php; easily send cross-domain ajax requests via PHP &#124; Sankho Mallik . com</dc:creator>
		<pubDate>Wed, 23 Jun 2010 18:11:54 +0000</pubDate>
		<guid isPermaLink="false">http://codefury.net/?p=234#comment-422</guid>
		<description>[...] take my word for it. Read Kenny&#8217;s blog post for better details. Or just check it out at HUGE&#8217;s github account!   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] take my word for it. Read Kenny&#8217;s blog post for better details. Or just check it out at HUGE&#8217;s github account!   Share and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

