Latest Posts

Expectation is the root of all heartache

Expectation is the root of all heartache. -William Shakespeare Peace begins only when expectation comes to an end. Sometimes not getting what you want is the best thing. You might not understand it at that moment but later in your life you will realize that what had happened was in your favor. Let’s gather peace and happiness by...

Better way to debug php script Enable error log for individual folder php script.

Better way to debug php script Enable error log for individual folder php script. how to enable in php.ini You have to set on php.ini file directive as follow,string "error_log" on right side is the file name u want for log, Check the value of error_reporting. For example i have error_reporting value is 24567 by runing below function...

How to hosting angular 2 with Angular CLI and Github pages?

How to hosting angular 2 with Angular CLI and Github pages? If you have already Node.js install,Installing the CLI is easy. sudo -s npm install -g angular-cli Create new app with 'ng new' command. ng new coderkishan cd coderkishan And then launch the app in your browser for testing with 'ng serve' ng serve You can see message...

Magento2 How to debug blank white screen and css,js page load design issue.

Magento2 How to debug blank white screen and css,js page load design issue. index.php ini_set('error_reporting', E_ERROR); register_shutdown_function("fatal_handler"); function fatal_handler() { $error = error_get_last(); echo(""); print_r($error); echo(""); } If you are facing problem of css and js page load design after installation in magento2 please follow the below step-: open the terminal and navigate to magento web root cd...

How to Switch between Multiple PHP Version and install phpmyadmin on Ubuntu 12.04,14.04 and 16.04

How to Switch between Multiple PHP Version and install phpmyadmin on Ubuntu 12.04,14.04 and 16.04 Install PHP 5.6 on Ubuntu Use the following set of command to add PPA for PHP 5.6 in your Ubuntu system and install PHP 5.6. sudo apt-get install python-software-properties sudo add-apt-repository ppa:ondrej/php sudo apt-get update sudo apt-get install -y php5.6 Check Installed PHP...

How to use FFmpeg to convert uploaded audio file to .mp3 in php

FFmpeg is a free software project that produces libraries and programs for handling multimedia data. How to install FFmpeg on ubuntu operating system 16.04 LTE 32bit. sudo apt install ffmpeg write the below command to check the FFmpeg path. whereis ffmpeg write the below command to check the FFmpeg version. ffmpeg -version let's go through PHP practical exam...

Creating own component in yii2

Create a folder named "components" inside backend directory. Now create one class 'Converter' with extends class 'Component' inside the components folder. Using this component, we will display unix timestamp to date and time. Please see the below code to create a custom component class and function for convert unix timestamp to date and time . PATH : yii-demo/backend/components/Converter.php...

Page 1 of 6123456Next
Powered by Blogger.