Varadharaj V |
X

Congrats, You are Subscribed to Receive Updates.

Change reCAPTCHA v2 to v3

Change reCAPTCHA v2 to v3
Converting from Google reCAPTCHA v2 to v3 involves several steps, both on the Google reCAPTCHA side and within your PHP website. Here’s a detailed guide on how to handle the conversion, including the necessary code changes and procedures. Overview of reCAPTCHA v2 and v3 Steps for Conversion 1. Register Your Site for reCAPTCHA v3 2. Implement reCAPTCHA v3 in Your PHP Website Frontend: Adding reCAPTCHA ...

DNS Spoofing or Hijacking For Email

DNS Spoofing or Hijacking For Email
Email hacking at the DNS level, also known as DNS spoofing or DNS hijacking, is a form of attack where cybercriminals manipulate the Domain Name System (DNS) to intercept, redirect, or alter email communications. This type of attack can be highly dangerous because it targets the infrastructure of how internet addresses are resolved. Here’s a detailed explanation of how DNS-level email hacking occurs and how ...

FrontAccounting Credit Status Management

FrontAccounting Credit Status Management
With FrontAccounting, You can able to update the customer credit status, which will helps you to decide whether we can provide further business with a customer or hold it until they make their old debits. It’s normally once you update the credit status, the system will remind you during the time of invoicing it. Let’s take a look at this in detail. Credit status you ...

How to add Recaptcha 3 on my PHP website

How to add Recaptcha 3 on my PHP website
Just follow the steps to get it implemented on you website. <script src="https://www.google.com/recaptcha/api.js?render=site_key"></script> Replace “site_key” with your Site Key. grecaptcha.ready(function() { grecaptcha.execute('site_key', {action: 'submit'}).then(function(token) { // Add code to submit the form with the token }); }); Replace “site_key” with your Site Key. $response = $_POST['g-recaptcha-response']; $url = 'https://www.google.com/recaptcha/api/siteverify'; $data = array( 'secret' => 'secret_key', 'response' => $response ); $options = array( 'http' => array ...

How to Add Custom TTF Font to TCPDF

How to Add Custom TTF Font to TCPDF
TCPDF is one of a popular library, which helps to get the PDF designed from the php code. This is helps to prepare mainly the invoices, receipts, etc. But most of the time, you might need to have custom font to make it look good with it. Here are some steps to make the Custom TTF font to work in TCPDF. Here is an example ...

Solved: Dropzone is already attached

Solved: Dropzone is already attached
Dropzone autoDiscover false not working and Dropzone already attached error comes when you are working with dropzone. You need to understand the fact of already your dropzone is hooked. We need to destory it before load the new one. Let’s make use of the below code to destroy the already created Dropzones and create a fresh one again. Before that lets write a function to ...

WordPress Enable Custom Error log

WordPress Enable Custom Error log
It’s good sometimes to record the possible errors from our theme or plugin, instead of showing them in the browser. We can log it into a separate file and check it. Let’s get started to implement it. First open your wp-config_db.php And find this define(‘WP_DEBUG’, false); And replace it with below code define( 'WP_DEBUG', true );define( 'WP_DEBUG_LOG', true );define( 'WP_DEBUG_DISPLAY', false );@ini_set( 'display_errors', 0 ); ...

WordPress Add_option, Get_option, delete_option and Update_option

WordPress Add_option, Get_option, delete_option and Update_option
For every theme development and plugin development, we will have to store some configurations like the options and its values in our wordpress options table. WordPress already given us enough functions to perform this in easy way. Which will not requires to write more code on this. To add a new option we can call the add_option. And Retrieve the values, we can use the ...

Storage Larger then 4GB files in USB Drive

Storage Larger then 4GB files in USB Drive
It’s good and easy to store large files in Your USB. Just follow the simple steps to make it work. Mac OS or Macintosh Insert Pen(USB) drive Goto Disk Utility (From applications you can get it) Choose Click on your USB Drive Right click and press Erase It will show format types. There choose ExFAT And click ok, (Remember it will erase all your data ...

Invoice2data Example

This is basically a good way to make your System to read invoice data from PDF, image to system readable XML, JSON, & CSV. We will start with python library  invoice2data. Now a days Machine Learning (ML) is getting popular to make a system to create a program to learn itself to adapt the new things. Let’s make the PDF and image invoices readable and ...

Menu

Sidebar