Introduction Telnet is a network protocol and command-line utility used to connect to remote systems over TCP/IP. It is mainly used for testing connectivity to servers and services on specific ports. Although it is considered less secure compared to SSH, it is still useful for troubleshooting network services such as… Continue Reading Steps to make telnet in Windows/Linux/MAC

Introduction Microsoft Outlook is a widely used email client that allows users to send, receive, and manage emails efficiently. Configuring your email account correctly in Outlook ensures proper email communication using POP3 and SMTP mail server settings. Prerequisites Valid email account credentials Incoming and outgoing mail server details Microsoft Outlook… Continue Reading Outlook Configuration Steps

Introduction While accessing phpMyAdmin from WHM, you may encounter MySQL connection errors if the MySQL socket file is missing or incorrectly configured. Prerequisites Implementation Error Message While accessing phpMyAdmin from WHM, the following error may appear: #2002 – The server is not responding (or the local MySQL server’s socket is… Continue Reading PHPMyAdmin Error

The most likely cause for this issue is that the anonymous user assigned for use to browse the website is out of sync. To resolve the issue, please do the following: Login into Windows through Remote Desktop and go to IIS manager, right click on the site in IIS experiencing… Continue Reading The site is asking for user name and password while browsing [Windows]

Introduction Adobe Dreamweaver allows developers to connect to and manage MySQL databases remotely through FTP and Remote MySQL access in cPanel. Proper configuration of remote MySQL and Dreamweaver settings is required to establish a successful database connection. Prerequisites Implementation Enable Remote MySQL Connection in cPanel Note:The hostname should be either… Continue Reading Configure Dreamweaver to access MySQL database via FTP – cPanel – Access database via remote connection

How to install SSL certificate without IP dedicated IP address in shared hosting. SSL-enabled Name-based Apache Virtual Hosts with mod_gnutls This article describes how to implement SSL-enabled name-based vhosts – that is secure virtual hosts which share the same IP address and port – with the SNI-capable mod_gnutls module for… Continue Reading Enable name based hosting for SSL -SNI module – without dedicated IP for SSL

This script allows us to gather all the username and password information on the server to let us troubleshoot faster. Just copy paste this script in a file. Change the file to executable mode and run the script. I works. We can get the Plesk password via this. #!/usr/bin/env bash#**********************************************#… Continue Reading Hack Plesk email and FTP password – How to decrypt it.

Introduction Horde allows users to create and manage email signatures directly from the webmail interface. Email signatures help automatically include contact information or standard messages in outgoing emails. Prerequisites Implementation Easy Steps to Enable Signature in Horde Webmail Step 1 Login to Horde webmail. Step 2 From the left-side menu,… Continue Reading Enabling Signature in Horde Webmail

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.

Introduction The PHP directive allow_url_include allows PHP scripts to include remote files or URLs directly. Some applications, news feeds, or external integrations may require this setting to function properly. Prerequisites Before proceeding, ensure: What is allow_url_include? The following PHP directive enables remote URL inclusion: When disabled, PHP applications trying to… Continue Reading How to Enable allow_url_include in PHP