5 Simple steps to install Codeigniter in xampp

5 Simple steps to install Codeigniter in xampp

Codeigniter is one of the most popular and lightweight PHP frameworks to date. This is a simple web application development framework. By its modular approach, we can use its inbuilt libraries and helpers in our application.

We can separate logic from presentation by using a Model-View-Controller (MVC) pattern.

In this tutorial, we are going to explain to you, how to install the CodeIgniter framework in xampp. Below mentioned are the step by step process and installation instructions that you can follow to get CodeIgniter installed on your local computer.

  1. Download the latest version of CodeIgniter by click on the download link from the official CodeIgniter website.  (https://codeigniter.com/)
  1. Unzip the downloaded file in your htdocs folder.
  2. Change the name of the folder to your project folder e.g. portfolio
  3. Open the application/config/config.php file with a text editor to set the application base URL.

Example

$config['base_url'] = ‘http://localhost’;

5. If you need to change the database details open the application/config/database.php file with a text editor and set your database settings.

Example

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'localhost',
    'username' => 'root',
    'password' => 'rootpassword',
    'database' => 'my_db',
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => (ENVIRONMENT !== 'production'),
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);

To check CodeIgniter is setup successfully or not open the below link in your browser.

http://localhost/myportfolio

Congratulations you have successfully learned how to install codeigniter in xampp server!

Leave a comment

Your email address will not be published. Required fields are marked *