Blog

Bypass homepage cache WP

User Bypass cache home page set by setting wordpress funcitons.php Assistant To **bypass caching on the homepage** programmatically via your WordPress theme’s `functions.php`, you can use the following approach to instruct caching plugins or reverse proxies (like Varnish, Cloudflare, etc.) **not to cache the homepage**: — ### ✅ Option 1: Set `Cache-Control: no-cache` Header for […]

Download Media in WP

User how to download multiple image in flder from medIA IN WORDPRESS Assistant To download multiple images from the **WordPress Media Library** into a **local folder**, you can use any of the following methods based on your access level: — ### ✅ **Method 1: Using cPanel or File Manager (if you have hosting access)** 1. […]

Cordova Android Clean Build

User android cordova clean build Assistant To perform a **clean build** in an **Apache Cordova** Android project, follow these steps: — ### 🔄 **1. Clean the Cordova Android Platform** cordova clean android > This command removes the `platforms/android/build` directory and resets the build state. If `cordova clean` isn't available in your version (older ones), you […]

Clean and Rebuild Cordova

User clean android build and again build cordova Assistant To **clean and rebuild** your Cordova Android project, follow these steps in your project directory: — ### ✅ **1. Clean the Android build** cordova clean android This removes the `platforms/android/app/build` directory and resets the Gradle state. — ### ✅ **2. Rebuild the Android platform** cordova build […]

Map .com to EC2

User We have already mapped .in to aws now also want to map .com to same instance Assistant To map your `.com` domain to the **same AWS EC2 instance** as your `.in` domain, follow these steps: — ### **1. Update DNS Settings for `.com` Domain** Go to your domain registrar (e.g., GoDaddy, Namecheap, etc.) for […]

Hostinger Domain SSL Setup

User We have connected hostinger domain to aaws ec2 but still https not applied Assistant If you’ve connected a **Hostinger domain** to an **AWS EC2 instance** but **HTTPS (SSL)** is not working, here's how you can fix it step-by-step: — ### **1. Check Domain Points to EC2** Ensure your **domain’s DNS A record** points to […]

Concrete CMS Feed Progress

User I'm sharing progress on concrete cms feed package We've setup the site concrete cms 9.0.2 at our demo server please find server details below https://concretecms.newsoftdemo.info/login login details user: admin password: password@123 Following are completed 1- Installation and setuo of Community store package 2- Created and activation of our custom package "Shopping Feed Manager" 3- […]

CSS Form Styling ID

User add this id – custom-registration-form label{ width:100%; display: block; margin-bottom: 17px; font-weight: 700; font-size: 12.75px; color: #000; } input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea { width: 100%; border: 1px solid #666; border-radius: 3px; padding: .5rem 1rem; transition: all .3s; width: 100%; padding: 10px; font-size: 15px; border: 1px solid #fff; border-radius: […]

SSH key Bitbucket pipeline

User + ssh ubuntu@ec2-51-20-60-238.eu-north-1.compute.amazonaws.com " cd /var/www/vuefront && git fetch origin master && git reset –hard origin/master " git@bitbucket.org: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. bitbucket-pipelines.yml pipelines: branches: master: – step: name: Deploy to AWS EC2 Staging image: […]

APK parsing error fix

User when again build android in android studio the error there was a problem parsing the package Assistant The error **“There was a problem parsing the package”** when installing an APK on Android usually means **something is wrong with the APK file or its compatibility with your device**. Since you’re building the APK in Android […]