<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CakePHP | ENFEW</title>
	<atom:link href="https://enfew.com/category/cakephp/feed/" rel="self" type="application/rss+xml" />
	<link>https://enfew.com/category/cakephp/</link>
	<description></description>
	<lastBuildDate>Thu, 27 Jun 2024 11:07:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://enfew.com/wp-content/uploads/2024/03/cropped-enfew-favicon-32x32.png</url>
	<title>CakePHP | ENFEW</title>
	<link>https://enfew.com/category/cakephp/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>6 Tutorials On Adding Pagination In CakePHP</title>
		<link>https://enfew.com/6-tutorials-on-adding-pagination-in-cakephp/</link>
					<comments>https://enfew.com/6-tutorials-on-adding-pagination-in-cakephp/#respond</comments>
		
		<dc:creator><![CDATA[Istvan]]></dc:creator>
		<pubDate>Mon, 13 Jun 2011 14:57:12 +0000</pubDate>
				<category><![CDATA[CakePHP]]></category>
		<guid isPermaLink="false">http://www.enfew.com/?p=5307</guid>

					<description><![CDATA[<p>1. Custom Query Pagination A good example of when you would need this is if the underlying DB does not support the SQL LIMIT syntax. This is true of IBM&#8217;s DB2. You can still use the CakePHP pagination by adding the custom query to the model. Should you need to create custom queries to generate the [&#8230;]</p>
<p>The post <a href="https://enfew.com/6-tutorials-on-adding-pagination-in-cakephp/">6 Tutorials On Adding Pagination In CakePHP</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>1. <a href="http://book.cakephp.org/view/249/Custom-Query-Pagination" target="_blank" rel="noopener">Custom Query Pagination</a></h3>
<p>A good example of when you would need this is if the underlying DB does not support the SQL LIMIT syntax. This is true of IBM&#8217;s DB2. You can still use the CakePHP pagination by adding the custom query to the model.</p>
<p>Should you need to create custom queries to generate the data you want to paginate, you can override the paginate() and paginateCount() model methods used by the pagination controller logic.</p>
<h3>2. CakePHP Advanced Pagination – sort by derived field</h3>
<p>I spent a couple of hours to find out a way… and finally got it! yes it is possible to sort by derived fields using the built-in pagination feature of cakephp! Let’s talk about the solution a little later, first I’d like to introduce you with the exact problem I faced.</p>
<h3>3. Pagination with custom find types in CakePHP</h3>
<p>What I’m going to talk about is how to mix your custom find types with pagination, without having to use paginate and paginateCount in your models.</p>
<h3>4. <a href="http://mark-story.com/posts/view/creating-simple-ajax-pagination-with-cakephp-1-3-and-mootools" target="_blank" rel="noopener">Creating Simple Ajax Pagination with CakePHP 1.3 and Mootools</a></h3>
<p>Creating ajax pagination has gotten more simple and flexible for 1.3. In 1.2 you could only use the built in Ajax pagination if you were using Prototype as your javascript library. With the addition of the JsHelper you can use any Javascript library that an engine has been implemented. My example today will be using mootools. I’ll be basing this, off of a freshly baked index view using the default core templates.</p>
<h3>5. <a href="http://www.hirdweb.com/2008/08/04/custom-pagination-in-cakephp/" target="_blank" rel="noopener">Custom Pagination in CakePHP</a></h3>
<p>To continue on last weeks thought of a “lite” forum, I needed 2 tables (Forums, Posts). Since this is a “lite” forum, I did not want to create a mid-table labeled topics, so I incorporated that in the Posts table. The other reasoning behind this, is that to create a hybrid forum/blog, the topic is really just a beginning post in the thread, so keep those in the Posts table, just mark it as a topic to differentiate this from the other posts.</p>
<h3>6. CakePHP Part 6 &#8211; Pagination!</h3>
<p>Pagination is something that any decent site has in it somewhere. The whole idea is to give the user pages of information to look through, instead of just listing all the data at once. Not only does this cut down on page load times, but it is also a great way to view and organize the information as well. And like always, Cake makes this task just as easy as a few lines of code.</p>
<p>&nbsp;</p>
<p>The post <a href="https://enfew.com/6-tutorials-on-adding-pagination-in-cakephp/">6 Tutorials On Adding Pagination In CakePHP</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://enfew.com/6-tutorials-on-adding-pagination-in-cakephp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>3 Tutorials On &#8220;Create URL Shortener Service With CakePhP&#8221;</title>
		<link>https://enfew.com/url-shortener-service-cakephp-tutorials/</link>
					<comments>https://enfew.com/url-shortener-service-cakephp-tutorials/#respond</comments>
		
		<dc:creator><![CDATA[Istvan]]></dc:creator>
		<pubDate>Mon, 23 May 2011 13:48:41 +0000</pubDate>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Jonathan Snook]]></category>
		<guid isPermaLink="false">http://www.enfew.com/?p=4654</guid>

					<description><![CDATA[<p>1. CakePHP URL Shortener Service Tutorial by JotLab In this tutorial I will be creating this website using CakePHP 1.2.4, because it rocks, and you will think it rocks too if you haven’t used it yet! If you are unfamiliar with CakePHP please jump into it now by checking out either of these two books: Beginning [&#8230;]</p>
<p>The post <a href="https://enfew.com/url-shortener-service-cakephp-tutorials/">3 Tutorials On &#8220;Create URL Shortener Service With CakePhP&#8221;</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-4655" title="cakephp-url-shortening-service" src="http://www.enfew.com/wp-content/uploads/2011/05/cakephp-url-shortening-service.jpg" alt="" width="556" height="229" /></h3>
<h3>1. <a href="http://www.jotlab.com/2009/08/26/cakephp-url-shortener-service-tutorial/" target="_blank" rel="noopener">CakePHP URL Shortener Service Tutorial</a> by JotLab</h3>
<p>In this tutorial I will be creating this website using CakePHP 1.2.4, because it rocks, and you will think it rocks too if you haven’t used it yet! If you are unfamiliar with CakePHP please jump into it now by checking out either of these two books: Beginning CakePHP by Apress &amp; Free CakePHP Book by Matt Curry! So let’s begin!</p>
<p>Now this isn’t going to be a tutorial into all the joys and wonders of CakePHP. There are simply too many to list, my database wouldn’t be able to hold so much information. However if you are new to CakePHP, all that this tutorial requires is that you have successfully set up CakePHP, wherever you may prefer. There are plenty of tutorials and guides on how to get CakePHP set up on the web. I did a quick search and found this one to be quite good, but there are plenty more out there. The most common newbie gotcha I find is making sure the .htaccess files are uploaded correctly. But with all that said and done! Let’s get going with our URL shortening website!</p>
<h3>2. <a href="http://snook.ca/archives/php/url-shortener" target="_blank" rel="noopener">Building a URL Shortener</a> by Jonathan Snook</h3>
<p>With all the talk of URL shortening services, I decided to add a quick service into Snook.ca, which is run on CakePHP, to redirect a short URL to a post. Because my static content already has short URLs and all I have are posts, creating a short URL handler for it was very easy.</p>
<h3>3. Build a URL-shortener for your app by Nuts &amp; Bolts Of Cakephp</h3>
<p>In order to avoid using some external service, you might want to add a simple feature to your application to provide a URL-shortener. The benefits are really simple… you’ll use your own domain name and while your app is around so will be your short-URL links.</p>
<p>The post <a href="https://enfew.com/url-shortener-service-cakephp-tutorials/">3 Tutorials On &#8220;Create URL Shortener Service With CakePhP&#8221;</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://enfew.com/url-shortener-service-cakephp-tutorials/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>3 Best &#8216;Cakephp Comment Plugin &#038; Informative Cakephp Comment Tutorials&#8217;</title>
		<link>https://enfew.com/cakephp-tutorials-comment-plugin/</link>
					<comments>https://enfew.com/cakephp-tutorials-comment-plugin/#comments</comments>
		
		<dc:creator><![CDATA[Istvan]]></dc:creator>
		<pubDate>Thu, 07 Apr 2011 11:17:36 +0000</pubDate>
				<category><![CDATA[CakePHP]]></category>
		<guid isPermaLink="false">http://www.enfew.com/?p=4195</guid>

					<description><![CDATA[<p>CakePHP Comments Plugin Comments plugin is a universal comment system that can be attached to any controller with a few lines of code. The comments plugin will allow you to make any kind of data comment-able. How to add comments with AJAX in CakePHP In today’s article we are going to create a very basic [&#8230;]</p>
<p>The post <a href="https://enfew.com/cakephp-tutorials-comment-plugin/">3 Best &#8216;Cakephp Comment Plugin &#038; Informative Cakephp Comment Tutorials&#8217;</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><a href="http://cakedc.com/downloads/view/cakephp_comments_plugin" target="_blank" rel="noopener">CakePHP Comments Plugin</a></h3>
<p>Comments plugin is a universal comment system that can be attached to any controller with a few lines of code. The comments plugin will allow you to make any kind of data comment-able.</p>
<h3><a href="http://www.endyourif.com/how-to-add-comments-with-ajax-in-cakephp/" target="_blank" rel="noopener">How to add comments with AJAX in CakePHP</a></h3>
<h3><span style="font-size: 13px; font-weight: normal;">In today’s article we are going to create a very basic blog that allows people to create a post and posts comments on that post via AJAX. We are going to keep it extremely basic and just focus on that actual AJAX functionality.</span></h3>
<h3>CakePHP Comment Plugin</h3>
<p>The goal of every programmer is to write as little code as possible. It can only be achieved by re-using code that you already wrote. That is why we all use CakePHP in the first place right? Fortunately, cake allows us to create plug-ins that we could just drop in into our projects and be done with it.</p>
<p>For quite a few of our projects, especially social applications, we had to add commenting. In addition, we typically had to allow users to comment on everything (photos, posts, news, articles, etc…).</p>
<p>The post <a href="https://enfew.com/cakephp-tutorials-comment-plugin/">3 Best &#8216;Cakephp Comment Plugin &#038; Informative Cakephp Comment Tutorials&#8217;</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://enfew.com/cakephp-tutorials-comment-plugin/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>7 CakePHP Media Upload Plugins</title>
		<link>https://enfew.com/7-cakephp-media-upload-plugins/</link>
					<comments>https://enfew.com/7-cakephp-media-upload-plugins/#comments</comments>
		
		<dc:creator><![CDATA[Istvan]]></dc:creator>
		<pubDate>Wed, 09 Mar 2011 07:56:01 +0000</pubDate>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[david persson]]></category>
		<category><![CDATA[jose gonzalez]]></category>
		<category><![CDATA[miles johnson]]></category>
		<guid isPermaLink="false">http://www.enfew.com/?p=3841</guid>

					<description><![CDATA[<p>1. CakePHP File Upload Plugin The popular FileUploadComponent is now a plugin. Version 4.0 brings a new behavior to the plugin to round out all your file uploading needs. 2. Uploader by miles johnson An all around general purpose file uploader for CakePHP. Packaged as a stand alone plugin with file validation, file scanning and support [&#8230;]</p>
<p>The post <a href="https://enfew.com/7-cakephp-media-upload-plugins/">7 CakePHP Media Upload Plugins</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><a href="http://www.enfew.com/wp-content/uploads/2010/08/cake-php-logo.png"><img decoding="async" class="alignright size-full wp-image-571" title="cake-php-logo" src="http://www.enfew.com/wp-content/uploads/2010/08/cake-php-logo.png" alt="" width="228" height="209" /></a>1. <a href="http://www.webtechnick.com/blogs/view/221/CakePHP_File_Upload_Plugin" target="_blank" rel="noopener">CakePHP File Upload Plugin</a></h3>
<p>The popular FileUploadComponent is now a plugin. Version 4.0 brings a new behavior to the plugin to round out all your file uploading needs.</p>
<h3>2. <a href="http://milesj.me/resources/script/uploader-plugin" target="_blank" rel="noopener">Uploader</a> by miles johnson</h3>
<p>An all around general purpose file uploader for CakePHP. Packaged as a stand alone plugin with file validation, file scanning and support for a wide range of basic mime types.</p>
<ul>
<li>Automatically sets all ini settings required for file uploading</li>
<li>Support for a wide range of mime types: text, images, archives, audio, video, application</li>
<li>Logs all internal errors that can be retrieved and displayed</li>
<li>Saves a log for all uploads happening during the current request</li>
<li>Automatically validates against the default mime types and internal errors</li>
<li>Can scan the uploaded files for viruses using the ClamAV module</li>
<li>Files can be uploaded anywhere within the webroot folder</li>
<li>Convenience methods for deleting a file, moving/renaming a file and getting the file extension or dimensions</li>
<li>Built in methods for resizing images and generating thumbnails</li>
<li>Custom Behavior to add validation rules to your Models validation set</li>
<li>Custom Behavior that allows models to attach files to automatically upload the file and save its information to a database</li>
</ul>
<h3>3.  UploadPack &#8211; easy and flexible way to upload files with CakePHP</h3>
<ul>
<li>save procedure of record with attached file should be no different to usual record</li>
<li>it should be possible to do some additional processing of uploaded file at the time of saving it (for example thumbnail generation)</li>
<li>easy access to uploded file, it’s URL and alternatives (different thumnails) from view level</li>
<li>everything should require no or minimum configuration to work, but still remain flexible if the whole application needs it</li>
<li>natural integration with CakePHP framework.</li>
</ul>
<h3>4. <a href="https://github.com/davidpersson/media#readme" target="_blank" rel="noopener">Media Plugin for CakePHP</a> by david persson</h3>
<p>This plugin was conceived as a thorough solution to all the needs coming from dealing with media files in a web application. Moreover the idea was to show how much a well maintained plugin can be worth it and inspire others to do the same. The plugin slowly evolved (and in fact still does) from a very distinct set of tightly coupled components into something much more flexible. This allows you to use only the functionality you really need.</p>
<h3>5. <a href="https://github.com/josegonzalez/upload#readme" target="_blank" rel="noopener">Upload Plugin</a> by jose gonzalez</h3>
<p>The Upload Plugin is an attempt to sanely upload files using techniques garnered packages such as MeioUpload , UploadPack and PHP documentation.</p>
<h3>6. <a href="https://github.com/jrbasso/MeioUpload#readme" target="_blank" rel="noopener">MeioUpload 2.0</a> Plugin by jrbasso</h3>
<p>This behavior provides to upload files in your application, as well as the possibility to translate the error message (originally only in portuguese) and the use of phpThumb as a better thumbnail generator.</p>
<p>You can also use it in No-DB mode, which means that no data for the upload is stored within the database. You can further this by setting var $useTable = false in the model, which will both trigger No-DB mode AND allow quick uploads.</p>
<h3>7. Ajax File Uploading with Cake and jQuery [Tutorial]</h3>
<p>Here’s how to upload files in CakePHP using jQuery.</p>
<p>The post <a href="https://enfew.com/7-cakephp-media-upload-plugins/">7 CakePHP Media Upload Plugins</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://enfew.com/7-cakephp-media-upload-plugins/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>5 Tutorials &#038; Articles On &#8216;Adding Google Maps In CakePhp&#8217;</title>
		<link>https://enfew.com/5-tutorials-articles-on-adding-google-maps-in-cakephp/</link>
					<comments>https://enfew.com/5-tutorials-articles-on-adding-google-maps-in-cakephp/#respond</comments>
		
		<dc:creator><![CDATA[Istvan]]></dc:creator>
		<pubDate>Sat, 15 Jan 2011 21:54:17 +0000</pubDate>
				<category><![CDATA[CakePHP]]></category>
		<guid isPermaLink="false">http://www.enfew.com/?p=2367</guid>

					<description><![CDATA[<p>1. Adding a Google Map to your App Though the Google Map craze has passed, I have decided to write a tutorial to implement a Google Map because in my opinion, I don&#8217;t feel there has been a clean, flexible method of creating a map. Also, since this is CakePHP, we like to do things properly. [&#8230;]</p>
<p>The post <a href="https://enfew.com/5-tutorials-articles-on-adding-google-maps-in-cakephp/">5 Tutorials &#038; Articles On &#8216;Adding Google Maps In CakePhp&#8217;</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>1. <a href="http://bakery.cakephp.org/articles/lababidi/2007/06/23/adding-a-google-map-to-your-app" target="_blank" rel="noopener">Adding a Google Map to your App</a></h3>
<p>Though the Google Map craze has passed, I have decided to write a tutorial to implement a Google Map because in my opinion, I don&#8217;t feel there has been a clean, flexible method of creating a map. Also, since this is CakePHP, we like to do things properly.</p>
<h3>2. <a href="http://bakery.cakephp.org/articles/gigapromoters/2006/12/28/google-map-helper" target="_blank" rel="noopener">Google Map Helper </a></h3>
<p>A handy tool to generate maps using Google Map API.<br />
I found CakePHP to be helpful with a lot of things and I loved the fact that anyone can reuse any classes made in PHP using &#8216;vendors&#8217; in CakePHP. We recently wrote a CakePHP helper for generating map in CakePHP application.</p>
<p>The helper uses Google Maps API V2 class (http://www.phpinsider.com/php/code/GoogleMapAPI/) from phpinsider.com.</p>
<h3>3. <a href="http://karlmendes.com/2010/02/google-static-maps-helper-for-cakephp/" target="_blank" rel="noopener">Google static maps helper for CakePHP</a></h3>
<p>This is a simple CakePHP helper to create static maps using google API. For more information on the api and how to get an api key consult the Google Static Maps API.<br />
<strong>How to use:</strong></p>
<ul>
<li>Add helper file to your app</li>
<li>Add your google api key to the core.php</li>
<li>Reference it on your controller</li>
<li>Use it in your view</li>
</ul>
<h3>4. <a href="http://bakery.cakephp.org/articles/-Ste-/2010/06/25/yagmh_-_yet_another_google_map_helper" target="_blank" rel="noopener">YAGMH</a> &#8211; Yet another Google Map Helper</h3>
<p>This is just an update of the google map helper by Mahmoud Lababidi (based on an older helper by gwoo).<br />
Some tweaks to let it work inside an ajax rendered view, and a couple of small new features (render map with zoom and center based on actual markers, and an optional minimap overview).</p>
<h3>5. <a href="http://bakery.cakephp.org/articles/kmendes/2010/03/12/google-static-maps-helper-for-cakephp" target="_blank" rel="noopener">Google static maps helper for CakePHP</a></h3>
<p>This is a simple CakePHP helper to create static maps using google API. For more information on the api and how to get an api key consult the Google Static Maps API.</p>
<p>The post <a href="https://enfew.com/5-tutorials-articles-on-adding-google-maps-in-cakephp/">5 Tutorials &#038; Articles On &#8216;Adding Google Maps In CakePhp&#8217;</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://enfew.com/5-tutorials-articles-on-adding-google-maps-in-cakephp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>4 Tutorials On Choose The Best IDE For CakePhp Development</title>
		<link>https://enfew.com/4-tutorials-on-choose-the-best-ide-for-cakephp-development/</link>
					<comments>https://enfew.com/4-tutorials-on-choose-the-best-ide-for-cakephp-development/#comments</comments>
		
		<dc:creator><![CDATA[Istvan]]></dc:creator>
		<pubDate>Sun, 26 Dec 2010 12:35:41 +0000</pubDate>
				<category><![CDATA[CakePHP]]></category>
		<guid isPermaLink="false">http://www.enfew.com/?p=1433</guid>

					<description><![CDATA[<p>1. HOWTO Setup Eclipse 3.6 to get the most out of CakePHP 1.3 Development This article explains step-by-step on how to setup your CakePHP dev environment to get the most out of open source tooling. There are lots of great resources out there for developing CakePHP apps in eclipse &#8211; but they are outdated and scattered. [&#8230;]</p>
<p>The post <a href="https://enfew.com/4-tutorials-on-choose-the-best-ide-for-cakephp-development/">4 Tutorials On Choose The Best IDE For CakePhp Development</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><img decoding="async" class="size-full wp-image-1440 alignright" title="cakephp-ide-cms" src="http://www.enfew.com/wp-content/uploads/2010/12/cakephp-ide-cms.png" alt="" width="220" height="234" />1. <a href="http://bakery.cakephp.org/articles/rynop/2010/11/11/howto_setup_eclipse_3_6_to_get_the_most_out_of_cakephp_1_3_development" target="_blank" rel="noopener">HOWTO Setup Eclipse 3.6 to get the most out of CakePHP 1.3 Development</a></h3>
<p>This article explains step-by-step on how to setup your CakePHP dev environment to get the most out of open source tooling.<br />
There are lots of great resources out there for developing CakePHP apps in eclipse &#8211; but they are outdated and scattered. I took the time tonight to setup my environment, so I figured I&#8217;d blog about it. Below are the steps I took to get thinks as I like &#8217;em. I run Ubuntu 10.10 64bit, but these directions should apply to any OS. This requires you have CakePHP 1.3.X extracted someplace on your box.</p>
<h3>2. <a href="http://www.nusphere.com/php/cakephp.htm" target="_blank" rel="noopener">CakePHP Development</a> with PhpED</h3>
<p>n this tutorial you will learn how to use NuSphere&#8217;s PHP IDE to develop PHP applications using CakePHP &#8211; rapid development framework for PHP that provides an extensible architecture fo<span id="more-12127"></span>r developing, maintaining, and deploying PHP applications. Please note that the purpose of this tutorial is not to teach you how to program with CakePHP but rather to show you how to setup and use the features of PhpED to program CakePHP applications fast and easy. We will be using CakePHP&#8217;s 15 minutes blog tutorial as the basis for our study.</p>
<h3>3. <a href="http://www.tiplite.com/cakephp-support-in-netbeans/" target="_blank" rel="noopener">CakePHP support in NetBeans</a></h3>
<p>NetBeans is a very powerful development environment for many languages including PHP. With the release of its latest version, NetBeans announced full support for symfony PHP framework. NetBeans can also support many other PHP frameworks and libraries although it is not officially supported by NetBeans. This support needs some effort to enable some tools specially auto-complete, or intellisense, which saves a lot of time for developers.</p>
<h3>4. <a href="http://cake-php-tutorial.blogspot.com/2009/06/using-cakephp-with-your-ide.html" target="_blank" rel="noopener">Using CakePHP with your IDE </a></h3>
<p>In this tutorial we&#8217;ll show you how to set up syntax highlighting for .thtml and .ctp files.</p>
<h3>CakePHP and Eclipse</h3>
<p>To set up your version of Eclipse to read either file type, follow these steps:</p>
<ul>
<li>Go to Window &gt; Preferences &gt; General &gt; Content types</li>
<li>In the content types window navigate the tree to text &gt; PHP content type</li>
<li>Click add</li>
<li>Enter *.ctp or *.thtml depending on what version of CakePHP you use. It might be best to add both &#8211; just in case.</li>
<li>Now navigate to Editors &gt; File Associations</li>
<li>Enter *.ctp or *.thtml depending on what version of CakePHP you use.</li>
<li>Under &#8220;Associated Editors:&#8221;, select the PHP Editor and click Default.</li>
</ul>
<h3>CakePHP and Dreamweaver</h3>
<ul>
<li>Go to your Dreamweaver installation folder (let&#8217;s assume this is C:Program FilesAdobeAdobe Dreamweaver CS3)</li>
<li>Open the configuration folder</li>
<li>Edit  extensions.txt and modify the first line so THTML and CTP are present  (comma seperated. It should look something like this:  ,MASTER,THTML,CTP:All Documents</li>
<li>Edit the PHP files line in the same way. It should look like this: PHP,PHP3,PHP4,PHP5,TPL,THTML,CTP:PHP Files</li>
<li>Now browse to the DocumentTypes folder and open MMDocumentTypes.xml.</li>
<li>Do  a ctrl-f search for &#8220;winfileextension&#8221; and modify the line to look like  this: winfileextension=&#8221;php,php3,php4,php5,thtml,ctp&#8221;</li>
<li>Do the same for &#8220;macfileextension&#8221;: macfileextension=&#8221;php,php3,php4,php5,thtml,ctp&#8221;</li>
<li>Now  go to your &#8220;Document and Settings&#8221; folder (found under your username  e.g. &#8220;C:Documents and SettingsYour User NameApplication  DataAdobeDreamweaver 9Configuration&#8221;</li>
<li>Edit &#8220;Extensions.txt&#8221; and add the same lines you added to the other extensions file.</li>
</ul>
<h3>Using CakePHP with Aptana</h3>
<ul>
<li>From the Window menu, select Preferences&#8230;, and then choose General &gt; Editors &gt; File Associations.</li>
<li>Add the appropriate file type.</li>
<li>Next to the File Types list, click the Add button.</li>
<li>In the New File Type pop-up window, type the appropriate file extension (e.g. &#8220;<em>.ctp&#8221; or &#8220;</em>.thtml&#8221;).</li>
<li>Click OK to add the New File Type to the List.</li>
<li>Associate the new file type with Aptana.</li>
<li>On the File Types list, select the file type that you just added.</li>
<li>Next to the Editor Associations list, click the Add button.</li>
<li>On the Editor Selection pop-up window, select the editor that you want to associate with your file type.</li>
<li>Click OK to add the editor.</li>
<li>The new is now associated with the  specified file type.</li>
<li>Click OK to apply your changes and  close the Preferences window.</li>
</ul>
<h3>CakePHP with gEdit or other Linux editors</h3>
<p>Edit the /etc/mime.types file to point .ctp or .thtml files to the relevant editor you are using.</p>
<h4>&#8212; UPDATE</h4>
<h3>5. <a href="http://www.codelobster.com/cakephp.html">CakePHP plug-in With CodeLobster</a></h3>
<p>Starting developing on PHP, probably you often face the problem which IDE to choose for Windows OS. Whereas most companies sell it at high price (100-500$), we offer multifunctional portable IDE FREE absolutely with all standard features:<br />
PHP/HTML/CSS/JavaScript highlighting, advanced PHP/HTML/CSS/JavaScript autocomplete, Powerful PHP debugger, SQL autocomplete, Context and Dynamic Help and much more&#8230;<br />
<strong>Supported Cms &amp; Php Frameworks: </strong>WordPress, Joomla, Drupal, CakePhp, CodeIgniter, Facebook, Smarty</p>
<p>The post <a href="https://enfew.com/4-tutorials-on-choose-the-best-ide-for-cakephp-development/">4 Tutorials On Choose The Best IDE For CakePhp Development</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://enfew.com/4-tutorials-on-choose-the-best-ide-for-cakephp-development/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>3 Best CakePHP Search Components &#038; Tutorials</title>
		<link>https://enfew.com/3-best-cakephp-search-components-tutorials/</link>
					<comments>https://enfew.com/3-best-cakephp-search-components-tutorials/#comments</comments>
		
		<dc:creator><![CDATA[Istvan]]></dc:creator>
		<pubDate>Thu, 12 Aug 2010 09:42:06 +0000</pubDate>
				<category><![CDATA[CakePHP]]></category>
		<guid isPermaLink="false">http://www.enfew.com/?p=655</guid>

					<description><![CDATA[<p>We can see that CakePHP framework subject is interesting to our readers, and continuing on the few CakePHP related posts we posted on Enfew, this time we want to list search related plugins which are built for CakePHP framework. Let us know in the post comments if we have missed any good ones out there. [&#8230;]</p>
<p>The post <a href="https://enfew.com/3-best-cakephp-search-components-tutorials/">3 Best CakePHP Search Components &#038; Tutorials</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We can see that CakePHP framework subject is interesting to our readers, and continuing on the few <a title="CakePHP on Enfew" href="http://www.enfew.com/7-best-shopping-cart-plugins-for-cakephp/" target="_blank" rel="noopener">CakePHP</a> related <a title="CakePHP on Enfew" href="http://www.enfew.com/7-cakephp-media-upload-plugins/" target="_blank" rel="noopener">posts</a> we posted on Enfew, this time we want to list search related plugins which are built for CakePHP framework. Let us know in the post comments if we have missed any good ones out there.</p>
<h3>1. <a title="CakeDC search on Enfew" href="https://github.com/CakeDC/search" target="_blank" rel="noopener">CakePHP Search Plugin</a></h3>
<p>Search plugin is an easy way to include search into your application. Using this plugin you will able to have paginable search in any controller.<span id="more-12085"></span> Plugin support simple methods to search inside models using strict and non-strict comparing, but also allows you to implement any complex type of searching. The search plugin will allow you to make any kind of data searchable, i.e. allow you to implement robust searching rapidly.</p>
<h3>2. <a href="http://bakery.cakephp.org/articles/view/search-feature-to-cakephp-blog-example" target="_blank" rel="noopener">Search feature to CakePHP </a></h3>
<p>This tutorial with code examples will show you how to build the search functionality in your projects which are based on CakePHP framework. Part of this tutorial is based on the documentation provided by the actual CakePHP documentation pages and another part is a custom functionality. Great and useful examples.</p>
<h3>3. <a href="http://mrphp.com.au/code/search-forms-cakephp" target="_blank" rel="noopener">Search Forms in CakePHP</a></h3>
<p>Another good tutorial by MisterPHP blog about building search forms with pagination. In project you&#8217;ll build while reading this tutorial pagination pages will remember search results while allowing user to navigate through multiple groups of pages in CakePHP.</p>
<h3>4. <a title="Search with CakePHP2" href="http://bakery.cakephp.org/articles/ccadere/2013/07/23/search_plug-in_for_cakephp_2" target="_blank" rel="noopener">Search Plugin for CakePHP 2</a></h3>
<p>Based on suggestions from our readers we have added another link.<br />
This plugin is shared on official <a title="cakePHP on Enfew" href="http://cakephp.org" target="_blank" rel="noopener">CakePHP</a> blog, it has links to code on GitHub and has example implementation of search by using CakePHP 2 framework.</p>
<p>The post <a href="https://enfew.com/3-best-cakephp-search-components-tutorials/">3 Best CakePHP Search Components &#038; Tutorials</a> appeared first on <a href="https://enfew.com">ENFEW</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://enfew.com/3-best-cakephp-search-components-tutorials/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
