Find and Remove a particular folder or file in Mac/Linux

Open a Terminal, and browser to the folder we want to start recursive deletion and run the following command , for example to delete all folder named .svn find ./ -name “.svn” | xargs rm -Rf   Share

0 Comments , , , ,

Symfony 1.4 Installation Steps

1) Set up for SVN repository2)Create three folders trunk, tags and branches (optional) 3)make directory lib/vendor inside trunk folder (or your project folder) 4)CD to lib/vendor folder 5) svn propset svn:externals ‘symfony http://svn.symfony-project.com/tags/RELEASE_1_4_0′ . 6) Type: svn update (it will download all the symfony files) 7)Create project:php lib/vendor/symfony/data/bin/symfony generate:project projectname Commit everything (If you need [...]

2 Comments , , , ,

3 Simple way to upgrade your wordpress

1) Non- Programmers For non programmers or non administrators easy way to upgrade wordpress is using auto-upgrading plugin. Download this plugin from: http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/ Unzip the files into your wp-content/plugin directory and activate the plugin. Go to manage menu and run automatic upgrade. It will do the rest !!! 2) Normal Programmers / Administrators Login into [...]

2 Comments , , , ,