cakePHP - Nestdev.com | Nestdev.com

You are here: Archive for the ‘cakePHP’ Category

Creating a community in five minutes with CakePHP

0 Comments

Creating a community in five minutes with CakePHPCakePHP’s automatic hashing makes things a lot harder than they need to be, and simple tasks (e.g. a registration page) become annoyingly difficult.Here, we build a complete community based website in five minutes using Cake best practices, with the following features: account registration, login and logout, account management page, and password retrieval.

Associating CakePHP .ctp Files in Aptana, Eclipse

0 Comments

Associating CakePHP .ctp Files in Aptana, EclipseViewing CakePHP’s .ctp files in Aptana Studio has been quite annoying due to the lack of syntax highlighting. I have grown use to it until earlier today when I was converting a .php file into a .ctp. I knew there had to be a way to associate .ctp files with .php files in Aptana/Eclipse. I did a bit of searching and found the solution.

5 CakePHP based Content Managament System

0 Comments

5 CakePHP based Content Managament SystemCakePHP is great rapid development php framework. CakePHP allows you to create applications with ease. But in case you CakePHP lover need to create simple sites or applcations, maybe you considering to use one of the CakePHP based CMS than developed yourself from scratch.

Create A Ghetto, But Functional, Search Function For CakePHP

0 Comments

Create A Ghetto, But Functional, Search Function For CakePHPRecently I needed to add a search function for a CakePHP application I am building. After googling the bejeezus out of it, I never found a solution that worked. Some required the use of a search table, which then needed to index all of your content, other’s just didn’t work at all.After much hacking around I came up with a solution that works for me. This may or may not solve your particular problem, but it may help get you started in the right direction.I’ll be using a fairly...

Cakephp url shorten behavior (0x.tc, bit.ly, is.gd and u.nu)

0 Comments

Cakephp url shorten behavior (0x.tc, bit.ly, is.gd and u.nu)A while ago I started working on some twitter services and I needed an automatic urlshortner. This first started as a model that would shorten en url and save the result in a table for caching purposes. After a good chat with a friend (beeman) it turned into a behavior with the model only using the behavior to act like it did before. One of the reasons for a behavior was to create a simple interface for the developer without the need to poll the caching model but at the same time be able to use...

13 excellent CakePHP tutorials

0 Comments

13 excellent CakePHP tutorialsCakePHP is a rapid development framework written in PHP that uses the Model, View, Controller (MVC) software design pattern. Some people says, that CakePHP is leak on documentation. Here list of excellent CakePHP tutorials , that can help you for learning CakePHP , included installation , authentication and some advanced tutorials.

CakePHP Search Plugin

0 Comments

CakePHP Search PluginThe CakePHP search plugin allow us to make any kind of data searchable, i.e. allow us to implement robust searching rapidily. Search plugin is an easy way to include search into your application.

Building a blog with CakePHP – Part 1: Getting started

0 Comments

Building a blog with CakePHP – Part 1: Getting startedThis tutorial will give you a good start in the world of CakePHP, just to learn the basics of the framework. The official CakePHP Blog tutorial (For Cake 1.1) gives you a good idea, but this tutorial will take it a couple of steps further (and in the next parts way beyond the official tutorial). Don't worry: This article will perfectly guide to making your first steps on baking some code.