Resolve PHP date format problem

If you dont understood difference in between m-d-Y and d-m-Y format. We try to simplify the conversion process while taking a string value from input field, convert this to timestamp and again make this format suitable to mysql insertion which is (Y-m-d H:i:s) While inserting a date of birth 7th March 1990 if we type 07-03-1990. What …

Important Commands working with huge directory in gcloud

Important Commands working with huge directory in gcloud instance where I am using BITNAMI CLOUD LAUNCHER Making a public key in your UBUNTU system ssh-keygen cat dff-ssh-key cat dff-ssh-key.pub Copy and paste this key to you gcloud compute-engine->meta-data>ssh-keys. Making a tunnel with your localhost and gcloud database. ssh -N -L 8888:127.0.0.1:80 bitnami@IP Opening SFTP in …

All about htaccess redirects in wordpress

All about htaccess redirects in wordpress   HTTPS to HTTP domain redirect <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule>   Permanent 301 redirect your olddomain to a new  www domain? RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !newdomain.com$ [NC] RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301] Permanent 301 redirect your old domain to new …

Get wordpress page content via ajax request

Get wordpress page content via ajax request codes are very simple and you always need something like this to make some professional steps towards yor layout.  For admin backend put below code in functions.php which is creating an ajax action ‘my_action’ which can be called from script which is  given right below this code. add_action( …

Extract all wordpress shortcode in jQuery object

Extract all wordpress shortcode in jQuery object from the wordpress editer whose html id is #content. This supports same level and hierarchical both. See in fiddle https://jsfiddle.net/shakalya/jswe18kL/   <script> jQuery(function() { var pageContent = jQuery(‘#content’).html(); var data = {}; var data = parseShortCode(pageContent); console.log(data); function parseShortCode(shortCode) { var regex_for_match = /\[([\w-]+)([^]*?)(\/?)\](?:([^]*?)\[\/\1\s*\])?/g; var count = 0; …

Create a custom image/video gallery in wordpress with angularjs

Create a custom image/video gallery in wordpress with angularjs by putting below code in themes function.php If you are a code lover and want to get this gallery data in json format. this is the best code. I don’t like making new plugins for bunch of lines of codes. This code involves storing all the …

Add phpcaptcha in contact form 7 with validation

Add phpcaptcha in contact form 7 with validation in WordPress which you can download from below w3schools website. http://www.w3schools.in/php-script/captcha/ 1. Extract phptextcaptcha in your theme directory of wordpress. your directory will be like. yourthemepath/phpcaptcha/css yourthemepath/phpcaptcha/font yourthemepath/phpcaptcha/captcha.php yourthemepath/phpcaptcha/phptextClass.php where captcha.php path will be generating an image and put the value of it session $_SESSION[‘captcha_code’]; 2. In …

List of countries with country code , dial code, currency name, currency symbol, currency code

I have been searching for List of countries with country code , dial code, currency name, currency symbol, currency code and managed to get records from all over the internet. You can download All country with (country_code, dial_code, currency_name, currency_symbol), All states and all cities data from below.. which are interlinked with foreign keys. Download World …

Image helper file for CodeIgniter

Image helper file  for Codeigniter to edit, resize and get image parameters. <?php class Image { private $file; private $image; private $width; private $height; private $bits; private $mime; public function __construct($file) { if (file_exists($file)) { $this->file = $file; $info = getimagesize($file); $this->width = $info[0]; $this->height = $info[1]; $this->bits = isset($info[‘bits’]) ? $info[‘bits’] : ”; $this->mime …