Development Wall

help for php, codeigniter, javascript, jquery, mysql, apache, ubuntu

Archive for April, 2012

Useful command for ubuntu / linux part 2

By • Apr 26th, 2012 • Category: Ubuntu

Display used and free memory on the system #free Shows disk free space #df Display a tree of processes #pstree Display Calendar in command line #cal Delete all command history #history -c More Command



Introduction to CodeIgniter-Part 1

By • Apr 12th, 2012 • Category: Codeiniter

PHP has many open source web application framework and CodeIgniter is one of  the most popular, easy, flexible and extendable MVC framework among all others framework. CodeIgniter can be used from small web site to large scale complex web application. With CodeIgniter, you can save time, make your web application more robust, your code will [...]



How to put Controller inside Multi Level directory or Subfolder in CodeIgniter

By • Apr 8th, 2012 • Category: Codeiniter

By default Codeigniter does not have the support to put Controller inside Multi Level directory or Sub Folder, but still you can do this. You just need to create your own Routing class which will extend the CI_Router. Follow the bellow steps: 1. create a php file with name MY_Router.php and put in inside application/libraries directory 2. [...]



Install Apache, PHP, MYSQL and phpMyAdmin in Ubuntu

By • Apr 1st, 2012 • Category: Apache, MYSql, PHP, Ubuntu

I will show the command and configuration to install Apache, PHP, MYSQL and phpMyAdmin in Ubuntu 1. Installing  Apache Open your terminal and type the bellow command        #sudo apt-get install apache2 It will ask for your password, Type your ubuntu password and press  enter key, it will ask for confirmation Type y and press [...]