Blog |
X

Congrats, You are Subscribed to Receive Updates.

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 ...

ImageMagick security policy ‘PDF’ blocking conversion

ImageMagick security policy ‘PDF’ blocking conversion
You are here, because you stuck with this above stated issue, while processing PDF to image. This is a simple bug lets do it by simple steps. Steps for Ubuntu/Linux open your /etc/ImageMagick-7/policy.xml , here may be the number, 5,6,7, 8, it depends with php version that you have. goto bottom of this xml file and before the </policymap> add this line <policy domain="coder" rights="read | ...

Check if a url is already open in JavaScript

Check if a url is already open in JavaScript
Introduction From the string side functions, we have to do many string manipulation programs. Some cases we need to identify whether the string contains another string or now.  PHP String Contains Specific Word is also called as strpos. This function helps to find the string in another string. or a charater in a string or a sentence. Strpos is a quite easy program to compare ...

Menu

Sidebar