Thursday, March 5, 2015

Step to Configure Codeigniter Application

            Steps for configuring Codeigniter Project

step-1: First download source for codeigniter from here  Click Here or visit site,
            www.codeigniter.com.


step-2: extract codeigniter zip file in www folder rename default name with your
             project name.


step-3: Now open application folder from your project.
             here you find config folder.


             inside config folder find config.php file and open it.



step-4: change your application base_url  configuration in config file application/config.php.

            $config['base_url'] = '';


                                                   To

           $config['base_url'] = 'http://localhost/codeigniter/';
          //replace project name codeigniter with your project name


                                                     OR

              Run your project and then copy url from browser and paste in config.php file
             



Now you complete your codeigniter application configuration. Thanks for the visiting this blog.

2 comments:

  1. Nice example :) Please provide source code example link if possible..!

    ReplyDelete