Homebrew MySql Start Issue

Homebrew MySql Start Issue

If you ended up sudden mysql not starting on your mac machine. Most likely this is due to unintentional mysql upgrade during homebrew update. Reverting to previous mysql version quickly fix issue. If you wish to try this make sure to take backup of mysql data folder first. Below are…continue reading →
Laravel 5.2 Token Mismatch Error Fix

Laravel 5.2 Token Mismatch Error Fix

Lots of people talking about this error. After investing hours I finally reached at solution. Actual solution is describing here at StackOverflow. Stackoverflow is always helpful when we stuck somewhere. Here are some of issue: The possible reason was due to hidden iframe injection by browser add-ons. However I could…continue reading →
How to Find Fonts Used in PSD File

How to Find Fonts Used in PSD File

This is the common problem with developer who usually convert PSD file to HTML. Photoshop display an ugly warning message about the font missing every time I open PSD design file. Sometimes large number of fonts missing in PSD file and sometime few only. It is hard to click on…continue reading →
How To Retrieve GET/POST Variable In Joomla

How To Retrieve GET/POST Variable In Joomla

Joomla uses getVar method of JRequest class to retrieve GET/POST variable value. In Joomla 1.7 and above version JRequest class has been deprecated and JInput class used instead. See following syntex to use with Joomla 1.0, 1.5 and above. Joomla 1.0 $cid = mosGetParam($_REQUEST, 'cid', array()); Joomla 1.5 $cid =…continue reading →
How to Fix Issues With Viewing WP HTML Sitemap

How to Fix Issues With Viewing WP HTML Sitemap

While installing wp-html-sitemap plugin today, after setting up everything I saw that the sitemap page returned shortcode [wp_html_sitemap]. Googling did not worked, even support forum doesn't have any resolution on this issue. So I decided to debug the issue with plugin myself since debugging becomes tough for developers if they can't…continue reading →