<?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>WP Marketing &#187; Wordpress</title>
	<atom:link href="http://wpmarketing.org/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpmarketing.org</link>
	<description>Wordpress for Internet and Affiliate Marketing</description>
	<lastBuildDate>Fri, 24 Jun 2011 02:18:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Speed up WordPress under Hostgator shared account</title>
		<link>http://wpmarketing.org/2011/06/speed-up-wordpress-under-hostgator-shared-account/</link>
		<comments>http://wpmarketing.org/2011/06/speed-up-wordpress-under-hostgator-shared-account/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 01:54:00 +0000</pubDate>
		<dc:creator>HanaDaddy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[hostgator]]></category>
		<category><![CDATA[opcode]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[timeout]]></category>

		<guid isPermaLink="false">http://wpmarketing.org/?p=480</guid>
		<description><![CDATA[Recently I was looking to enhance the speed of my baby croc account at the Hostgator. I have no doubt that the Hostgator is the best hosting service provider with the best customer service. That is true. However, my baby croc account became so slow with the growing additional addon domains. You can host more [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was looking to enhance the speed of my baby croc account at the<br />
<a href="http://www.jdoqocy.com/q570shqnhp48ADD797465965D66" target="_top">Hostgator</a>.  I have no doubt that the Hostgator is the best hosting service provider with the best customer service. That is true. However, my baby croc account became so slow with the growing additional addon domains. You can host more unlimited domains on a single baby croc account.</p>
<p>Let me talk about what you can do first with the Baby croc shared hosting account.</p>
<ul>
<li>Unlimited disk space : my current disk space usage is about 8 GB</li>
<li>Unlimite email account : I do not have many email accounts, because it&#8217;s headache to maintain multiples email accounts. I would rather recommand to use Google App service </li>
<li>Unlimited bandwith : Current monthly transfer records shows that I used over 16GB </li>
<li>You can add unlimited addon domains meaning that you can add additional domain with wordpress to the same account without extra charges.</li>
<li>You can maintain DNS services for your domain.</li>
<li>CPanel, SSH access </li>
</ul>
<div style='float:left'> <a href="http://www.kqzyfj.com/8j98xdmjdl04699353021965222" target="_top" onmouseover="window.status='http://www.hostgator.com';return true;" onmouseout="window.status=' ';return true;"><img src="http://www.awltovhc.com/55108o26v0zKOQTTNPNKMLTQPMMM" alt="" border="0"/></a></div>
<p>It&#8217;s so attractive with unlimited disk space, bandwidth, addon domains, and it&#8217;s so cheap! It&#8217;s only about 7 dollars per month. What more anybody would want form a hosting service? </p>
<p>The baby croc or shared hostings is basically that you are sharing the server with other people. It is not clear how many people are sharing the server together, but it is clear that there are some limitations on what you can do.</p>
<p>Here are some the limitations </p>
<p><b>1. The maximum PHP memory size is 64 M per execution.</b><br />
64MB memory is still amazing, but you can not allow more than that. When you enable &#8216;php.ini quick config&#8217; in the CPanel, the PHP will read in the php.ini file in your home directory. You can actually edit the file and set &#8216;memory_limit&#8217; to more than 64M, but in fact memory limit error will occur if more than 64M is used.</p>
<p><b>2. The maximum number of simultaneous processes are 25.</b><br />
This is the biggest problem that I am experiencing. If the simultaneous process goes over 25, the web request will result 500 Internal Server Error. If you&#8217;re WordPress site is slow and have many simultaneous visitors, many of them will see the 500 Internal server error. I am having problems with one of my WordPress site which has some plugins utilizing curl functions. When the remote site is unreachable, the curl function is basically waiting for the reply and does not timeout automatically. So this process will idle and eats up available processes slots. And eventually my visitors will soon see 500 error pages when maximum available processes are all used up. You have to login to your CPanel and manually kill the idling processes.</p>
<p>One way to solve is to define the Conneciton timeout setting for curl function.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$session</span><span style="color: #339933;">,</span> CURLOPT_CONNECTTIMEOUT<span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//10 seconds time out</span></pre></div></div>

<div style='float:left'>
<a href="http://www.jdoqocy.com/r470zw41w3JNPSSMOMJLKSPOLMT" target="_top" onmouseover="window.status='http://www.hostgator.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/rn68tkocig157AA464132A7634B" alt="" border="0"/></a>
</div>
<p><b>3. Does APC work with Shared Hosting?</b><br />
For security reason, the suPHP is used. And that is fine, but the real problem is that any kind of PHP opcode cache solution will not work including APC. I have searched everywhere to find the solution to implement APC or any similar solution to speed up the PHP processing, but I found that it is not possible under suPHP. APC or opcode cache solution stores binary opcode data in the memory space to speed up the next processing of the PHP resource. However, under suPHP this is meaningless , because each PHP processes are separate processes and won&#8217;t be recognized. </p>
<p>By default the php.ini does not come with apc.so file , but I was actually able to install apc.so file and I succeeded to show APC in the phpinfo() result page. And ran some benchmarking software to compare the speed with and without apc.so library enabled. But basically there was no difference in the processing speed.  (If you are interested in trying this yourself, let me know)</p>
<p><b>4. FastCGI can be activated easily. </b><br />
FastCGI is well known for enhancing PHP processing speeds by running number of persistent processes to handle the requests all the time. You can activate FastCGI by adding below line into your .htaccess file in the document root directory.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">AddHandler fcgid-script .php</pre></div></div>

<p>However, I do not recommend you to activate this unless you are on the VPS or dedicated server. On the shared hosting account, you can have only upto maximum 25 processes. With FastCGI enabled, those FastCGI php processes will take available slots and you have much less simultaneous process slots. Also your website eventually becomes unstable and you would soon see 500 Internal Server Error message.</p>
<p>So I have spent some time to find a way to speed up my WordPress sites , but all the well known methods were all failed.</p>
<p>However, the best method for me was to use &#8216;W3 Total Cache&#8217; plugin . It is little bit confusing when you first try to set the settings with all the options. But  I only recommend to use Page Cache. Database cache will create so may files in the disk which will increase the number of inodes. (There is limit on the number of inodes you can create under Hostgator Shared account) But the result is amazing! </p>
<p>If you know a good tip on speeding up PHP process under Shared hosting account, let me know!</p>
<p>Thank you for visiting <a href='http://wpmarketing.org'>wpmarking.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpmarketing.org/2011/06/speed-up-wordpress-under-hostgator-shared-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing High Quality WordPress Themes &#8211; Absolutely Free!</title>
		<link>http://wpmarketing.org/2011/03/amazing-high-quality-wordpress-themes-absolutely-free/</link>
		<comments>http://wpmarketing.org/2011/03/amazing-high-quality-wordpress-themes-absolutely-free/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 05:36:04 +0000</pubDate>
		<dc:creator>HanaDaddy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[high quality]]></category>

		<guid isPermaLink="false">http://wpmarketing.org/?p=466</guid>
		<description><![CDATA[Hello everyone, I was searching for free WordPress themes for my next project. And I started from WordPress.org&#8217;s Free Theme Directory. But eventually disappointed at the quality of the their free themes. I mean they are OK, but not good enough in terms of the qualities even the popular ones. So I have spent some [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, I was searching for free WordPress themes for my next project. And I started from <a href='http://wordpress.org/extend/themes/'>WordPress.org&#8217;s Free Theme Directory</a>. But eventually disappointed at the quality of the their free themes. I mean they are OK, but not good enough in terms of the qualities even the popular ones. So I have spent some time checking out the Google results for the &#8220;wordpress themes&#8221; keyword one by one. </p>
<p><strong>And found these gems. High quality wordpress themes which are absolutely free.</strong></p>
<p>First, check out these goodies from popular &#8220;For Purchase&#8221; themes provider &#8216;woothemes&#8217;. They have some free themes which are nice. Actually these free themes have been available for some time now, but they still look good. Just remember to select &#8220;Free&#8221; from the selection box. So you can browse only the free themes.<a href="http://www.woothemes.com/themes/free/">http://www.woothemes.com/themes/free/</a></p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2011/03/woothemes.jpg"><img src="http://wpmarketing.org/wp-content/uploads/2011/03/woothemes-300x212.jpg" alt="woothemes" title="woothemes" width="300" height="212" class="aligncenter size-medium wp-image-469" /></a></p>
<p>Now here is another great site that provides High quality wordpress themes. There are 11 themes right now but it seems the collection is growing as time goes by. Their themes are all WP 3.0 compatible , supporting menu management. And they are absolutely free!  I checked out all the themes and loved them all. I really appreciate site5.com for sharing the beautiful themes with all of the Internet users. Cheers to site5!<br />
 <a href="http://www.site5.com/wordpress-themes/">http://www.site5.com/wordpress-themes/</a><br />
<a href="http://wpmarketing.org/wp-content/uploads/2011/03/site5.jpg"><img src="http://wpmarketing.org/wp-content/uploads/2011/03/site5-300x242.jpg" alt="site5" title="site5" width="300" height="242" class="aligncenter size-medium wp-image-468" /></a></p>
<p>Please share with us if you know any high quality WordPress theme sites. Thank you.</p>
<p>Updated: Actually you can find a lot more High quality free wordpress themes by googling &#8220;free high quality wordpress themes&#8221;. Here are some of the results. It&#8217;s surprising that there are so many high quality themes. </p>
<ul>
<li><a href="http://www.smashingmagazine.com/2010/08/19/100-free-high-quality-wordpress-themes-for-2010/">http://www.smashingmagazine.com/2010/08/19/100-free-high-quality-wordpress-themes-for-2010/</a></li>
<li><a href="http://artatm.com/2010/10/45-beautiful-free-high-quality-wordpress-themes/">http://artatm.com/2010/10/45-beautiful-free-high-quality-wordpress-themes/</a></li>
<li><a href="http://www.instantshift.com/2010/02/19/60-latest-high-quality-free-wordpress-themes/">http://www.instantshift.com/2010/02/19/60-latest-high-quality-free-wordpress-themes/</a></li>
<li><a href="http://www.wpzoom.com/wordpress-themes-sets/50-free-wordpress-themes-for-personal-blogs-of-high-quality/">http://www.wpzoom.com/wordpress-themes-sets/50-free-wordpress-themes-for-personal-blogs-of-high-quality/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wpmarketing.org/2011/03/amazing-high-quality-wordpress-themes-absolutely-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 WordPress Plug-in for Internet Marketing &#8211; Google XML Sitemaps</title>
		<link>http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-google-xml-sitemaps/</link>
		<comments>http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-google-xml-sitemaps/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 18:03:04 +0000</pubDate>
		<dc:creator>HanaDaddy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[top 5]]></category>
		<category><![CDATA[webmaster tools]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-google-xml-sitemaps/</guid>
		<description><![CDATA[Are you familiar with Google Webmaster Tool? If you are not, please take time to register Google Webmaster Tool first. Why ? Because it’s the valuable tool that will show you how Google crawls and indexes your site. By simply registering your domain, you can notify Google to start indexing your new website. You can [...]]]></description>
			<content:encoded><![CDATA[<p>Are you familiar with <a href="http://www.google.com/webmasters" target="_blank">Google Webmaster Tool</a>? If you are not, please take time to register Google Webmaster Tool first. Why ? Because it’s the valuable tool that will show you how Google crawls and indexes your site. By simply registering your domain, you can notify Google to start indexing your new website. You can maintain multiple websites as many as you want. It’s free. Also, It will show you the errors occurred while crawling, so you can easily find out why your site is not being indexed.</p>
<p>Now before you submit your website, it is important to generate sitemap. The <strong><a href="http://sitemaps.org/protocol.php" target="_blank">Sitemaps protocol</a></strong> allows a webmaster to inform search engines (not only Google) about URLs on a website that are available for crawling. It is made of XML file listing all the files in your website indicating their importance (priority) and  change frequency.</p>
<p>Here is a sample Sitemap XML file.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;UTF-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;urlset</span> <span style="color: #000066;">xmlns:xsi</span>=<span style="color: #ff0000;">&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> <span style="color: #000066;">xsi:schemaLocation</span>=<span style="color: #ff0000;">&quot;http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd&quot;</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;">&quot;http://www.sitemaps.org/schemas/sitemap/0.9&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://wpmarketing.org/<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2009-10-13T12:28:17+00:00<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>daily<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>1.0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://wpmarketing.org/privacy-policy/<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2009-10-14T04:40:51+00:00<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>weekly<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0.6<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-all-in-one-seo-pack/<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2009-10-13T12:28:17+00:00<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>monthly<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0.4<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://wpmarketing.org/2009/08/fighting-adblock/<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2009-10-13T04:58:18+00:00<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>monthly<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0.2<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
        <span style="color: #808080; font-style: italic;">&lt;!-- cutting off . It's too long to show here --&gt;</span>
&nbsp;
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://wpmarketing.org/about/<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/loc<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>2009-08-05T12:08:20+00:00<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/lastmod<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>weekly<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/changefreq<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0.6<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/priority<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/url<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/urlset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Basically, it is not that difficult to create the file, but tedious and lots of labor may be involved if done by hand manually. Especially for the blog site with frequent article posting, you will need a plug-in for that which would update the Sitemap automatically. So here is <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemaps</a> plug-in.</p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemapoption1.jpg"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="xml-sitemap-option1" src="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemapoption1_thumb.jpg" border="0" alt="xml-sitemap-option1" width="366" height="307" /></a></p>
<p>Basically his plug-in will create a XML-Sitemap of your WordPress blog. It will include all the WordPress pages and posts and even external pages that you defined. The sitemap is automatically updated whenever you modify any page or post, so it’s just convenient. It also notifies Google, Bing, Yahoo, and Ask.com automatically. You can’t ask for more.</p>
<p>It works pretty well right after the activation, but it is possible that you may need to create a file named sitemap.xml and/or sitemap.xml.gz in your WordPress root path and make them writable by webserver (If you are using Hosting providers with up-to-date system, you wouldn’t have problem).  And the default settings are good enough so you should not do anything else. But if you want to rebuild the sitemap, click on the ‘rebuild the sitemap manually’ link marked with Red box in the above image.</p>
<p>By default, Google XML sitemaps is automatically calculate the priority of each posts using the comment count of the posts. If you want to custom define the priority,  you can select ‘Do not use automatic priority calculation’ option in the &#8216;Post Priority’ group box.</p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemapoption2.jpg"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="xml-sitemap-option2" src="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemapoption2_thumb.jpg" border="0" alt="xml-sitemap-option2" width="366" height="164" /></a></p>
<p>Then you can use Priorities group box to specify custom priorities.</p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemapoption3.jpg"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="xml-sitemap-option3" src="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemapoption3_thumb.jpg" border="0" alt="xml-sitemap-option3" width="366" height="269" /></a></p>
<p>You can easily check the sitemap by adding ‘sitemap.xml’ at the end of your WordPress URL. For example , <a href="http://wpmarketing.org/sitemap.xml">http://wpmarketing.org/sitemap.xml</a> . Here is the output.</p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemap.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="xml-sitemap" src="http://wpmarketing.org/wp-content/uploads/2009/10/xmlsitemap_thumb.jpg" border="0" alt="xml-sitemap" width="366" height="249" /></a></p>
<p>Now that you have the sitemap ready,  you can go to your <a href="http://www.google.com/webmasters/start" target="_blank">Google Webmaster Tool</a> account and add your sitemap.</p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2009/10/googlewebmastersitemap.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="google-webmaster-sitemap" src="http://wpmarketing.org/wp-content/uploads/2009/10/googlewebmastersitemap_thumb.jpg" border="0" alt="google-webmaster-sitemap" width="366" height="184" /></a></p>
<p>One extra feature would be nice &#8211; To be able to define priority per post and page. I hope the author is planning to add this feature soon.</p>
<p>Next plug-in will be about Plug-in for Google Analytics. Google Analytics is a free web statistics application provided Google.</p>
<p>Thank you for visiting <a href="http://wpmarketing.org">wpmarketing.org</a></p>
<p>* Google XML Sitemaps Website : <a title="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/</a></p>
<p>* References: List of other Sitemap generator tools (Not just for WordPress): <a title="http://code.google.com/p/sitemap-generators/wiki/SitemapGenerators" href="http://code.google.com/p/sitemap-generators/wiki/SitemapGenerators">http://code.google.com/p/sitemap-generators/wiki/SitemapGenerators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-google-xml-sitemaps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top 5 WordPress Plug-in for Internet Marketing &#8211; All in One SEO Pack</title>
		<link>http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-all-in-one-seo-pack/</link>
		<comments>http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-all-in-one-seo-pack/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 04:51:41 +0000</pubDate>
		<dc:creator>HanaDaddy</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[all in one seo]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[top 5]]></category>

		<guid isPermaLink="false">http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-all-in-one-seo-pack/</guid>
		<description><![CDATA[Have you wondering why your blog’s traffic does not increase at all even if you spend time and posted quality articles? If you are trying to start WordPress blog, you absolutely need to have below plug-ins installed before starting Internet Marketing. So you do not waste any of your valuable time. 1. All in One [...]]]></description>
			<content:encoded><![CDATA[<p>Have you wondering why your blog’s traffic does not increase at all even if you spend time and posted quality articles? If you are trying to start WordPress blog, you absolutely need to have below plug-ins installed before starting Internet Marketing. So you do not waste any of your valuable time. </p>
<p>1. <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/"><strong>All in One SEO Pack</strong></a> : SEO is important. It’s the most important part of the website maintenance. and the most difficult. Main SEO tasks consist of managing title tag, and keyword&#160; and description meta tag. Especially I think title tag and description meta tag are important.&#160; ‘All in One SEO Pack’ plug-in make it very easy to maintain out of the box. You can define title , keyword, and description not only for your blog but for every articles using the article’s content. You can specifically define them manually or the plug-in will automatically generate them using tags and categories.&#160; This is the most popular plug-in for SEO. </p>
<p>Once activated you will need to update the settings in the ‘All in One SEO’ sub menu under Settings. You will need to select enable and fill out the Home Title, Description, and Keywords.&#160; For the other options, you can just use the default settings. </p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2009/10/image6.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://wpmarketing.org/wp-content/uploads/2009/10/image_thumb5.png" width="406" height="387" /></a></p>
<p>&#160;</p>
<p>I think more important feature is that you can define individual settings per post. Without this feature, a WordPress blog will have the same keyword and descriptions throughout all the sub pages. That’s really terrible for the SEO. </p>
<p><a href="http://wpmarketing.org/wp-content/uploads/2009/10/image7.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://wpmarketing.org/wp-content/uploads/2009/10/image_thumb6.png" width="406" height="181" /></a> </p>
<p>There are other numerous SEO plug-ins in the WordPress website. ‘<a href="http://wordpress.org/extend/plugins/headspace2/">Headspace</a>’ is another popular SEO plugin-in, but it’s a little bit more complicated than ‘All in One SEO’.&#160; </p>
<p>I highly recommend ‘All in One SEO’ and you will see the results right away if your website has not been SEO optimized before. I had an experience that the traffic was increased about 20% after the plug-in installation. Be patient, the traffic increase was started about a week later.</p>
<p>If you know any other good SEO plug-in, let me know.</p>
<p>Next plug-in is about Google Analytics. </p>
<p>Thank you for visiting <a href="http://wpmarketing.org">wpmarketing.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmarketing.org/2009/10/top-5-wordpress-plug-in-for-internet-marketing-all-in-one-seo-pack/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hana Code Insert v2.2</title>
		<link>http://wpmarketing.org/2009/10/hana-code-insert-v2-2/</link>
		<comments>http://wpmarketing.org/2009/10/hana-code-insert-v2-2/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 18:53:41 +0000</pubDate>
		<dc:creator>HanaDaddy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Hana Code Insert]]></category>
		<category><![CDATA[PHP evaluation]]></category>
		<category><![CDATA[shotcode]]></category>

		<guid isPermaLink="false">http://wpmarketing.org/?p=299</guid>
		<description><![CDATA[v2.2 (10/04/2009) : 1. PHP code content evaluation Some modification on PHP evaluation that you can use &#60;?php and ?&#62; within the entry content for PHP evaluation. So, in the previous version, if you wanted PHP code output, you could not use &#60;?php and ?&#62;. But now you can use them inside the entry item. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>v2.2 (10/04/2009)</strong> : </p>
<p><strong>1. PHP code content evaluation</strong><br />
Some modification on PHP evaluation that you can use <code>&lt;?php</code> and <code>?&gt;</code> within the entry content for PHP evaluation. </p>
<p>So, in the previous version, if you wanted PHP code output, you could not use <code>&lt;?php</code> and <code>?&gt;</code>. But now you can use them inside the entry item.</p>
<p>Previously you could only define PHP codes only.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;&lt;div style='border:1px dotted red; padding: 5px;'&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">print</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;m/d/Y H:i:s&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>But now, below code will work too.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div style='border:1px dotted red; padding: 5px;'&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">print</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;m/d/Y H:i:s&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div&gt;</pre></div></div>

<p><img src="http://wpmarketing.org/wp-content/uploads/2009/10/entry_content.jpg" alt="entry_content" title="entry_content" width="558" height="146" class="aligncenter size-full wp-image-307" /></p>
<p><strong>2. Custom ShortCode</strong><br />
Also extra feature for custom short code is added. You can define your own custom short code prefix and post fix. So you don&#8217;t have to use <code>&#91;hana-code-insert]</code> shortcode any more.</p>
<p>If defined, custom short code format can be used instead of <code>&#91;hana-code-insert name='Entry Name' /]</code>. For example, if you define <code>{{</code> for start indicator, <code>}}</code> for end indicator, you can use <code>{{Entry Name}}</code>. But beware, your new shortcode format may conflict with other plugins and cause one or more plugins to fail.<br />
<span id="more-299"></span><br />
There are some restrictions. <code>^</code> and <code>\</code> characters are not allowed. And start and end indicators should not be used part of entry name. HTML comment tag is a good candidate for the customs shortcodes indicators. (Start indicator <code>&lt;!--</code> , End indicator : <code>--&gt;</code>) In this way, even if the Hana Code Insert is disabled, these shortcodes will not show this way.</p>
<p>Hana Code Insert Admin Setting Screen.<br />
<img src="http://wpmarketing.org/wp-content/uploads/2009/10/shortcode_setting.jpg" alt="shortcode_setting" title="shortcode_setting" width="561" height="186" class="aligncenter size-full wp-image-313" /></p>
<p>Some of the tested custom Short Codes in a post.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">===================
[[testing123]]
===================
~~testing123~~
===================
{{testing123}}
===================
This time it uses html comment.
&lt;!-- testing123 --&gt;
===================
&nbsp;
[ hana-code-insert name='testing123' /]</pre></div></div>

<p>Below is the output. Note that <code>&#91;hana-code-insert]</code> always works regardless of whether using customs shortcode or not.<br />
<img src="http://wpmarketing.org/wp-content/uploads/2009/10/shortcode_testing2.jpg" alt="shortcode_testing2" title="shortcode_testing2" width="457" height="355" class="aligncenter size-full wp-image-315" /></p>
<p>I am planning to implement Text Widget Support and enhancement in the Admin settings screen in the next version. (Additional description to recognize code snippet better, Search Fuction, etc..)</p>
<p>Enjoy! Let me know if you experience any problem.</p>
<div style='font-size:1.6em'><a href='http://wpmarketing.org/forum/forum/wp-plugin-hana-code-insert'>Hana Code Insert Forum</a></div>
]]></content:encoded>
			<wfw:commentRss>http://wpmarketing.org/2009/10/hana-code-insert-v2-2/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/

Page Caching using disk (enhanced)

Served from: wpmarketing.org @ 2012-02-04 18:11:00 -->
