<?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"
	>
<channel>
	<title>Comments on: Master the &#8216;Run As&#8217; option in Eclipse PDT with PHP</title>
	<atom:link href="http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/</link>
	<description>Web Programming and Design by Aaron Saray</description>
	<pubDate>Fri, 05 Dec 2008 13:19:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Scott</title>
		<link>http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-235</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 26 Nov 2007 01:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-235</guid>
		<description>Hi Aaron,
My php is built in as an apache2 module, so I don't know how to get the debugger to work with Apache2 instead of the php executable.   But at least I know why things aren't working!</description>
		<content:encoded><![CDATA[<p>Hi Aaron,<br />
My php is built in as an apache2 module, so I don&#8217;t know how to get the debugger to work with Apache2 instead of the php executable.   But at least I know why things aren&#8217;t working!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaron</title>
		<link>http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-234</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Mon, 26 Nov 2007 00:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-234</guid>
		<description>I believe the issue is that the debugger is running PHP as a CLI and not as an apache module when debugging... so therefore there is no 'address' to your page.  However, this post is about run-as  and not necessarily about debugging (there is a subtle difference, yet it is a difference).  I hope to soon be posting some more info on the differences.</description>
		<content:encoded><![CDATA[<p>I believe the issue is that the debugger is running PHP as a CLI and not as an apache module when debugging&#8230; so therefore there is no &#8216;address&#8217; to your page.  However, this post is about run-as  and not necessarily about debugging (there is a subtle difference, yet it is a difference).  I hope to soon be posting some more info on the differences.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-233</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 26 Nov 2007 00:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-233</guid>
		<description>Hi Aaron,
I found this page very interesting.  I am just a newbie to php and when debugging a script with eclipse/zend debugger I am getting an error because some of the _SERVER variables namely HTTP_HOST have not been set.  I noticed in your examples that when you ran the script through your browser  all the _SERVER variables were set correctly but when you ran your script using the debugger - they weren't set; unless they just aren't shown here.  If I run the script I am working with in the browser - all goes well, but if I debug it, it quits because HTTP_HOST is not set.  I'll try move the debugger to where my binary is, change to my binary and see if it helps.  Any other ideas?  Thanks, Scott.</description>
		<content:encoded><![CDATA[<p>Hi Aaron,<br />
I found this page very interesting.  I am just a newbie to php and when debugging a script with eclipse/zend debugger I am getting an error because some of the _SERVER variables namely HTTP_HOST have not been set.  I noticed in your examples that when you ran the script through your browser  all the _SERVER variables were set correctly but when you ran your script using the debugger - they weren&#8217;t set; unless they just aren&#8217;t shown here.  If I run the script I am working with in the browser - all goes well, but if I debug it, it quits because HTTP_HOST is not set.  I&#8217;ll try move the debugger to where my binary is, change to my binary and see if it helps.  Any other ideas?  Thanks, Scott.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaron</title>
		<link>http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-132</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Wed, 25 Jul 2007 15:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-132</guid>
		<description>Big Boy:
Right - and thats where I think the debugging and run-as overlap on each other... If my opinion, if you're using break points, you probably want to be in the debug perspective anyhow.

Brian:
I haven't used the standard debugging features that much. Its in my to-do list to figure out the pros and cons of each.  You can use the Zend Debugger, XDebug and also DBG (I believe DBG needs an additional plugin, however).</description>
		<content:encoded><![CDATA[<p>Big Boy:<br />
Right - and thats where I think the debugging and run-as overlap on each other&#8230; If my opinion, if you&#8217;re using break points, you probably want to be in the debug perspective anyhow.</p>
<p>Brian:<br />
I haven&#8217;t used the standard debugging features that much. Its in my to-do list to figure out the pros and cons of each.  You can use the Zend Debugger, XDebug and also DBG (I believe DBG needs an additional plugin, however).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Nelson</title>
		<link>http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-130</link>
		<dc:creator>Brian Nelson</dc:creator>
		<pubDate>Mon, 23 Jul 2007 19:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-130</guid>
		<description>Hey. I have been looking at using Eclipse PDT. How good is the debugger? Can I used Xdebug, or do I have to use the Zend Debugger?</description>
		<content:encoded><![CDATA[<p>Hey. I have been looking at using Eclipse PDT. How good is the debugger? Can I used Xdebug, or do I have to use the Zend Debugger?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BigBoy</title>
		<link>http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-129</link>
		<dc:creator>BigBoy</dc:creator>
		<pubDate>Mon, 23 Jul 2007 13:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.102degrees.com/blog/2007/07/21/master-the-run-as-option-in-eclipse-pdt-with-php/#comment-129</guid>
		<description>I think that the benefit comes in when you use breakpoints to monitor the actual execution of scripts. If all you need to do is look for compile errors, the only real benefit to doing it internally in PDT would be less clicks (I'm lazy like you :o)</description>
		<content:encoded><![CDATA[<p>I think that the benefit comes in when you use breakpoints to monitor the actual execution of scripts. If all you need to do is look for compile errors, the only real benefit to doing it internally in PDT would be less clicks (I&#8217;m lazy like you :o)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.547 seconds -->
