Agile Project Management

Without any doubt, present day software developers are more and more inclined to choose the Agile Project Management methodology against the old traditional approach.  It’s an easy option because Agile is based on fast and continuous delivery of results, client gratification and it simplifies the integration of intercurrent changes by maintaining a constant communication line […]

WP Install Google Analytics Plugin

Event Tracking is a powerful feature in google analytics which lets you apply custom event tracking on any elements or part of your web page. For example, you can track the number of clicks on your logo, a number of clicks on your buy now button and so on. How to Install Google Analytics Tracking […]

Send HTML Emails Using wp_mail and SMTP in WordPress

WordPress has its own email function for sending emails, i.e. wp_mail(). With wp_mail, you can send email as easily as in general PHP function: mail(). The following is the syntax for sending an email with WordPress: wp_mail ( $to, $subject, $message, $headers, $attachments ); Where: $to (required) is the intended recipients. You can also specify […]

Enable Permalinks for WordPress Install using web.config on IIS Server

.htaccess won’t work on IIS Server so permalinks don’t work properly. For that, we need following steps to make it work. Step 1: Create a web.config file on the root folder of WordPress installation if it does not exist. Step 2: Use Paste following code <configuration> <system.webServer> <rewrite> <rules> <rule name=”wordpress” patternSyntax=”Wildcard”> <match url=”*” /> […]

Default Style Sheet for HTML Elements

Below is complete CSS of each element which can help you to understand the default behavior of elements when there are no CSS Rules applied on them. html, address, blockquote, body, dd, div, dl, dt, fieldset, form, frame, frameset, h1, h2, h3, h4, h5, h6, noframes, ol, p, ul, center, dir, hr, menu, pre { […]

Can’t create/write to file Error Code 13 XAMPP Error Solution

Sometimes on Mac, you might wonder when your PHPMyAdmin is giving the following error. #1 – Can’t create/write to file ‘/var/folders/_y/dsf4990dfdk23343kfl2k4ld/T/#sql1e2_1_0.MYI’ (Errcode: 13) You need to set the permission of my.cnf to 600 and to do, follow these steps. Open Terminal Navigate to the XAMPP config folder cd /Applications/XAMPP/xamppfiles/etc/ Set permissions of my.cnf to 600 […]