Skip to main content

Posts

Showing posts from March, 2017

Merge Bootstrap to your current codeIgniter project in PhpStorm on ubuntu 16.04

I will be leading you how to merge bootstrap into your codeIgniter project. There are two ways that you can bootstrap in your project. Method 1 -  Load bootstrap online   In this method you have to give links of following libraries inside the head tag in view pages. //css <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> //jquery <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script> //javascript <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> Method 2 -  Download and load bootstrap  You can download Bootstrap and merge it with your project. Step 1 : Download Lastest Bootstrap  and Jquery  into your computer. Step 2 : Create a folder called asserts in your codeIgniter project folder. Step 3 : Extract it and copy css, fonts, js folders to assets folder. Step 4 : Copy jquery.js f

Create an apache virtual host in ubuntu 16.04

Let's create apache virtual host on your local computer. Open your terminal and run following codes. First go to your project folder using cd command cd Projects/CodeIgniter/Login/ To get file path enter pwd This will give you file path of Login folder /home/shyamali/Projects/CodeIgniter/Login Now we can create a virtual host. Step 1 : You have to create a virtual host sudo vim /etc/apache2/sites-available/local.login.com.conf This will open an empty file Then paste following code inside the that file <virtualHost *:80>   # Admin email, Server Name (domain name) and any aliases   ServerAdmin webmaster@domain1.com   ServerName local.codeigniter.com   ServerAlias www.local.codeigniter.com   DirectoryIndex index.php   DocumentRoot /home/shyamali/Projects/CodeIgniter/Login   <Directory /home/shyamali/Projects/CodeIgniter/Login>                # Require all granted                 # Options FollowSymLinks                 Options Indexes FollowSymLinks Inclu