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

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

Posted Date:01-11-2017 In this post we will explain solve the modal scrolling issue in bootstrap pop up modal.   You should add the following Javascript $(‘.modal’).on(‘hidden.bs.modal’, function (e) { if($(‘.modal’).hasClass(‘in’)) { $(‘body’).addClass(‘modal-open’); } });  

L1aravel 5.5 installation on VestaCP domain Date posted: 31-10-2017 Assumptions:- We assume you have the following server setup VestaCP Ubuntu 16.04 Nginx PHP >= 7.0.0 PHP modules OpenSSL, xml, PDO, Tokenizer and mbstring Installing Laravel Install composer apt-get install composer Download the Laravel installer using Composer: composer global require “laravel/installer”… Continue Reading Laravel installation on VestaCP account

PDFlib support for PHP7.0 on Ubuntu 16.04 Date posted: 16-10-2017 Task: Enable PDF for PHP7.0 Based on your server architecture download PDFlib software from PDFlib site. cd /usr/local/src wget https://www.pdflib.com/binaries/PDFlib/911/PDFlib-9.1.1p3-Linux-x86_64-php.tar.gz tar -xvf PDFlib-9.1.1p3-Linux-x86_64-php.tar.gz cd PDFlib-9.1.1p3-Linux-x86_64-php/ Find PHP extension_dir # php -ini | grep extension_dir extension_dir => /usr/lib/php/20151012 => /usr/lib/php/20151012 copy… Continue Reading PDFlib support for PHP7.0 on Ubuntu 16.04

How to install Ioncube loader on Linux Date Posted: 03-10-2017 Ioncube loader is a php module used to encrypt php code. This post explains on how to install Ioncube loader on linux server. The Linux server can be Ubuntu, centos or other operating system. Prerequisites: Linux Host. Apache Webserver. If… Continue Reading How to install Ioncube loader on Linux

Posted Date:20-07-2017 In this we will explain mysql_query update using custom user created function Step 1: Create table name as product using following code CREATE TABLE `product` ( `pid` int(11) NOT NULL AUTO_INCREMENT, `pname` varchar(100) NOT NULL, `price` int(11) NOT NULL, `pimg` varchar(100) NOT NULL, `cat_id` int(11) NOT NULL, PRIMARY… Continue Reading Update query in php using function

Posted Date:26-08-2017 In this post we will explain eval and  Dynamic IF statements  using php Eval: eval — Evaluate a string as PHP code. Php code must be properly terminated using a semicolon. A return statement will immediately terminate the evaluation of the code. Syntax: eval(phpcode) Example: Simple example of eval php using simple… Continue Reading Dynamic IF statements using php