How to get Plesk password from MySQL database. Plesk Password decrypt or hack the Plesk password.   1. Getting all the domain account information from Plesk———————————————————————— mysql -uadmin -p`cat /etc/psa/.psa.shadow` -D psa -e “select login,password,home from sys_users INNER JOIN accounts on accounts.id=sys_users.account_id;” 2. Get client login details from Plesk.———————————————– mysql… Continue Reading Plesk password decrypt – Plesk password hack – from MySQL database.

 How to access remote url’s via PHP When the website is throwing an error message without loading the contents which refers to the remote url’s (in general news feeds), you need to enable the following PHP parameter. ============allow_url_include============ You can enable this PHP parameter by adding the following line in… Continue Reading allow_url_include — Makes the remote url’s active

Introduction If you are unable to access your Joomla administrator account, you can reset the password directly from the MySQL database using an SQL query. Prerequisites Implementation How to Reset Joomla Password You can reset the Joomla password by executing the following command in MySQL: update jos_users set password=MD5(“testpass”) where… Continue Reading How to Reset Joomla Password

Introduction ModSecurity is an Apache web application firewall (WAF) module that helps protect websites from common attacks such as SQL injection, cross-site scripting (XSS), and malicious POST requests. While it provides an additional layer of security, certain applications or websites may generate false positives, resulting in errors such as 406… Continue Reading How to Disable ModSecurity for a User or Domain in cPanel/WHM

Introduction: ModSecurity is an open-source web application firewall (WAF) module for the Apache HTTP Server. It helps protect web servers against common attacks such as SQL injection, cross-site scripting (XSS), remote file inclusion, and malicious HTTP requests. Compiling Apache with ModSecurity allows administrators to integrate advanced request filtering and security… Continue Reading How to compile mod_security in Apache 1.3 or 2.x?

Introduction Before updating a domain’s DNS records or migrating a website to a new server, it is important to verify that the website is functioning correctly on the destination server. This helps identify issues related to website files, database connections, SSL certificates, or server configuration before the DNS propagation begins.… Continue Reading How to check your site with temporary DNS method

Introduction This guide explains how to configure a new e-mail account in Mozilla Thunderbird using the POP protocol. By following these steps, users can successfully send and receive e-mails through their hosting mail server. Prerequisites Before starting the configuration, ensure you have the following details available: Thunderbird Configuration Steps Conclusion… Continue Reading Configuring Thunderbird Email Client

Introduction You can upload website files using Adobe Dreamweaver through an FTP connection. This allows you to manage and publish your website directly from Dreamweaver. Prerequisites Implementation Uploading Files using Dreamweaver You can upload the files through FTP using your Adobe Dreamweaver. Conclusion By configuring FTP settings in Adobe Dreamweaver,… Continue Reading Uploading Files using Dreamweaver

Introduction Logical Volume Manager (LVM) is a powerful storage management feature in Linux that allows flexible disk management. It enables administrators to create, resize, extend, and manage storage volumes without downtime. LVM provides better scalability and efficient disk utilization compared to traditional partitioning methods. This guide explains the basic steps… Continue Reading LVM – How to configure LVM in the server

Introduction Postfix is a widely used, free Mail Transfer Agent (MTA) designed to route and deliver email securely. Because email servers are frequent targets for spam and abuse, hardening Postfix is an important step to improve security and reduce unwanted mail traffic. Postfix hardening focuses on restricting how external systems… Continue Reading Post fix Hardening – configure postfix with anti spam blacklisting.