Month: December 2024

Cache Clearing Sequence

User After updating divi theme, wp super cache and wp speedster and then clear cloudflare cache site styles distrubed disturbed What is sequence to above apply Assistant The issue you’re experiencing is likely due to cached assets (CSS/JS) not updating properly or conflicting with each other after the updates. Here's the ideal sequence to minimize […]

Support Search by Coach

User return view('content.admin.support.index', [ 'supports' => Support::orderBy('created_at', 'desc')->paginate(config('pagination')), 'coachs'=>Coach::all() ]); add search by coach id Assistant To add a search feature for filtering by coach ID in your Laravel application, you can modify your controller method to include a search parameter for filtering and update your view to include a form for submitting the search […]

Disable SSH Auto Start

User remove auto servvice aws ssh Assistant To remove the auto-start SSH service on your AWS EC2 instance, follow these steps: ### **1. Connect to Your EC2 Instance** First, connect to your EC2 instance via SSH: ssh -i "D:awsk.pem" ubuntu@ec2-16-170-254-93.eu-north-1.compute.amazonaws.com ### **2. Stop the SSH Service** Run the following command to stop the SSH service […]

Divi Theme CSS Issues

User after updating divi theme css not look good Assistant If the CSS of your site is not rendering properly after updating the Divi theme, it could be due to various reasons such as cached styles, conflicts, or changes in the theme's code. Here are some steps to troubleshoot and resolve the issue: ### 1. […]

Add Swap Memory t3.micro

User Add swap memory aws free instance t3 micro Assistant To add swap memory to your AWS free tier instance (t3.micro), follow these steps: ### **1. Check Current Swap** sudo swapon –show If there’s no output, swap is not enabled. ### **2. Check Available Disk Space** df -h Ensure there’s enough space on your instance […]

AWS Free Instance Issues

User Aws free instance yarn run Dev pm command cause server unreachable some time Assistant Running resource-intensive commands like `yarn run dev` on an AWS free-tier instance can cause performance issues or even make the server temporarily unreachable. This typically happens because the free-tier instances, such as `t2.micro` or `t4g.micro`, have limited CPU, memory, and […]

Stabilization After Debugging Steps

User ## We have done so may activites like many times cloud cache clear, truning on debug mode,I think we need to wait it to stable Correct above senence Assistant We have done several activities, such as clearing the cloud cache multiple times and enabling debug mode. I think we need to wait for it […]

Remove PDF Logo Notice

User The PDF generator has been updated, this update may mean your logo is not displaying on the PDF invoice. If your logo is missing from the invoice you can set the "Set Resources Folder" option to "Yes" in the PDF Invoices Settings. More information is available in the PDF Invoices Documentation. remove this option […]

Remove PDF Logo Option

User The PDF generator has been updated, this update may mean your logo is not displaying on the PDF invoice. If your logo is missing from the invoice you can set the "Set Resources Folder" option to "Yes" in the PDF Invoices Settings. More information is available in the PDF Invoices Documentation. remove this option […]

Moving Git Files Issues

User not able to move .git and .ingonre Assistant If you’re unable to move `.git` or `.gitignore` files, it might be due to the following reasons. Let’s address them: — ### 1. **Permissions Issue** – Ensure you have the proper permissions to move these files. If you’re on Linux or macOS, use the following command: […]