Lightsail Bitnami

How to disable Small Bitnami Icon from Lightsail WordPress ?

Okay, this is kind of necessary because something changed but isn’t updated on documentation, So I assume lot of people might be facing the problem at the time of writing of this article. So what is the problem exactly ? When we use default WordPress install with Amazon light sail or for that matter Bitnami …

How to disable Small Bitnami Icon from Lightsail WordPress ? Read More »

Symfony logo

Solution – Why some console commands are not working in Symfony

This post is going to be a short and quick. Recently I have been working a lot with symfony and every time i face some issue turns out there is very simple solution but sometimes it doesn’t strikes as obvious solution, until we find a solution on slackoverflow or github. In this post I am …

Solution – Why some console commands are not working in Symfony Read More »

Symfony logo

Read Json in Symfony 5 controller from asset directory

We all know Symfony is awesome. Recently for some project which is in initial stages I had to read some JSON data from a file which i placed in asset/json directory. I knew about previous versions but in latest symfony I was facing problem. Googling took me to some stackoverflow pages and it actually almost …

Read Json in Symfony 5 controller from asset directory Read More »

Symfony logo

Update Symfony Installer to latest version in Ubuntu Linux

So here I was trying to create symfony 5 project but somehow as things weren’t working as per documentation. I ran command ‘symfony check:requirements’ to see if my system fulfills all requirements for latest version of symfony, but this is what i received: I was on version 1.5.11 of symfony binary, which apparently was the …

Update Symfony Installer to latest version in Ubuntu Linux Read More »

How to solve ext-bcmath missing problem on ubuntu with php

Recently I ran into a problem while setting up an application on my local machine with composer install. The problem ? This was a fairly common problem recently, I faced this while running composer, so finally I decided to figure out what exactly was the issue. I am running php7.2 on Ubuntu 19.10 and I …

How to solve ext-bcmath missing problem on ubuntu with php Read More »

How to combine Angular4 and Slim Framework applications into one application for production

This tutorial helps to get any anular4 application into the production with the PHP or any other kind of server side technology, in this one we use the slimframework but the concept remains the same with other server side technologies. Assumptions: This tutorial assumes that you are already familiar with Angular2 or Angular4 and also …

How to combine Angular4 and Slim Framework applications into one application for production Read More »

How to change default value printing symbols in Angular JS ?

This tutorial is brief and easy way to change the default Angular JS value printing symbols ‘{{‘ and ‘}}’ into something else. This tutorial is very short one, recently while working on a Symfony project along with Angular JS we had a small little problem, as the twig in symfony uses ‘{{‘, ‘}}’ and so …

How to change default value printing symbols in Angular JS ? Read More »

Using HTML5 web storage features(localStorage and sessionStorage)

Cookies are the old friends of web developer as they allow a lot of flexiblity due to the local storage of data, but with HTML5 we get two new client side storage features. localStorage and sessionStorage are two new HTML5 features, these allow the storage of data on the client end with allowing flexiblity of …

Using HTML5 web storage features(localStorage and sessionStorage) Read More »