September 14, 2010
Posted by: Joy : Category:
Web Development

As you can see, the default wordpress search url is not
SEO friendly, it looks like “http://yourdomain.com/?s=search-term”. You can try to search for a keyword on most web/blog using wordpress platform, it will take you to the result page with an unfriendly search url as i said above.
Try to search any keywords using the search form on the right side above this site, for example : "facebook application"
the result page will be :
http://crazydavinci.net/search/%2522facebook+application%2522
Notice that the request uri is not /?s= anymore, it’s now changed into /search/%2522facebook+application%2522 , this is absolutely much better for search engine to read.
Read more…
Incoming search terms:
August 06, 2010
Posted by: Joy : Category:
Web Development

PHPMailer is a PHP email transport class featuring file attachments, SMTP servers, CCs, BCCs, HTML messages, word wrap, and more. we can use it for sending email via sendmail, PHP mail(), QMail, or with SMTP. You can read more about it on their official website
here…. With this class, i tried to make another simple wp plugin called
WP PHPMailer contact form. This plugin will create a simple contact form for your wordpress powered blog. captcha code is also added to the form to prevent spamming.
Read more…
July 06, 2009
Posted by: Joy : Category:
Web Development
What is
referrer? based on wiki’s article, the referrer, or HTTP referrer — also known by the common misspelling referer that occurs as an HTTP header — identifies, from the point of view of an internet webpage or resource, the address of the webpage of the resource which links to it. By checking the referrer, the new page can see where the request came from. Referrer logging is used to allow websites and web servers to identify where people are visiting them from, for promotional or security purposes.
Read more…