Follow Me:

Monday, 6 February 2017

Npm node js can't find package.json The most important things in your package.json are the name and version fields. Those are actually required, and your package won't install without them. The name and version together form an identifier that is assumed to be completely unique. Changes to the package should come along with changes to the version. npm --version npm install express npm init -y More reference: https://docs.npmjs.com/files...

Friday, 28 October 2016

PHP sessions default timeout We are settind the Session Time out in Php as mentioned as below: session.gc_maxlifetime = 1440 (1440 seconds = 24 minutes)...

Friday, 7 August 2015

Differences between InnoDB and MyISAM     In MySQL, major difference of InnoDB and  MyISAM are given below. MyIsam is supporting the table level locking in database. But InnoDB is supporting the row level locking in the database. MyIsam is supporting the FULL TEXT SEARCH functionality and InnoDB also supporting the FULL TEXT SEARCH after MySQL Version of 5.6.4.    MyISAM Engine :  1. It supporting Table-level...

Tuesday, 21 July 2015

CwebP Unsupported Color Conversion Request:     When i am creating WebP images, that time triggering the error as "cwebp unsupported color conversion request, Error Could not be process file".  Error:      $imageName  = "ilikekaraikudi.jpg";     $webpimgName  = "ilikekaraikudi.webp";      cwebp -q 0 ".$imageName." -o ".$webpimgName.    Unsupported color...