CodeIgnitorV4-guide

This repo help user to install and setup CodeIgnitor

View on GitHub

Static Page News Section

Installation

sudo apt-get install lamp-server^
sudo apt-get -y install php-intl\
                     php-mbstring\
                     php-json\
                     php-mysqlnd\
                     php-xml\
                     php-curl
sudo mv ci /var/www/html/
cd /var/www/html/
ls

https://github.com/geekabhinav007/CodeIgnitorV4-guide/blob/main/img/intialDirectory.png

Intial Configuration

public $baseURL = 'http://localhost/ci/public/';
Note : If you will be running your site using a web server (e.g., Apache or Nginx), you will need to modify the permissions for the writable folder inside your project, so that it is writable by the user or account used by your web server.
sudo chmod -R 777 writable/

https://github.com/geekabhinav007/CodeIgnitorV4-guide/blob/main/img/Welcomepage.png

sudo systemctl restart apache2.service

Thanks for following tutorial.