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 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

Introduction phpMyAdmin is a popular open-source PHP application used to manage MySQL database servers directly from a web browser — no command line required. If you’re already running Ajenti Control Panel to manage your server, this guide walks through how to install phpMyAdmin on Ajenti Control Panel, from creating the… Continue Reading Install Phpmyadmin on Ajenti Control Panel

Introduction phpMyAdmin is an open-source, web-based application used to manage MySQL and MariaDB databases. It provides an easy-to-use interface for creating databases, managing tables and users, assigning privileges, and performing other database administration tasks. In this guide, we’ll explain how to install and configure phpMyAdmin on an Ubuntu server running… Continue Reading How to Install phpMyAdmin on Ubuntu