If you were building websites anywhere in the early 2000s, you must have learnt this the hard way that you do not buy your domain and hosting from the same provider. If something goes wrong, you end up losing both your domain and access to your hosting control panel. This is still very true and […]
If you haven’t read Part-1, go read it first and this will make more sense. This tutorial isn’t going to teach you everything in detail, this is more about getting straight to the point and to give you just enough information to get things done. Also we will try and stick as much as possible […]
I am writing this as I found the documentation to be all over the place and I found it really hard to get started with any kind of development. I feel there is some kind of disconnect in the docs and there is a lot assumed knowledge which users or developers may not have. I […]
In this post, we will go through a way to deploy PHP applications to a shared web host (and not a cloud instance or server). why a shared host you may ask?Because, you don’t have to worry about backups, email, database, security, SSL certs(along with renewals) and a host of other things that you wouldn’t […]
My intention here is to create an Aha!! moment, a moment when you realise this is all there is to a Virtual Machine. IntroductionVirtual Machines are everywhere, you must have definitely heard about the JVM(Java Virtual Machine), .NET CLR (C#), Zend(PHP), Dalvik/ART Virtual Machine for Android etc. You might have also heard about the the […]
If you have used PHP, you likely had to deal with a database in one form or another, There are various ways to communicate with the database, you could start with PDO and start using raw queries or you could interact with the database at an object level using a Repository pattern or Active Record […]