Date Posted: 22-12-2017 In this Post we will explain Total amount value with tax using php. Step 1: Create a new file name as index.php and paste the following code. <?php //The VAT rate. $vat =18; //Divisor (for our math). $vatDivisor = 1 + ($vat / 100); //The gross price, including… Continue Reading Total amount value with tax using php

Date Posted: 26-12-2017 In this Post we will explain convert the number to words in indian currency upto 10 crore. Step 1: Create new file name index.php and paste the following code. <?php /*Number format*/ function getIndianCurrencyToWords(float $number) { $decimal = round($number – ($no = floor($number)), 2) * 100; $hundred… Continue Reading Convert Number to Words in Indian currency format with paise value

Date Posted: 25-12-2017 In this post we will explain how to change site url in the new moved domain. Step 1: Open the wp-config.php and edit define(‘DOMAIN_CURRENT_SITE’, ‘newdomain.com’); define(‘WP_DEBUG’, false); define(‘WP_ALLOW_MULTISITE’, true); define(‘MULTISITE’, true); define(‘SUBDOMAIN_INSTALL’, false); define(‘DOMAIN_CURRENT_SITE’, ‘newdomain.com’); define(‘PATH_CURRENT_SITE’, ‘/’); define(‘SITE_ID_CURRENT_SITE’, 1); define(‘BLOG_ID_CURRENT_SITE’, 1); Step 2: Open mysql or phpmyadmin… Continue Reading Changing the Domain Name on WordPress Multi-site

Date Posted: 22-12-2017 In this Post we will explain how to setup multisite in wordpress. Step 1: Open wp-config file and find the copy-paste following code just above the “That’s all, stop editing! Happy blogging” comment. define(‘WP_ALLOW_MULTISITE’, true); Step 2: Open the wp-admin in browser and goto tools->Network Setup and… Continue Reading WordPress Multisite Domain setup

Country based redirection on nginx behind load balancer|Geo Location Based redirection Date Posted: 19-12-2017 There are scenario where we want to setup country based redirection depends on visitor. In this post, we will explain on how to setup country based redirection on nginx which is behind load balancer. Assumption: Nginx… Continue Reading Country based redirection on nginx behind load balancer|Geo Location Based redirection

Posted Date:20-07-2017 In this post we will explain moving wordpress media to amazon cloudfront and S3. step 1: Install the following plugins on wordpress. https://wordpress.org/plugins/amazon-web-services/ https://wordpress.org/plugins/amazon-s3-and-cloudfront/ step 2: To configure Amazon Web Services account here and create the new user in aws console. step 3: To create the aws s3 bucket… Continue Reading Moving WordPress Media To Amazon CloudFront and S3