Blog

HTACCESS directory mapping

User we have web directory public_html/naa2023/web need to map this using htacess Assistant To map the `public_html/naa2023/web` directory using `.htaccess`, you can create an `.htaccess` file in your `public_html` directory to redirect or rewrite URLs to point to the `naa2023/web` folder. ### Method 1: Using Rewrite Rules If you want to make `naa2023/web` your web […]

Change Document Root Apache

User change document root to ap /web folder htaccess Assistant To change the document root to a different folder (e.g., `/web`) using `.htaccess`, you can modify the `.htaccess` file to redirect requests or set the document root accordingly. However, note that `.htaccess` files can only influence settings if the server (like Apache) is configured to […]

SVG Icon Accordion Toggle

User $('.accordion-header').click(function() { // Toggle the current accordion item $(this).next('.accordion-content').slideToggle(); // Toggle the icon between '+' and '-' const icon = $(this).find('.icon'); icon.text(icon.text() === '+' ? '-' : '+'); // Close other accordion items $('.accordion-content').not($(this).next()).slideUp(); $('.icon').not(icon).html(''); }); add svg icon place of + – Assistant To replace the `+` and `-` text with SVG icons, […]

MySQL CSV Export PHP

User mysql export data from users and profiles table to csv in php Assistant To export data from two MySQL tables (`users` and `profiles`) to a CSV file in PHP, you can use the following approach: ### Example Code <?php // Database configuration $servername = "localhost"; $username = "root"; $password = ""; $database = "your_database"; […]

Quote for tasks

User We've to quote for 2 tasks Correct above sentecne Assistant We need to provide a quote for two tasks.

EC2 Instance Connectivity Issues

User aws ec2 ubutu instance site can not reached Assistant If your AWS EC2 Ubuntu instance is not reachable, here are a few things you can check: ### 1. **Check the Security Group** Ensure that the EC2 instance's security group allows inbound traffic on the necessary ports: – **Port 22** for SSH (if you're trying […]

EC2 Instance Connection Issues

User amazon ec2 ubuntu instannce This site can’t be reached ec2-13-60-215-155.eu-north-1.compute.amazonaws.com took too long to respond. Assistant If you're encountering the error: > "This site can’t be reached. [Your EC2 Public DNS] took too long to respond." This usually means there's an issue with your EC2 instance's network configuration, firewall, or security settings. Let's troubleshoot […]

Install Adminer on EC2

User How to add adminer in amazon ubuntun ec2 Assistant To add **Adminer** (a lightweight and powerful database management tool) to an **Amazon EC2** instance running **Ubuntu**, follow these steps: ### Step 1: Connect to Your EC2 Instance 1. Open your terminal (or use an SSH client like PuTTY if you're on Windows). 2. Connect […]

Fix SSH Key Permissions

User ssh -i gotoapp.pem ubuntu@ec2-13-60-215-155.eu-north-1.compute.amazonaws.com The authenticity of host 'ec2-13-60-215-155.eu-north-1.compute.amazonaws.com (13.60.215.155)' can't be established. ED25519 key fingerprint is SHA256:HOxzoPBdagccukLvLBoMgFFxtlogDSt195tyDtEC/Y4. This key is not known by any other names Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'ec2-13-60-215-155.eu-north-1.compute.amazonaws.com' (ED25519) to the list of known hosts. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY […]

Delete EC2 Instance

User how to delete an instance aws Assistant To delete an instance in AWS, you can do it through the AWS Management Console, AWS CLI, or AWS SDKs. Here's how to delete an EC2 instance using each method: ### Method 1: AWS Management Console 1. **Log in to the AWS Management Console** – Go to […]