I Installed a Pirated Theme and Here’s What Happened!

I needed to test a compatibility of Dokan with a premium theme from ThemeForest. So I quickly googled and landed into a pirated/nulled site. I was surprised to find out it wasn’t asking for money or didn’t land into paid affiliate links. Although it was suspicious, I downloaded the theme and installed it in my local machine … Continue reading I Installed a Pirated Theme and Here’s What Happened!

Passwordless WordPress User Login with Phone Number

Accountkit – A service provided by Facebook released in 2016, aims to provide a user authentication system without needing a password. Means, you can log in to any website, or a mobile app without needing to register with a username/email and a password. So it provides a better-secured user account where you don’t have to … Continue reading Passwordless WordPress User Login with Phone Number

weDocs Released as a Plugin

Most probably you guys have heard about the weDocs theme before, it’s a documentation theme and a very popular one I must say. Not everyone wants to create a separate site only for documentation purpose. I don’t want for every of my products either, some are separate entities altogether. So I’ve taken the functionalities out … Continue reading weDocs Released as a Plugin

Nginx wildcard subdomain redirection

In a situation like where you are using nginx and you have to redirect abc.example.com, or random.example.com to example.com/user/subdomain, here is the snippet that will do the job. Lets say your nginx server block looks like this: server { listen 80; server_name example.com www.example.com; root /var/www/example.com/htdocs; index index.php index.html index.htm; […] } Now add this … Continue reading Nginx wildcard subdomain redirection