Introduction: osTicket is a free and open source ticketing system for Linux. It is written in PHP and uses MySQL/MariaDB as a database backend. It also supports MySQL and PostgreSQL. osTicket is a helpdesk solution suitable for organizations of all sizes. It is excellent for managing your customer inquiries created… Continue Reading How to install osTicket on ubuntu 20.04

How to enable exec() function in PHP-FPM Date: 02-10-2021 Step 1: Log in to the server via SSH. Step 2: Check the PHP version of the server by using the below command.# php -v Step 3: If your domain using PHP version 7.3, open the PHP-FPM configuration file. # vi… Continue Reading How to enable exec() function in PHP-FPM

How to add Google ReCAPTCHA in PHP Codeigniter Date: 09-05-2020 Introduction: reCAPTCHA is a free service from Google that helps protect websites from spam and abuse. It is verifying a user is a human or robot. Google reCAPTCHA show some images and give hint in text and ask users to select appropriate images… Continue Reading How to add Google ReCAPTCHA in PHP Codeigniter

How to view PHP version for the domain in Cpanel Date:03-05-2020 Introduction: PHP is a popular general-purpose scripting language that is especially suited to web development. It is a server-side scripting language. It is used to develop static websites or dynamic websites or web applications. PHP stands for Hypertext Pre-processor. Step – 1: Log into… Continue Reading How to view PHP version for the domain in Cpanel

HOW TO SETUP COOKIE IN PHP Date : 31/01/2019 Introduction A cookie is a small file, that stores in the user computer, used to keep track of information, such as username or else, the site can retrieve when the user visits the website next time. Setting up cookie using PHP… Continue Reading HOW TO SETUP COOKIE IN PHP

How to debug in Codeigniter Date : 09/11/2019 Introduction We can use functions like echo, print_r(), var_dump() or log_message() to print values both in log files and also in browser. Other than log_message() other print methods will not print values in log_message. echo – used to simply display the content.… Continue Reading How to debug in Codeigniter

 How to Connect MySQL Database Remotely using Codeigniter Date : 08/10/2019 Introduction You can connect remote database with other for development in codeigniter project development. There are few things have to checked to connect remote database for your codeigniter project. The checks are summarised in the following. Enter valid details… Continue Reading How to Connect MySQL Database Remotely using Codeigniter

CodeIgniter Queries DATE POSTED: 03/04/2019 In this post we will explain basic CodeIgniter Queries. What is CodeIgniter? CodeIgniter is a powerful PHP framework with a very small footprint, built for developers who need a simple and elegant toolkit to create full-featured web applications. Today we are going to discuss about… Continue Reading CodeIgniter Queries

UPLOAD FILE Using CODEIGNITER FRAMEWORK Date posted :03/04/2019 Most importantly, in this tutorial we are going to upload the file using PHP- codeigniter framework. It has upload library for upload the file. pre-requesties 1)However create a uploads directory at the project root to store files. 2)After that, we need to… Continue Reading UPLOAD FILE USING CODEIGNITER FRAMEWORK

Create contact form with php Date posted : 13/02/2019 In this post we will explain how to create the contact form with php. Customer will contact the website owner using this contact form. Step 1: Create the contact form using the following code. Step 2: Create the send_form_email and paste… Continue Reading Create contact form with php