Using SSH protocol not only access your remote shell. But also use it for transfer files between computers securely through encrypted communication. You can use any one way out of following: Continue reading
Month: January 2017
Allow Root Login Over SSH Ubuntu 16.04 LTS
This article is follow up of Enable root login on Ubuntu 16.04 LTS. Assume that you have already set the password for your root account. It will help you allow to login as root over SSH. SSH stands for Secure Shell that is a cryptographic network protocol for operating network services securely over an unsecured network. For example, remote login to computer systems by users. SSH works over port 22. As usual, for better security root ssh access is set as by default “Prohibit-password",
That means to you is that, if you are trying to ssh to your server with your root account and password, you will receive an access denied error. Continue reading
MVC Concept with Basics of CodeIgniter
Although you have heard this term MVC mentioned in the previous article. MVC is an approach to separating your applications into three segments: Models, Views, and Controllers. Continue reading
CodeIgniter Application Architecture
In the previous post, we know how to setup CodeIgniter on your local environment. To proceed with configuration it is very important to know Application Architecture. The CodeIgniter application Architecture looks like below: Continue reading
Setup CodeIgniter on Local or Remote Server
CodeIgniter is light weight Open source powerful PHP Framework for web application development. It has many powerful features that make it popular. CodeIgniter is more compatible with any type of hosting and it has a very low footprint. It is also compatible with PHP4 and PHP5, so CodeIgniter can run on most of the web hosts out of there. Continue reading