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 →
What are Network Topologies

What are Network Topologies

A network is a logical extension of data communication system. In computer network, two or more computers are link together with the carrier and data communication devices for the purpose of data communication and resources sharing. The manner in which computer nodes are geometrically arranged and connected is known as…continue reading →
How to Disable 500 Internal Server Error on Godaddy Windows Hosting

How to Disable 500 Internal Server Error on Godaddy Windows Hosting

GoDaddy windows server by default show generic 500 Internal Server Error page instead of showing actual detailed error message. The default page prevent application developers from debugging web application because actual error message not visible. The detailed error message give detailed error description along with line number so developer can…continue reading →