Fixing Webhook Signature and Timestamp Mismatch in Cashfree Payment Integration for WordPress Plugins

When integrating Cashfree Payment Gateway webhooks in a custom WordPress plugin, one common issue developers face is a mismatch in signature and timestamp during verification. If you’ve encountered errors like “Signature Mismatch” or “Invalid Timestamp,” you’re not alone! In this post, I’ll walk through the problem and show you how…continue reading →
Homebrew MySql Start Issue

Homebrew MySql Start Issue

If you ended up sudden mysql not starting on your mac machine. Most likely this is due to unintentional mysql upgrade during homebrew update. Reverting to previous mysql version quickly fix issue. If you wish to try this make sure to take backup of mysql data folder first. Below are…continue reading →

How to install pip command on MacOSX

pip: command not found You may end on above issue while trying to install python django module using pip command. Solution is very simple. Simply run following command in terminal. Change version number depending on your python version. For Default Python Installation sudo easy_install pip For Default Python 2.7 Installation…continue reading →
Django Python 3 Error in MySQL Module Installation

Django Python 3 Error in MySQL Module Installation

Error: django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module. Did you install mysqlclient? ModuleNotFoundError: No module named 'ConfigParser' Resolution: I tried to install mysql module using pip command but it failed several times. pip install mysqlclient Here are the steps worked for me. Run each command one by one in terminal. Note I…continue reading →
Laravel 5.2 Token Mismatch Error Fix

Laravel 5.2 Token Mismatch Error Fix

Lots of people talking about this error. After investing hours I finally reached at solution. Actual solution is describing here at StackOverflow. Stackoverflow is always helpful when we stuck somewhere. Here are some of issue: The possible reason was due to hidden iframe injection by browser add-ons. However I could…continue reading →

What is Rx Rate and Tx Rate

Rx Rate and Tx Rate are both used measure data transmission over transfer medium. One represent in-bound data rate and other one used for outbound data rate. Tx Rate represent rate at which data packets being sent from your pc. Rx Rate represent rate at which data packets being received…continue reading →