<?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: Installing and running the Zend Framework on XAMPP</title>
	<atom:link href="http://cynergise.com/installing-and-running-the-zend-framework-on-xampp/feed/" rel="self" type="application/rss+xml" />
	<link>http://cynergise.com/installing-and-running-the-zend-framework-on-xampp/</link>
	<description>Learn how to leverage the power of Social Media to gain market share</description>
	<lastBuildDate>Mon, 30 May 2011 22:35:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: AD</title>
		<link>http://cynergise.com/installing-and-running-the-zend-framework-on-xampp/comment-page-1/#comment-759</link>
		<dc:creator>AD</dc:creator>
		<pubDate>Mon, 30 May 2011 22:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://cynergise.com/?p=157#comment-759</guid>
		<description>Dear Chandesh,
Thanks for the brilliant tutorial, but right at the end, one small problem, where do I find the landing/index/start page for zend????????
       I hope you can help me, I will be over the moon!
                                                 AD</description>
		<content:encoded><![CDATA[<p>Dear Chandesh,<br />
Thanks for the brilliant tutorial, but right at the end, one small problem, where do I find the landing/index/start page for zend????????<br />
       I hope you can help me, I will be over the moon!<br />
                                                 AD</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandesh Parekh</title>
		<link>http://cynergise.com/installing-and-running-the-zend-framework-on-xampp/comment-page-1/#comment-758</link>
		<dc:creator>Chandesh Parekh</dc:creator>
		<pubDate>Thu, 26 May 2011 13:23:01 +0000</pubDate>
		<guid isPermaLink="false">http://cynergise.com/?p=157#comment-758</guid>
		<description>@Pankaj - Thanks for the detailed instructions</description>
		<content:encoded><![CDATA[<p>@Pankaj &#8211; Thanks for the detailed instructions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankaj</title>
		<link>http://cynergise.com/installing-and-running-the-zend-framework-on-xampp/comment-page-1/#comment-757</link>
		<dc:creator>Pankaj</dc:creator>
		<pubDate>Thu, 26 May 2011 11:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://cynergise.com/?p=157#comment-757</guid>
		<description>http://www.akrabat.com/wp-content/uploads/Getting-Started-with-Zend-Framework.pdf</description>
		<content:encoded><![CDATA[<p><a href="http://www.akrabat.com/wp-content/uploads/Getting-Started-with-Zend-Framework.pdf" rel="nofollow">http://www.akrabat.com/wp-content/uploads/Getting-Started-with-Zend-Framework.pdf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankaj</title>
		<link>http://cynergise.com/installing-and-running-the-zend-framework-on-xampp/comment-page-1/#comment-754</link>
		<dc:creator>Pankaj</dc:creator>
		<pubDate>Thu, 26 May 2011 11:46:42 +0000</pubDate>
		<guid isPermaLink="false">http://cynergise.com/?p=157#comment-754</guid>
		<description>1) It is assume that XAMPP is installed on your windows system

   a)Must have the mod_rewrite extension installed and configured
   b)Must also ensure that Apache is configured to support .htaccess files.
   
   	AllowOverride All
   

2) Zend is easy to get up and running on XAMPP.   

3) Download latest (Zend Framework 1.11.6) Full from link &gt;&gt; http://framework.zend.com/download/latest

   a)Create folder named &quot;ZendFramework&quot; at C:\xampp\php path.
   
   b)Uncompress &quot;Zend Framework 1.11.6.zip&quot; then go to library &gt;&gt; Zend folder copy all the content and paste 
     in above created ZendFramework folder at C:\xampp\php\ZendFramework

4) Then make sure to change the include path in 

  	\xampp\php\php.ini
  	
  	append include_path with new ;C:\xampp\php\ZendFramework
  	
  	It should look something like this:
  
	include_path = &quot;.;C:\xampp\php\pear\;C:\xampp\php\ZendFramework&quot;   
	
	&gt;&gt;re-start the server

Installing QuickStart Guestbook Example by zend

	a) Download &quot;ZendFrameworkQuickstart.zip&quot; from http://framework.zend.com/manual/en/learning.quickstart.intro.html
	
	b) For convenience create a project named &quot;zendQuickStart&quot; inside xampp`s htdocs folder, because apache serves files from there.
	
	c) Uncompress &quot;ZendFrameworkQuickstart.zip&quot; and Copy content of project folder &quot;zendQuickStart&quot;
	
	d) Create VirtualHost on XAMPP
	   
	   For that make changes in below mention file
	   
	   &gt;&gt; C:\xampp\apache\conf\extra\httpd-vhosts.conf
	   
	   
	     DocumentRoot &quot;C:/xampp/htdocs/zendQuickStart/public&quot;
	     ServerName *
	     
	       Options Indexes FollowSymLinks
	       AllowOverride All
	       Order allow,deny
	       Allow from all
	     
	  
	  
	  &gt;&gt;re-start the server
	
	e) Quickstart uses the sqlite database so make sure the below extension are enable in php.ini file
	
		extension=php_pdo.dll
		extension=php_pdo_sqlite.dll
		
		&gt;&gt;re-start the server
   	
   	f) now access http://localhost/
   	
Creating zend project scaleton

	a) Download &quot;ZendFramework-1.11.6-minimal.zip&quot; from path &gt;&gt; http://framework.zend.com/download/latest
	
	a) Create folder named &quot;ZendFrameworkCli&quot; at path C:/Program Files
	
	c) Uncompress above folder and copy &quot;bin&quot; and &quot;library&quot; folder and paste in &quot;ZendFrameworkCli&quot; at path C:/Program Files
	
	d) Now Right click on &quot;My Computer&quot; click on properties &gt;&gt; Advance &gt;&gt; Enviroment Variables &gt;&gt; 
	   
	   select CLASSPATH under System Varibles click on Edit button and append ;C:\xampp\php to existing value.
	   
	f) Run &quot;cmd&quot; command and go to path C:\Progam Files\ZendFrameworkCli\bin&gt;
	
	g) Type below command to check zend verion
	
		C:\Progam Files\ZendFrameworkCli\bin&gt;zf show version
		
			you will see
		
	   	Zend Framework Version 1.11.6
	
	h) Now Type below command to create project 
	
		C:\Progam Files\ZendFrameworkCli\bin&gt;zf create project C:/xampp/htdocs/zfmyfirstproject
	   
	   This will create a zend framework folder structure for you.
	   
	   Copy tge Zend folder from ZendFramework-1.11.6-minimal/library and paste in C:/xampp/htdocs/zfmyfirstproject/library
	   
	For more details refer pdf</description>
		<content:encoded><![CDATA[<p>1) It is assume that XAMPP is installed on your windows system</p>
<p>   a)Must have the mod_rewrite extension installed and configured<br />
   b)Must also ensure that Apache is configured to support .htaccess files.</p>
<p>   	AllowOverride All</p>
<p>2) Zend is easy to get up and running on XAMPP.   </p>
<p>3) Download latest (Zend Framework 1.11.6) Full from link &gt;&gt; <a href="http://framework.zend.com/download/latest" rel="nofollow">http://framework.zend.com/download/latest</a></p>
<p>   a)Create folder named &#8220;ZendFramework&#8221; at C:\xampp\php path.</p>
<p>   b)Uncompress &#8220;Zend Framework 1.11.6.zip&#8221; then go to library &gt;&gt; Zend folder copy all the content and paste<br />
     in above created ZendFramework folder at C:\xampp\php\ZendFramework</p>
<p>4) Then make sure to change the include path in </p>
<p>  	\xampp\php\php.ini</p>
<p>  	append include_path with new ;C:\xampp\php\ZendFramework</p>
<p>  	It should look something like this:</p>
<p>	include_path = &#8220;.;C:\xampp\php\pear\;C:\xampp\php\ZendFramework&#8221;   </p>
<p>	&gt;&gt;re-start the server</p>
<p>Installing QuickStart Guestbook Example by zend</p>
<p>	a) Download &#8220;ZendFrameworkQuickstart.zip&#8221; from <a href="http://framework.zend.com/manual/en/learning.quickstart.intro.html" rel="nofollow">http://framework.zend.com/manual/en/learning.quickstart.intro.html</a></p>
<p>	b) For convenience create a project named &#8220;zendQuickStart&#8221; inside xampp`s htdocs folder, because apache serves files from there.</p>
<p>	c) Uncompress &#8220;ZendFrameworkQuickstart.zip&#8221; and Copy content of project folder &#8220;zendQuickStart&#8221;</p>
<p>	d) Create VirtualHost on XAMPP</p>
<p>	   For that make changes in below mention file</p>
<p>	   &gt;&gt; C:\xampp\apache\conf\extra\httpd-vhosts.conf</p>
<p>	     DocumentRoot &#8220;C:/xampp/htdocs/zendQuickStart/public&#8221;<br />
	     ServerName *</p>
<p>	       Options Indexes FollowSymLinks<br />
	       AllowOverride All<br />
	       Order allow,deny<br />
	       Allow from all</p>
<p>	  &gt;&gt;re-start the server</p>
<p>	e) Quickstart uses the sqlite database so make sure the below extension are enable in php.ini file</p>
<p>		extension=php_pdo.dll<br />
		extension=php_pdo_sqlite.dll</p>
<p>		&gt;&gt;re-start the server</p>
<p>   	f) now access <a href="http://localhost/" rel="nofollow">http://localhost/</a></p>
<p>Creating zend project scaleton</p>
<p>	a) Download &#8220;ZendFramework-1.11.6-minimal.zip&#8221; from path &gt;&gt; <a href="http://framework.zend.com/download/latest" rel="nofollow">http://framework.zend.com/download/latest</a></p>
<p>	a) Create folder named &#8220;ZendFrameworkCli&#8221; at path C:/Program Files</p>
<p>	c) Uncompress above folder and copy &#8220;bin&#8221; and &#8220;library&#8221; folder and paste in &#8220;ZendFrameworkCli&#8221; at path C:/Program Files</p>
<p>	d) Now Right click on &#8220;My Computer&#8221; click on properties &gt;&gt; Advance &gt;&gt; Enviroment Variables &gt;&gt; </p>
<p>	   select CLASSPATH under System Varibles click on Edit button and append ;C:\xampp\php to existing value.</p>
<p>	f) Run &#8220;cmd&#8221; command and go to path C:\Progam Files\ZendFrameworkCli\bin&gt;</p>
<p>	g) Type below command to check zend verion</p>
<p>		C:\Progam Files\ZendFrameworkCli\bin&gt;zf show version</p>
<p>			you will see</p>
<p>	   	Zend Framework Version 1.11.6</p>
<p>	h) Now Type below command to create project </p>
<p>		C:\Progam Files\ZendFrameworkCli\bin&gt;zf create project C:/xampp/htdocs/zfmyfirstproject</p>
<p>	   This will create a zend framework folder structure for you.</p>
<p>	   Copy tge Zend folder from ZendFramework-1.11.6-minimal/library and paste in C:/xampp/htdocs/zfmyfirstproject/library</p>
<p>	For more details refer pdf</p>
]]></content:encoded>
	</item>
</channel>
</rss>

