Blog

SendGrid click tracking issue

User Sendgrid cLick tracking overrite password reset url wordpress Assistant If SendGrid's click tracking is causing your password reset URLs in WordPress to be altered (resulting in broken or non-functional links), you can address this issue using the following approaches: — ### **1. Disable Click Tracking in SendGrid** The simplest way to avoid URL modifications […]

Adminer Docker Connection Timeout

User docker setup adminer connection timeout Assistant If you are experiencing a connection timeout with Adminer in your Docker setup, here are some steps to troubleshoot and resolve the issue: 1. **Check Container Status**: Ensure that both your Adminer and database containers are running. You can check the status with: docker ps 2. **Network Configuration**: […]

Connection Timeout Troubleshooting

User version: '3' services: php: build: context: . dockerfile: Dockerfile volumes: – ./src:/var/www/html # – ./config/custom.php.ini:/etc/php5/apache2/conf.d/custom.php.ini ports: – ${IP}:${PORT}:80 depends_on: – db links: – db db: image: mysql:latest container_name: mysql_db restart: always ports: – ${IP}:3306:3306 environment: MYSQL_ROOT_PASSWORD: "${DB_PASSWORD}" MYSQL_USER: "${DB_USER}" MYSQL_PASS: "${DB_PASSWORD}" volumes: – ./db-data:/var/lib/mysql command: –sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION pma: image: phpmyadmin/phpmyadmin environment: PMA_HOST: db PMA_PORT: 3306 […]

Set MySQL Root Password

User aws set mysql root password Assistant To set or update the MySQL root password on an AWS instance (like EC2), you can follow these steps. Ensure you have access to your server with root or sufficient privileges. — ### **1. SSH into Your AWS Instance** – Connect to your EC2 instance using SSH: ssh […]

Delete Docker Images Containers

User Delete all images and container in system docker Assistant To delete all images and containers in your Docker system, you can use the following commands in your terminal. Make sure to run these commands carefully, as they will remove all your Docker containers and images. 1. **Stop and remove all running containers**: docker stop […]

MySQL Change Root Password

User mysql change root user to native password Assistant To change the MySQL root user to use a native password authentication plugin, follow these steps: 1. **Log in to MySQL**: Open your terminal or command prompt and log in to MySQL with the root user. mysql -u root -p Enter your current root password when […]

Remove Last Git Commit

User remove last commit git add. Assistant To remove the last commit in Git, you can use the following command. This will reset your branch to the previous commit, effectively undoing the last commit while keeping the changes in your working directory: git reset HEAD~1 ### If You Want to Remove the Commit and Discard […]

SendGrid Click Tracking Issue

User url9839.postmymeds.co.uk doesn't support a secure connection errorr in private window when wordpress reset password link in gmail Using sendgrid smtp and Clicking Tracking Assistant The issue you're encountering—where clicking a password reset link sent through SendGrid leads to an insecure connection error—likely stems from the Click Tracking feature in SendGrid altering the URL structure. […]

Personio API PHP Implementation

User developer.personio.de API implementation in php Assistant To implement the **Personio API** in PHP, you need to follow these steps: — ### 1. **Understand the Personio API** – Check the API documentation at [developer.personio.de](https://developer.personio.de) for available endpoints, authentication methods, and data models. – Identify the endpoints you need for your integration (e.g., employee data, absence […]

UsersWP Hooks Overview

User userswp hooks Assistant The **UsersWP** plugin for WordPress provides several hooks (actions and filters) that you can use to customize its functionality or extend its features. Below are some common types of hooks available in UsersWP: — ### **Actions** Actions allow you to execute custom code at specific points in UsersWP's execution. #### Example […]