Feeds:
Posts
Comments

Archive for March, 2010

uthentication is any process by which you verify that someone is who they claim they are. Authorization is any process by which someone is allowed to be where they want to go, or to have information that they want to have.

Read Full Post »

Delete .svn folder Recursively

SVN is open-source revision control application ,each folder of your of your source code eceived from subversion repository has .svn folders so how to delete it all using linux command. its too simple : $ rm -rf `find . -type d -name .svn` this will remove all .svn folder beging from you current directory. hope [...]

Read Full Post »

Cakephp cache query

In this week I have been working on increasing a project home page performance. and am using cakephp cache to cache query individually using find method. but i made a function in app model witch can deal with mySql -native- query cache. and here how you can do this: place the following function within your [...]

Read Full Post »

Follow

Get every new post delivered to your Inbox.