The solution for Sublime text Remote Editing: Sublime text is a powerful and most popular text editor for the Linux, Mac and Windows. But most often especially in windows, the issue is remote editing. Combining Sublime Text and ExpanDrive is a powerful solution for that. You can edit and manipulate files on SFTP/FTP or S3 in real-time from directly within the Sublime Text. Continue reading
Author: Subroto Mondal
Get Manjaro Linux 17.0 Gellivara DVD ISO Images
Manjaro Linux is an open source Linux distro which based on Arch Linux. Manjaro is user-friendly Linux distribution. It provides all the benefits of the Arch operating system. Continue reading
Setup MySQL Replication Master-Slave Mode
MySQL Replication is a method, which uses for sync database two or more replica servers. Typically it’s known as “Master-Slave” Replication. Continue reading
How to Use MS Access as a Front-End of MySQL
We all know that the Microsoft Office is one of the most popular Office Package because of its interface and user-friendly tools. Also, we all know that the MS Access is very popular and handy RDBMS. Query designing and database management tools in access provide a very easy approach to users. Continue reading
Install Laravel php Framework on Ubuntu 16.04
It is about Install Laravel. Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) architectural pattern. Continue reading
CodeIgniter Form Helper
In this tutorial, we are discussing “Form Helper” In CodeIgniter. We generally use a form to collect input from the user and store it either database or file. And uses this information as per application requirements. In CodeIgniter, The Form Helper file contains functions that assist us working with forms more effectively. Continue reading
CodeIgniter Creating Extending Replacing Libraries
Creating your own libraries:
You can easily create your own libraries. The first step in creating a library is to create a file inside the System/application/libraries/ directory, with a relevant name, you should also take the naming conventions outlined in the style guide into account. Continue reading
CodeIgniter library
CodeIgniter library:
A CodeIgniter library is simply a class file that abstracts functionality into easy-to-use functions that take much of the strain off the developer. Take the Database Library as an example. It contains many functions that make the creation of complex SQL queries very easy; it also makes queries much more readable. Continue reading
CodeIgniter Route Configuration
Route configuration generally used for remapping URL string. Typically there is a one-to-one relationship between an URL string and its corresponding controller class/method. The segments in a URI normally follow this pattern: Continue reading
CodeIgniter Remove Index php from URL
Everyone should want to remove trailing index php from URL after installing CodeIgniter. Removing Index.php from URL, it looks clean and more search engine friendly. That’s why you want too. You can remove index php part of the URL by adding a “.htaccess” file to the root of your CodeIgniter install. Continue reading