Follow Me:

Sunday, 2 July 2017

ReactJS Webpack Module build failed: Error: Cannot find module Running the npm start in reactjs by using nodejs, its throwing error like "Module build failed: Error: Cannot find module". Module build failed: Error: Cannot find module 'locate-path'     at Function.Module._resolveFilename (module.js:469:15)     at Function.Module._load (module.js:417:25)     at Module.require (module.js:497:17)    ...

Sunday, 11 June 2017

How to check the latest patch version applied to magento? Magento latest patch version need to check will use below commands. It will show entire list of patch in your project. Runned the command in your putty. grep -F '|' app/etc/applied.patches.list|cut -f 2,1 -d'|' Another options Goto App/etc folder and find the file name as "applied.patches.list"...

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