Uncategorized

install Let’s Encrypt SSL on Amazon Linux 2

To install Let’s Encrypt SSL on Amazon Linux 2, you can follow these steps: sudo yum update -y sudo yum install -y mod_ssl python3 python3-pip sudo pip3 install certbot sudo firewall-cmd –zone=public –permanent –add-service=https sudo firewall-cmd –reload sudo certbot certonly –standalone -d your-domain.com sudo nano /etc/httpd/conf.d/your-domain.com.conf <VirtualHost *:80> ServerName your-domain.com Redirect permanent / https://your-domain.com/ </VirtualHost> […]

Continue reading
How To install PHP 8.0 on Amazon Linux 2

you can follow these steps: sudo yum update sudo amazon-linux-extras install epel sudo amazon-linux-extras enable php8.0 sudo yum install php php-devel php-mysqlnd php-opcache php-xml php-mbstring php-json php -v This should display the version of PHP installed on your system. Note: If you encounter any issues during the installation, you can refer to the official documentation […]

Continue reading
8 Ways to Protect Yourself From Online Scam

8 Ways to Protect Yourself From Online Scam Online scams are becoming increasingly common and can be difficult to spot, especially if you’re not familiar with the warning signs. Here are some tips to help you protect yourself from online scams: Be wary of unsolicited emails or messages. If you receive an email or message […]

Continue reading
Hiring the Best WordPress Freelancer: Shahid Malla

Hiring the Best WordPress Freelancer: Shahid Malla If you are in need of a skilled and reliable WordPress freelancer, look no further than Shahid Malla. With years of experience in the field and a track record of success, Shahid is the perfect choice for your WordPress project. One of the things that sets Shahid apart […]

Continue reading
Why Webhostingkashmir.com?

Webhostingkashmir.com is widely regarded as the best web hosting provider in Kashmir. With a strong reputation for reliable hosting services, excellent customer support, and competitive pricing, it’s easy to see why so many businesses and individuals in the region choose Webhostingkashmir.com for their hosting needs. One of the things that sets Webhostingkashmir.com apart from other […]

Continue reading
WHMCS Expert 2023?

Shahid Malla is a highly skilled and experienced WHMCS expert developer. With over a decade of experience in the hosting industry, Shahid has developed a deep understanding of the WHMCS platform and how to effectively use it to meet the needs of his clients. Shahid has a strong track record of delivering high-quality solutions that […]

Continue reading
To make a website in WordPress

How to make website in WordPress To make a website in WordPress, you will need to follow these steps: By following these steps, you can create a professional-looking website using WordPress. It’s a user-friendly platform that allows you to easily create and manage your own website.

Continue reading
Remove-Powered-By-WHMCS

Remove Powered By WHMCS Copy The code from footer.tl and past in footer.tpl under the whmcs theme files above the code! Thanks <script> if ($(“p:contains(‘Powered by’)”).length) { $(“p:contains(‘Powered by’)”).hide(); } </script>

Continue reading
ini_set() has been disabled for security reasons in cPanel

In this guide, I will show you how you can fix the int_set() issue in your server. if you do not see in disable functions but still show you the int_set issue, then I have a solution for you. many hosting providers create a manual file in Cpanel to block such function nnd called it […]

Continue reading
How To Remove WHMCS Sidebar from the order form

Hi, in this guide i will show you how you can hide the sidebar from whmcs For Orderform <?php use WHMCS\View\Menu\Item as MenuItem; add_hook(‘ClientAreaSecondarySidebar’, 1, function(MenuItem $secondarySidebar) { $client = Menu::context(‘client’); if (is_null($client) and (!is_null($secondarySidebar->getChild(‘Categories’)))) { $secondarySidebar->removeChild(‘Categories’); } if (is_null($client) and (!is_null($secondarySidebar->getChild(‘Actions’)))) { $secondarySidebar->removeChild(‘Actions’); } }); For clientarea add_hook(‘ClientAreaSecondarySidebar’, 1, function(MenuItem $secondarySidebar) { if (!is_null($secondarySidebar->getChild(‘Client […]

Continue reading