Solution to Invalid file type and directory not found error while installing opencart 2.X extensions

This post is a step by step guide for installing Opencart extensions in localhost or web server. This also gives solutions to common problems like “directory containing files to be uploaded couldn’t be found” or “invalid file type” when you try to upload .zip extensions. So let’s begin – Installing Opencart extensions in localhost or …

Solution to Invalid file type and directory not found error while installing opencart 2.X extensions Read More »

How to setup FTP on Localhost using XAMPP | Windows localhost FTP server

Creating an FTP server on localhost is quite easy. Just install XAMPP and follow these steps: Setting up FTP on Localhost Using XAMPP Open XAMPP control panel and click the start button next to Filezilla. Go to C:xamppFileZillaFTP or to the proper directory if you have installed xampp in another directory. Open Filezilla server interface.exe …

How to setup FTP on Localhost using XAMPP | Windows localhost FTP server Read More »

Android ADB commands cheat-sheet for Developers and Users

Welcome fellow Android enthusiast, in this post we’ll be discussing ADB (Android Debug Bridge). According to Google: “Android Debug Bridge (adb) is a versatile command-line tool that lets you communicate with a device.” There are a lot of reasons why you might need to communicate with your Android device via your computer. You might have …

Android ADB commands cheat-sheet for Developers and Users Read More »

Properly using searchView widget with AppCompat | Android Beginners

In this article we will learn using the searchView widget using V7 support library and resolving the most common errors while using the searchView widget.Most common and confusing error that I think people face is- 1.NullPointer Error in searchView We will get into it later but first let us look at the things we need …

Properly using searchView widget with AppCompat | Android Beginners Read More »

Fix BaseGameUtils cannot be Resolved Error, Android Studio

BaseGameUtils cannot be Resolved Error occurs due to mismatch in your app’s Build tools version and BaseGameUtils project’s build tools version. It can be easily fixed. There are other ways to do this I am going with this one here-First of all copy the whole BaseGameUtils folder from the original location to the libs folder …

Fix BaseGameUtils cannot be Resolved Error, Android Studio Read More »

$_POST array empty? Using JSON with $_POST.

Despite its name, the $_POST array won’t always contain your POST data and can be easily found empty.It’s because PHP only parses a POST payload automatically when it has a content type of application/x-www-form urlencoded or multipart/form-data.let’s take an example. Assume that we make a server request with a jQuery.ajax() call as follows: $.ajax({    url: …

$_POST array empty? Using JSON with $_POST. Read More »