<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Singapore SEO &#38; Search Marketing &#187; Blogging</title> <atom:link href="http://shihengcheong.com/blog/category/blogging/feed/" rel="self" type="application/rss+xml" /><link>http://shihengcheong.com/blog</link> <description>Singapore SEO Specialist and Search Marketing Consultant based in Singapore</description> <lastBuildDate>Thu, 02 Feb 2012 13:28:39 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Microblogging with WordPress and Prologue</title><link>http://shihengcheong.com/blog/2008/02/microblogging-with-wordpress-and-prologue/</link> <comments>http://shihengcheong.com/blog/2008/02/microblogging-with-wordpress-and-prologue/#comments</comments> <pubDate>Thu, 21 Feb 2008 10:36:29 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Microblogging]]></category> <category><![CDATA[Prologue]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Wordpress MU]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2008/02/microblogging-with-wordpress-and-prologue/</guid> <description><![CDATA[Using the Prologue theme with WordPress and you&#8217;ll get a Twitter lookalike. WordPress/Prologue combination is really a very powerful microblogging platform. It is like having a Twitter blog with totally full control, customization plus the advantage of your favorite plugins. In fact, I have it installed on a WordPress MU site &#8211; wassup.myblog.sg. It has [...]]]></description> <content:encoded><![CDATA[<p></p><p><img class="alignright" src='http://shihengcheong.com/blog/wp-content/uploads/2008/02/wassupmyblogsg.jpg' alt='Microblogging with WordPress and Prologue' />Using the Prologue theme with WordPress and you&#8217;ll get a Twitter lookalike. WordPress/Prologue combination is really a very powerful <strong>microblogging</strong> platform.</p><p>It is like having a Twitter blog with totally full control, customization plus the advantage of your favorite plugins.</p><p>In fact, I have it installed on a WordPress MU site &#8211; <a href="http://wassup.myblog.sg">wassup.myblog.sg</a>.</p><p><span id="more-178"></span>It has been 4 days since I started playing with microblogging. And I have <em>hacked the WordPress MU</em> and <em>tweaked the Proloque template</em> extensively to get it work the way I want it.</p><p>The good thing is I have been making several posts a day at my new Twitter-like microblog. Because the post is generally short, just a few sentences, I tend to write about anything and everything. I think you hear about my ranting more often at <a href="http://wassup.myblog.sg">my new micro-blog</a>.</p><p>Keeping tracking of my learning experience with WordPress MU and customizing WordPress templates is definitely Twitter-worthy. That&#8217;s why I have made record number of posts since I started blogging 4 years ago.</p><p>If you are interested in WordPress and microblogging, visit <a rel="nofollow" href="http://wassup.myblog.sg">wassup.myblog.sg</a> and give me some comments.</p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2008/02/microblogging-with-wordpress-and-prologue/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>PHP Script to Target Ads to Your First Time Visitors</title><link>http://shihengcheong.com/blog/2007/04/php-script-to-target-ads-to-your-first-time-visitors/</link> <comments>http://shihengcheong.com/blog/2007/04/php-script-to-target-ads-to-your-first-time-visitors/#comments</comments> <pubDate>Thu, 26 Apr 2007 11:11:47 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Web Promotion]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/04/php-script-to-target-ads-to-your-first-time-visitors/</guid> <description><![CDATA[Wow, I thought this is a brilliant idea - "Display Advertising Without Annoying Your Regular Readers" by Dan of TheWrongAdvices.com. It is simple script. Basically, it checks from where is the visitor coming from. If it's from Google search, then the ad is displayed. For your blog's regular readers who come to your page via bookmark, direct keyboard entry or any other web pages, no ad will be displayed. [...]]]></description> <content:encoded><![CDATA[<p></p><p>Wow, I thought this is a brilliant idea &#8211; &#8220;<a href="http://thewrongadvices.com/2007/04/23/display-advertising-without-annoying-your-regular-readers/">Display Advertising Without Annoying Your Regular Readers</a>&#8221; by <a href="http://thewrongadvices.com/about/">Dan</a> of TheWrongAdvices.com. It is a simple script.</p><pre>&lt;?php
$referer = $_SERVER[â€™HTTP_REFERERâ€™];
$url = strtolower(urldecode($referer));
if ( eregi(â€www\.google((\.[a-z]{2,3}){1,2})[/\]searchâ€,$url) )
{ ?&gt;
INSERT YOUR AD CODE HERE
&lt;?php } ?&gt;</pre><p><span id="more-88"></span>Basically, it checks from where is the visitor coming from. If it&#8217;s from Google search, then the ad is displayed. For your blog&#8217;s regular readers who come to your page via bookmark, direct keyboard entry or any other web pages, no ad will be displayed.</p><p>Darn! Why didn&#8217;t I thought of it earlier. This will definitely please some of my readers. I am going to test this out now.</p><p>P.S. You page has to be a .php in order to use this script otherwise you&#8217;ll have to <a href="http://www.besthostratings.com/articles/php-in-html-files.html" title="AddHandler application/x-httpd-php .html">tweak your .htaccess to enable html to behave like .php</a>.</p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/04/php-script-to-target-ads-to-your-first-time-visitors/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free Adsense Templates for WordPress</title><link>http://shihengcheong.com/blog/2007/02/free-adsense-templates-for-wordpress/</link> <comments>http://shihengcheong.com/blog/2007/02/free-adsense-templates-for-wordpress/#comments</comments> <pubDate>Sat, 24 Feb 2007 05:38:52 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Adwords Adsense]]></category> <category><![CDATA[Blogging]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/02/free-adsense-templates-for-wordpress/</guid> <description><![CDATA[I am amazed with the quality of these free Adsense themes and templates which I stumbled upon this morning while looking for WordPress for business type of templates/themes. Here&#8217;s two of my favorite: I will be using them for a new content website on a niche that I&#8217;m interested to dabble in. And, one of [...]]]></description> <content:encoded><![CDATA[<p></p><p>I am amazed with the quality of these <em>free Adsense themes</em> and templates which I stumbled upon this morning while looking for <em>WordPress for business</em> type of templates/themes. Here&#8217;s two of my favorite:</p><div align="center"><img src="http://shihengcheong.com/blog/wp-content/uploads/2007/02/mw.jpg" alt="MW by Monetizing the Web" /> <img src="http://shihengcheong.com/blog/wp-content/uploads/2007/02/wpcolors.jpg" alt="WP Colors" /></div><p><span id="more-73"></span>I will be using them for a new content website on a niche that I&#8217;m interested to dabble in. And, one of the best way to monetize the traffic for such an informational website is to use Adsense.</p><p>You&#8217;ll see that the Google Ads are strategically positioned for high click-through. The WP Colors template even use the image ad to spruce up the overall aesthetics of the web page. With good content and a touch of SEO copywriting, I am sure such web pages will make you a good Adsense income.</p><h3>Using of These Free Templates to Make Money</h3><p>If you are going to build a new site, there is no need to put up the Google ad. Instead, you may want to replace the Leaderboard and the Rectangle ads with some interest pictures to attract more traffic while you build up your content.Typically, I will build at least 10,000 words of good solid content &#8211; these words serve as fodder for search engine spiders. And is critical to getting my pages getting listed in the SERP. The next step would be link building.</p><p>Visit forums, blogs and social networks to get people who are interested in your niche to visit your website and give you a backlinks. Once you&#8217;ve have a steady stream of visitors, you can then put up the Google Ads to monetize your targeted traffic.</p><blockquote><p><em>Remember</em>: <strong>Good content for niche is the key to your online success</strong>.</p></blockquote><h3>Warning: Adsense Templates Sold by Internet Marketers</h3><p>Not too long ago, Adsense templates was the hype and a very popular Adsense expert turned Internet marketer was selling such templates for hundreds of dollars. And many &#8220;Internet entrepreneurs&#8221; use these templates to build MFA(Made for Adsense) sites by web scraping article directory, blogs and news portals.</p><p>Do not waste your money and time to create more web trash. You are just making it more difficult for yourself to make money online.</p><p><div style="text-align:center"><script type="text/javascript"><!--
google_ad_client = "pub-3169393782861942";
/* shihengcheong 336x280, created 4/17/08 */
google_ad_slot = "9141492834";
google_ad_width = 336;
google_ad_height = 280;
//--></script><script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div></p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/02/free-adsense-templates-for-wordpress/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Fixing Canonical URLs Problem with WordPress URL Rewrite</title><link>http://shihengcheong.com/blog/2007/02/fixing-canonical-urls-with-wordpress-url-rewrite/</link> <comments>http://shihengcheong.com/blog/2007/02/fixing-canonical-urls-with-wordpress-url-rewrite/#comments</comments> <pubDate>Mon, 05 Feb 2007 04:29:12 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[SEO Workshop]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/02/fixing-canonical-urls-with-wordpress-url-rewrite/</guid> <description><![CDATA[I was having trouble with canonical URLs issue with this blog. When you entered http://shihengcheong.com/blog it would be redirected to http://www.shihengcheong.com.com/blog/ You see, I&#8217;ve been used mod_rewrite to redirect all URL with www- prefix to the non-www URL i.e. http://shihengcheong.com/ The mod-rewrite in the .htaccess at the root directory works fine. &#60;IfModule mod_rewrite.c&#62; RewriteEngine On [...]]]></description> <content:encoded><![CDATA[<p></p><p><img src="http://shihengcheong.com/blog/wp-content/uploads/2007/02/cannon.jpg" class="alignright" alt="Cannon - Photo by Thad Zajdowicz" />I was having trouble with canonical URLs issue with this blog. When you entered http://shihengcheong.com/blog it would be redirected to</p><p>http://<strong>www.</strong>shihengcheong.com.com/blog/</p><p>You see, I&#8217;ve been used mod_rewrite to redirect all URL with www- prefix to the non-www URL i.e.</p><p>http://shihengcheong.com/</p><p>The mod-rewrite in the .htaccess at the root directory works fine.<br /> <span id="more-65"></span></p><pre>
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^shihengcheong.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*)$ http://shihengcheong.com/$1 [L,R=301]
&lt;/IfModule&gt;</pre><p>Last month, I installed WordPress to the folder, /blog/, and I got stuck with the canonical URLs problem.</p><p>Here&#8217;s the problem. I guess people do not type the trailing slash when they enter the URL.</p><p>This is probably what most people will type:</p><p class="center"><strong>shihengcheong.com/blog</strong></p><p>So, for the past month, you&#8217;ve probably noticed that the displayed URL at your browser address bar was</p><p class="center">http://<strong>www.</strong>shihengcheong.com/blog/</p><p>and not the shorter version without the www.</p><p>I was not very happy with this www URL. I want the search engine robots to index my page as http://shihengcheong.com/blog/ and hide  away all other variations of URLs that will display the identical page.</p><p>I am no mod_rewrite and .htaccess expert. In fact, I simply copy what&#8217;s working and modify it according. The intricacies of mod_rewrite and web server programming is not my cup of tea.</p><h3>Modifications to WordPress URL Rewrite .htaccess</h3><p>Finally, I stumbled upon a snippet of sample .htaccess codes for some WordPress plugins yesterday. And I got an idea to solve my canonical URLs problem. Here&#8217;s how I resolved the <em>trailing slash problem</em>.</p><p>I added the following codes to the .htaccess created by WordPress:</p><pre>
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteCond %{HTTP_HOST} !^shihengcheong.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*)$ http://shihengcheong.com/blog/$1 [L,R=301]
&lt;/IfModule&gt;

# BEGIN WordPress
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
&lt;/IfModule&gt;&gt;
# END WordPress</pre><p>If you are new to canonical URLs problem , you may want to read <a href="http://www.mattcutts.com/blog/seo-advice-url-canonicalization/">Matt Cutts SEO Advice on URL Canonicalization</a>. And yes, Google might have fixed the problem but there are many more search engines out there which are not as smart.</p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/02/fixing-canonical-urls-with-wordpress-url-rewrite/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Practical Blog Marketing</title><link>http://shihengcheong.com/blog/2007/02/practical-blog-marketing/</link> <comments>http://shihengcheong.com/blog/2007/02/practical-blog-marketing/#comments</comments> <pubDate>Fri, 02 Feb 2007 08:42:44 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Workshop]]></category> <category><![CDATA[Online Marketing]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/02/practical-blog-marketing/</guid> <description><![CDATA[Come attend the <a href="http://www.practicalblogmarketing.com">Practical Blog Marketing course</a> and learn how you can engage your customers in giving you constructive comments to serve them better.]]></description> <content:encoded><![CDATA[<p></p><p>I mentioned in my earlier post, <a href="http://shihengcheong.com/blog/2007/01/top-search-ranking-for-blog/">Top Ranking for Blog</a>, about a <a href="http://www.practicalblogmarketing.com/" target="_new">blog marketing course</a>. The trainer of the workshop, Tan Kian Ann was featured in yesterday The New Paper. And here&#8217;s the report&#8230;</p><p><span id="more-64"></span><a href="http://shihengcheong.com/blog/wp-content/uploads/2007/01/new-paper-article.gif"><img src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/new-paper-article-thumb.gif" alt="Blog marketing - Blogopreneur" border="0" /></a></p><p>Maybe you ask, &#8220;Why need to learn to blog?&#8221; or &#8220;Isn&#8217;t blog marketing just like marketing a website?&#8221;</p><p>Blogging is not new. People started to write online journal since the end of last century. Ok, it not really a hundred years old but it definitely has been around for some years. Youngsters are the ones who started weblog(the older name for blog) at that time and it was about keeping an online diary and sharing it with your best friends.</p><p>You don&#8217;t have to learn how to keep an online diary. Anyway, keeping an online diary may not be what you want to do if you are thinking of marketing online.</p><p>You want to learn how to blog so that you can become popular for what you&#8217;ve written. Popular means you&#8217;ll have a big readership and each of your blog post is listed in the major search engines, news updates, Digg and has hundreds of other blogs linked to you verified by Technorati.</p><p><strong>Basically, you want recognition for your blog</strong>.</p><p>So you&#8217;ll need to know what&#8217;s professional blogging and how to market your blog so that you can influence how your readers going to spend their time and money!</p><h3>Will You Make Lots of Money After Learning How to Blog?</h3><p>Let&#8217;s put it this way, there are some professional bloggers that make a 5-figure monthly income from their blogs. And there are hundred of millions other bloggers who don&#8217;t make a single dime even if they have Google Ads plastered all over their splogs!</p><p>So, since you&#8217;re already blogging, you might as well make it properly and professional &#8211; get proper <em>blog marketing training</em>. And gain recognition for your blog.</p><p><a href="http://www.practicalblogmarketing.com/"><img src="http://shihengcheong.com/img/blogmarketing_ani.gif" class="centered" alt="Practical Blog Marketing" border="0" /></a></p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/02/practical-blog-marketing/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Top Search Ranking for Blog</title><link>http://shihengcheong.com/blog/2007/01/top-search-ranking-for-blog/</link> <comments>http://shihengcheong.com/blog/2007/01/top-search-ranking-for-blog/#comments</comments> <pubDate>Tue, 30 Jan 2007 06:42:05 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Workshop]]></category> <category><![CDATA[SEO Workshop]]></category> <category><![CDATA[Singapore SEO]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/01/top-search-ranking-for-blog/</guid> <description><![CDATA[I believe many people will love to see their blogs or blog posts being ranked top in the major search engines such as Google, Yahoo and Live(MSN) Search. And I thought I would prepare a 90-minute seminar to introduce working executives to SEO and Blogging with a catchy title&#8230; Getting Top Search Ranking for Your [...]]]></description> <content:encoded><![CDATA[<p></p><p><img class="alignleft" border="0" src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/blog_seo_number_1.jpg" alt="Number 1 Search Ranking for Blog - Track &#038; Field (photo by Kreon)" />I believe many people will love to see their blogs or blog posts being ranked top in the major search engines such as Google, Yahoo and Live(MSN) Search.</p><p>And I thought I would prepare a 90-minute seminar to introduce working executives to <em>SEO and Blogging</em> with a catchy title&#8230; <span id="more-62"></span></p><blockquote><p><strong>Getting Top Search Ranking for Your Blog</strong><br /> Let Your Customers Find &#038; Tell You What They Think About Your Service and Product</p></blockquote><p><img src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/top_search_ranking_blog.jpg" alt="Top Search Ranking for Blog" /></p><p>However, I know that there are already many articles written on the topic of <em>Search Engine Optimization for Blog</em> and <em>Top Search Engine Ranking for Blog</em>.</p><ol><li><a href="http://www.problogger.net/archives/2006/11/24/how-to-optimize-your-blog-for-search-engines/">How to Optimize Your Blog for Search Engines</a></li><li><a href="http://searchengineland.com/070109-141617.php">25 Tips To Optimize Your Blog For Readers &#038; Search Engines</a></li><li><a href="http://www.micropersuasion.com/2006/07/how_to_optimize.html">How to Optimize Your Blog</a></li><li><a href="http://www.folksonomy.org/2006/10/7_ways_to_optimize_your_blog/">7 Ways to Optimize Your Blog</a></li><li><a href="http://www.wired.com/wired/archive/14.08/howtoweb.html">How To: Optimize Your Web Site</a></li><li><a href="http://www.johntp.com/2006/05/04/how-to-optimize-your-blogs-search-engine-ranking/">How to Optimize your Blogâ€™s Search Engine Ranking</a></li><li><a href="http://theundersigned.net/2006/06/wordpress-and-seo/">WordPress and SEO</a></li></ol><p><img class="alignright" src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/seo_trophies.jpg" alt="Blog SEO Specialist - Trophies" />There are of course more than 7 articles available on the Internet, but these are the better ones that I&#8217;ve found. And I will learn from these great <em>Blog SEO Specialists</em> to hammer out my very own 90-minute seminar on <strong>How To Get Top Search Ranking For Your Blog</strong>.</p><blockquote><p><strong>[UPDATE Jan 31, 2007]</strong> I just discovered that there is a 1-day workshop on Blog Marketing. So I may as well not re-invent the wheel and direct working executives interested in <a href="http://www.blogopreneur.com/2006/12/29/corporate-blogging-versus-internet-marketing/">corporate blogging</a> to go check out:</p><ul><li style="padding-bottom:15px;"><a href="http://www.practicalblogmarketing.com"><strong>http://www.PracticalBlogMarketing.com</strong></a></li></ul></blockquote> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/01/top-search-ranking-for-blog/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Viral Blogging with MyBlogLog</title><link>http://shihengcheong.com/blog/2007/01/viral-blogging-with-mybloglog/</link> <comments>http://shihengcheong.com/blog/2007/01/viral-blogging-with-mybloglog/#comments</comments> <pubDate>Mon, 29 Jan 2007 02:18:14 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Social Networking]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/01/making-blogging-fun-mybloglog/</guid> <description><![CDATA[I found blogging so much more fun after I started using MyBlogLog. Now, whenever I&#8217;m online, I&#8217;ll login to find out who&#8217;d been to my blogs! Initially, the motivating factor for me to trade my name and email address is the free tracking service offered by MyBlogLog. And I have no idea how powerful MyBlogLog [...]]]></description> <content:encoded><![CDATA[<p></p><div class="alignleft" style="margin:0;padding:5px 10px 5px 0;"><script type="text/javascript" src="http://pub.mybloglog.com/comm2.php?mblID=2007010307274470&#038;c_width=218&#038;c_sn_opt=n&#038;c_rows=3&#038;c_img_size=f&#038;c_heading_text=Recent+Visitors+to+this+Blog&#038;c_color_heading_bg=333333&#038;c_color_heading=FFFFFF&#038;c_color_link_bg=333333&#038;c_color_link=005A94&#038;c_color_bottom_bg=333333"></script><noscript><img src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/viral_blogging_mybloglog.jpg" alt="Viral blogging and MyBlogLog" /></noscript></div><p>I found blogging so much more fun after I started using <a href="http://www.mybloglog.com/">MyBlogLog</a>. Now, whenever I&#8217;m online, I&#8217;ll login to find out who&#8217;d been to my blogs!</p><p>Initially, the motivating factor for me to trade my name and email address is the free tracking service offered by MyBlogLog. And I have no idea how powerful MyBlogLog can help me to grow my readership and traffic with its <strong>social networking</strong> model.</p><p>The traffic to my blog exploded and I have many more readers. I call this phenomenon, <strong>viral blogging</strong>.</p><h3>Exponential Growth in Traffic with Viral Blogging</h3><p>I started my membership on 3rd January, 2007. The traffic to my blog has since grown exponentially &#8211; from Alexa ranking 5,000,000 to 228,228(as of Jan 26, 2007). My blog communities have <a title="Shi Hengcheong's profile at MyBlogLog" href="http://www.mybloglog.com/buzz/members/shihengcheong/">16 Contacts and 7 Admirers</a>!</p><h3>Social Networking with MyBlogLog</h3><p>In less than a month, I am already addicted to MyBlogLog &#8211; not for it&#8217;s free tracking and statistics services but for it powerful social networking features. I&#8217;ve found many blogs in my area of interest: <strong>SEO and Search Marketing</strong>. I am connecting to people interested in SEO and search marketing, and many bloggers from Singapore.</p><blockquote><p>I think Singapore is becoming the <em>Blogging Nation</em>. My unofficial statistics rank Singapore first in the world  for the number of active bloggers per capita.</p></blockquote><p>Visit <a title="The MyBlogLog Blog " href="http://mybloglogb.typepad.com/">The MyBlogLog Blog</a> and get to know the great people behind this fantastic service and find out <a href="http://mybloglogb.typepad.com/my_weblog/2007/01/loads_of_new_my.html">loads of new MyBlogLog features</a>.</p><blockquote><p> [UPDATE Feb 2, 2007] Just discovered that Lee Oden of TopRankBlog.com got an <a href="http://www.toprankblog.com/2007/01/interview-with-mybloglog-ceo-scott-rafer/">interview with MyBlogLog CEO Scott Rafer</a>.</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/01/viral-blogging-with-mybloglog/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Google Pagerank Update &#8211; PR4 Now!</title><link>http://shihengcheong.com/blog/2007/01/google-ragerank-update-pr4-now/</link> <comments>http://shihengcheong.com/blog/2007/01/google-ragerank-update-pr4-now/#comments</comments> <pubDate>Thu, 25 Jan 2007 14:44:54 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Link Building]]></category> <category><![CDATA[Singapore SEO]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/01/google-ragerank-update-pr4-now/</guid> <description><![CDATA[This blog is now ranked PR4! That is, Google has pagerank&#8217;ed this blog from PR 0 to PR 4. Thank you, thank you&#8230; to all those who link to me. I appreciate your reading and citing of what I&#8217;m ranting writing here. I&#8217;ve noticed Google dancing over the past 10 days. A couple of my [...]]]></description> <content:encoded><![CDATA[<p></p><p><img title="Google Pagerank - PR4" alt="Google Pagerank - PR4" src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/google_pagerank.gif" /><br /> This blog is now ranked PR4! That is, Google has pagerank&#8217;ed this blog from PR 0 to PR 4. <img src='http://shihengcheong.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p>Thank you, thank you&#8230; to all those who link to me. I appreciate your reading and citing of what I&#8217;m <strike>ranting</strike> writing here.</p><p>I&#8217;ve noticed Google dancing over the past 10 days. A couple of my websites suffered a <em>drop in pagerank</em> &#8211; from PR4 to PR3. I think it&#8217;s because I&#8217;ve neglected them(for a long time, maybe more than 9 months) and have not been adding new content and implemented new <strong>link building</strong> campaign with them. So it&#8217;s sort of expected.</p><p>The good news is, for those websites that I actively SEO and build links, the pagerank have improved. I have a couple of web pages gained from PR4 to PR5. One point to note is that, these websites are focusing on Singapore-based traffic &#8211; in my own jargon, it&#8217;s <strong>Singapore SEO</strong>&#8216;ed!</p><p>However, <em>gaining higher pagerank</em> is one thing and actually gaining higher position in the search engine result is more important. Isn&#8217;t it?</p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/01/google-ragerank-update-pr4-now/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>WordPress 2.1 &#8211; Ella is here</title><link>http://shihengcheong.com/blog/2007/01/wordpress-21-ella-is-here/</link> <comments>http://shihengcheong.com/blog/2007/01/wordpress-21-ella-is-here/#comments</comments> <pubDate>Tue, 23 Jan 2007 04:31:44 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/01/wordpress-21-ella-is-here/</guid> <description><![CDATA[Before I could get the time to upgrade my WordPress 2.0.6 to 2.0.7, WordPress 2.1 (Ella) is here! So I want to know what&#8217;s in it for me to upgrade to the new version. When I read the features list, I am glad to know that&#8230; You can set any â€œpageâ€ to be the front [...]]]></description> <content:encoded><![CDATA[<p></p><p><img title="Wordpress 2.1 Ella" alt="Wordpress 2.1 Ella" class="alignright" src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/wordpress_2_1_ella.gif" />Before I could get the time to upgrade my WordPress 2.0.6 to 2.0.7, <a title="WordPress 2.1 Ella 2.1" href="http://wordpress.org/development/2007/01/ella-21/">WordPress 2.1 (Ella) is here</a>!</p><p>So I want to know what&#8217;s in it for me to upgrade to the new version. When I read the features list, I am glad to know that&#8230;</p><blockquote><p>You can set any â€œpageâ€ to be the front page of your site, and put the latest posts somewhere else, making it much easier to use WordPress as a content management system.</p></blockquote><p>I will definite install Ella 2.1 and try out the CMS features.</p><p>The other <em>important features</em> to me are:</p><p>The <strong>Autosave</strong>. I tend to lose my writing and have to resort to using a text editor to compose my post before copying it to WordPress and format it.</p><p>New version of <strong>Askimet</strong>. I believe the new version will catch more SPAM and honest readers will not be mistaken for making comment at this blog.</p><p>New, more <strong>efficient database</strong> code which translates to faster page loading when I add a post, update a post or displaying my blog on your browser!</p><p>However, I don&#8217;t quite understand this&#8230;</p><blockquote><p>New search engine privacy option allows you take you to indicate your blog shouldnâ€™t ping or be indexed by search engines like Google.</p></blockquote><p>Maybe you would like to comment on this and enlighten me what&#8217;s this &#8220;privacy option&#8221;.</p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/01/wordpress-21-ella-is-here/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress 2.0.7</title><link>http://shihengcheong.com/blog/2007/01/wordpress-207/</link> <comments>http://shihengcheong.com/blog/2007/01/wordpress-207/#comments</comments> <pubDate>Tue, 16 Jan 2007 00:40:01 +0000</pubDate> <dc:creator>Shi Heng Cheong</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Link Building]]></category> <category><![CDATA[Social Networking]]></category><guid isPermaLink="false">http://shihengcheong.com/blog/2007/01/wordpress-207/</guid> <description><![CDATA[Yesterday, less than 14 hours ago, I installed WordPress 2.0.6 to my domain Shi.SG and now they have WordPress 2.0.7. I guess I&#8217;ll have to upgrade to WordPress 2.0.7. It is uncommon to have a upgrade so soon unless there&#8217;s a really urgent need to do so. Right? I am going to work on WordPress [...]]]></description> <content:encoded><![CDATA[<p></p><p><img class="alignleft" alt="Wordpress 2.0.7" title="Wordpress 2.0.7" src="http://shihengcheong.com/blog/wp-content/uploads/2007/01/wordpress_lg.jpg" />Yesterday, less than 14 hours ago, I installed WordPress 2.0.6 to my domain <a title="Shi @ SG" href="http://shi.sg">Shi.SG</a> and now they have <a title="Worfdpress 2.0.7" href="http://wordpress.org/development/2007/01/wordpress-207/">WordPress 2.0.7</a>. I guess I&#8217;ll have to upgrade to WordPress 2.0.7. It is uncommon to have a upgrade so soon unless there&#8217;s a really urgent need to do so. Right?</p><p>I am going to work on WordPress as my preferred blogging platform. There are just too many benefits with WordPress for me to adopt this fantastic blog engine despite the hassle of installing and constant upgrading my website so very often.</p><p>And here&#8217;s just 2 of The Most Important Benefits&#8230;</p><h3>Search Engine Friendly</h3><p>WordPress is definitely more flexible for me to to SEO optimization. One of the biggest advantages is that you can use search engine friendly URLs e.g.<br /> <a title="Prediction for 2007" href="http://shihengcheong.com/blog/2007/01/predictions-for-2007/">http://shihengcheong.com/blog/2007/01/predictions-for-2007/</a><br /> which is preferred by the search engine rather than<br /> <a title="Not Search Engine Friendly URL" href="http://shihengcheong.com/blog/?p=49">http://shihengcheong.com/blog/?p=49</a></p><h3>Trackback</h3><p>One of the main reasons why this blog did so well, in terms of Alexa ranking, is because of the trackback feature. You see, when I quoted others&#8217; blog posts, WordPress can automatically create a comment at the post I quoted. And I am getting a lot more visitors to my blog because of these comments.</p><p>This is one of the most powerful way to promote your blog. I guess this is also part of <em>social media marketing</em>.</p> ]]></content:encoded> <wfw:commentRss>http://shihengcheong.com/blog/2007/01/wordpress-207/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using apc
Object Caching 657/726 objects using apc

Served from: shihengcheong.com @ 2012-02-04 13:50:43 -->
