Date Posted:02-06-2017 In this post  we will explain create new library in codeigniter for currency conversion,symbol I assume that you are configure or setup the codeigniter Step 1:Create the mysql table currency,use following code — phpMyAdmin SQL Dump — version 3.5.2.2 — http://www.phpmyadmin.net — — Host: 127.0.0.1 — Generation Time:… Continue Reading Currency Conversion and Symbol library in CodeIgniter

Date Posted: 05-06-2017 After the installation of vesta control panel, there are DNS entries added. However, DNS changes are not reflecting. After analyzed the log (/var/log/syslog), we came to know it was a permission issue. Resolution: Inorder to fix the issue, follow the below instruction. Open the file /etc/apparmor.d/local/usr.sbin.named and add the… Continue Reading DNS not working on vestacp

Introduction Atop installation on Linux provides a simple way to monitor system resources and running processes. Atop is an advanced system and process monitoring tool that provides detailed information about CPU, memory, disk, network, and process activity. It can also record system and process activity, which helps administrators troubleshoot performance… Continue Reading How to Install Atop on Linux

Date Posted:02-06-2017 In this post We will explain image upload with crop,resize in codeigniter using jquery plugin I assume that you are  configure or setup the codeigniter step 1: Download the jquery.min.js and jquery.Jcrop.min.js,Jcrop.css files and link to script or use cdn link. <source type=”text/javascript”  src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source>  <link rel=”stylesheet” href=”http://jcrop-cdn.tapmodo.com/v0.9.12/css/jquery.Jcrop.css” type=”text/css”… Continue Reading CodeIgniter Image Upload and Crop,resize

Introduction The phpMyAdmin configuration storage error — “The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated” — is a message you’ll likely see right after installing phpMyAdmin on a Linux server. Clicking through it usually reveals a long list of disabled features — bookmarks, SQL… Continue Reading The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated

Introduction Cron jobs are commonly used to automate repetitive tasks on a server, such as sending scheduled emails, generating reports, running database operations, cleaning temporary files, or executing application-specific tasks. In this tutorial, we will explain how to run a CodeIgniter controller function automatically using a cron job in cPanel.… Continue Reading Run a Codeigniter in a cron job using CPanel

Introduction Many website owners prefer not to expose the programming language used to build their applications. For example, instead of accessing a page as https://example.com/about.php, it is often cleaner and more professional to use https://example.com/about. In Apache, this can be achieved using .htaccess rules. In Nginx, the same functionality can… Continue Reading Adding automatic extension (php) on nginx

Introduction CodeIgniter applications may return a 404 Not Found error when deployed on an Nginx web server, especially when accessing custom application URLs such as /login, /admin, or /dashboard. The same application may work correctly on Apache because Apache commonly uses .htaccess rules for URL rewriting. Nginx does not process… Continue Reading How to Fix CodeIgniter 404 Errors on Nginx

Introduction Sending emails with HTML templates in CodeIgniter makes it easy to create professional and visually appealing email messages. Instead of writing the complete HTML content directly inside the controller, you can create a separate email template and load it dynamically when sending the email. In this guide, we will… Continue Reading How to send email using HTML templates in Codeigniter?

Introduction CodeIgniter 3 provides a simple routing mechanism for defining the default controller of an application. By default, the controller is generally placed directly inside the controllers directory. In some applications, controllers are organized into subfolders to maintain a better project structure. In this guide, we will explain how to… Continue Reading How To Use a Subfolder in Default Controller Route In Codeigniter 3