<?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: Netbeans 6.9 Beta + Zend Framework</title>
	<atom:link href="http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/</link>
	<description></description>
	<lastBuildDate>Mon, 13 Jun 2011 10:26:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Rick Ogden</title>
		<link>http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/comment-page-1/#comment-470</link>
		<dc:creator>Rick Ogden</dc:creator>
		<pubDate>Wed, 16 Feb 2011 09:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.rickogden.com/?p=303#comment-470</guid>
		<description>I think this is to do with PHP needing to be on the global path in Windows. However, I am not a Windows user so I&#039;m afraid I can&#039;t really help.</description>
		<content:encoded><![CDATA[<p>I think this is to do with PHP needing to be on the global path in Windows. However, I am not a Windows user so I&#8217;m afraid I can&#8217;t really help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alberto</title>
		<link>http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/comment-page-1/#comment-469</link>
		<dc:creator>Alberto</dc:creator>
		<pubDate>Wed, 16 Feb 2011 04:55:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.rickogden.com/?p=303#comment-469</guid>
		<description>Forget it, please. I could solve introducing the path to php.exe manually in zf.bat

Thanks anyway</description>
		<content:encoded><![CDATA[<p>Forget it, please. I could solve introducing the path to php.exe manually in zf.bat</p>
<p>Thanks anyway</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alberto</title>
		<link>http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/comment-page-1/#comment-468</link>
		<dc:creator>Alberto</dc:creator>
		<pubDate>Wed, 16 Feb 2011 04:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.rickogden.com/?p=303#comment-468</guid>
		<description>Hi Rick,

I am blocked in a one point of the installation of ZF with Netbeans (Win XP). I have introduced the path to zf.bat in the Zend Script window (...ZendFramework-1.11.3\bin\zf.bat) but when I try to create a new project it returns an error &quot;php.exe is not recognized as internal or external command&quot;

So I introduced the path to php.exe on Netbeans &gt; Options &gt; PHP &gt; General &gt; PHP 5 interpreter (...\XAMPP\php\php.exe) and the same error is returned.

I also introduced the path to php in Netbeans &gt; Options &gt; PHP &gt; General &gt; General Include path ((...\XAMPP\php) and the same.

The zf.bat file contains the following script:

**************************************************************************

REM Test to see if this was installed via pear
SET ZTMPZTMPZTMPZ=@ph
SET TMPZTMPZTMP=%ZTMPZTMPZTMPZ%p_bin@
REM below @php_bin@
FOR %%x IN (&quot;@php_bin@&quot;) DO (if %%x==&quot;%TMPZTMPZTMP%&quot; GOTO :NON_PEAR_INSTALLED)

GOTO PEAR_INSTALLED

:NON_PEAR_INSTALLED
REM Assume php.exe is executable, and that zf.php will reside in the
REM same file as this one
SET PHP_BIN=php.exe
SET PHP_DIR=%~dp0
GOTO RUN

:PEAR_INSTALLED
REM Assume this was installed via PEAR and use replacements php_bin &amp; php_dir
SET PHP_BIN=@php_bin@
SET PHP_DIR=@php_dir@
GOTO RUN

:RUN
SET ZF_SCRIPT=%PHP_DIR%\zf.php
&quot;%PHP_BIN%&quot; -d safe_mode=Off -f &quot;%ZF_SCRIPT%&quot; -- %*

******************************************************************************

I&#039;m a bit down. Could you help me, please?

Regards</description>
		<content:encoded><![CDATA[<p>Hi Rick,</p>
<p>I am blocked in a one point of the installation of ZF with Netbeans (Win XP). I have introduced the path to zf.bat in the Zend Script window (&#8230;ZendFramework-1.11.3\bin\zf.bat) but when I try to create a new project it returns an error &#8220;php.exe is not recognized as internal or external command&#8221;</p>
<p>So I introduced the path to php.exe on Netbeans &gt; Options &gt; PHP &gt; General &gt; PHP 5 interpreter (&#8230;\XAMPP\php\php.exe) and the same error is returned.</p>
<p>I also introduced the path to php in Netbeans &gt; Options &gt; PHP &gt; General &gt; General Include path ((&#8230;\XAMPP\php) and the same.</p>
<p>The zf.bat file contains the following script:</p>
<p>**************************************************************************</p>
<p>REM Test to see if this was installed via pear<br />
SET ZTMPZTMPZTMPZ=@ph<br />
SET TMPZTMPZTMP=%ZTMPZTMPZTMPZ%p_bin@<br />
REM below @php_bin@<br />
FOR %%x IN (&#8220;@php_bin@&#8221;) DO (if %%x==&#8221;%TMPZTMPZTMP%&#8221; GOTO :NON_PEAR_INSTALLED)</p>
<p>GOTO PEAR_INSTALLED</p>
<p>:NON_PEAR_INSTALLED<br />
REM Assume php.exe is executable, and that zf.php will reside in the<br />
REM same file as this one<br />
SET PHP_BIN=php.exe<br />
SET PHP_DIR=%~dp0<br />
GOTO RUN</p>
<p> <img src='http://www.rickogden.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> EAR_INSTALLED<br />
REM Assume this was installed via PEAR and use replacements php_bin &amp; php_dir<br />
SET PHP_BIN=@php_bin@<br />
SET PHP_DIR=@php_dir@<br />
GOTO RUN</p>
<p>:RUN<br />
SET ZF_SCRIPT=%PHP_DIR%\zf.php<br />
&#8220;%PHP_BIN%&#8221; -d safe_mode=Off -f &#8220;%ZF_SCRIPT%&#8221; &#8212; %*</p>
<p>******************************************************************************</p>
<p>I&#8217;m a bit down. Could you help me, please?</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/comment-page-1/#comment-152</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 03 Jun 2010 02:28:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.rickogden.com/?p=303#comment-152</guid>
		<description>Rick, thanks for the post.  This was exactly the info I needed to get Zend up and running in Netbeans.</description>
		<content:encoded><![CDATA[<p>Rick, thanks for the post.  This was exactly the info I needed to get Zend up and running in Netbeans.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JuJuBee</title>
		<link>http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/comment-page-1/#comment-139</link>
		<dc:creator>JuJuBee</dc:creator>
		<pubDate>Tue, 04 May 2010 14:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.rickogden.com/?p=303#comment-139</guid>
		<description>Hey Rick,  just learning zend framework.  I like it alot.  I downloaded the current build for netbeans and configured it fine.  One thing that I liked in Eclipse was the popup window that showed the docbloc commenting info for a function/class etc...  Is this possible with netbeans?

--
juju</description>
		<content:encoded><![CDATA[<p>Hey Rick,  just learning zend framework.  I like it alot.  I downloaded the current build for netbeans and configured it fine.  One thing that I liked in Eclipse was the popup window that showed the docbloc commenting info for a function/class etc&#8230;  Is this possible with netbeans?</p>
<p>&#8211;<br />
juju</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Leach</title>
		<link>http://www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/comment-page-1/#comment-136</link>
		<dc:creator>Michael Leach</dc:creator>
		<pubDate>Thu, 29 Apr 2010 12:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rickogden.com/?p=303#comment-136</guid>
		<description>Hi Rick,

Thanks for the post.

Having recently started to really explore Zend Framework, including Zend Tool, it&#039;s great to hear that Netbeans supports integration with it.  Zend Tool already significantly simplified the process of creating a project structure and creating controllers, and now to have an IDE which takes the typing of the commands away, is there anything left for us developers to do?  Maybe I should say that quieter.  The reality of it is, the less time faffing around with our tools means more time working on the solution, and less time wasted.  +1 to Netbeans.

sensible</description>
		<content:encoded><![CDATA[<p>Hi Rick,</p>
<p>Thanks for the post.</p>
<p>Having recently started to really explore Zend Framework, including Zend Tool, it&#8217;s great to hear that Netbeans supports integration with it.  Zend Tool already significantly simplified the process of creating a project structure and creating controllers, and now to have an IDE which takes the typing of the commands away, is there anything left for us developers to do?  Maybe I should say that quieter.  The reality of it is, the less time faffing around with our tools means more time working on the solution, and less time wasted.  +1 to Netbeans.</p>
<p>sensible</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  www.rickogden.com/2010/04/netbeans-6-9-beta-zend-framework/feed/ ) in 0.91182 seconds, on Feb 7th, 2012 at 1:53 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 7th, 2012 at 2:53 am UTC -->
