<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>Site Wisdom</title>
	
	<link>http://sitewisdom.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 22 Nov 2008 22:34:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/SiteWisdom" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">1870590</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Working On Your Local Machine, Tips and Tricks</title>
		<link>http://sitewisdom.com/working-local-machine-tips-and-tricks</link>
		<comments>http://sitewisdom.com/working-local-machine-tips-and-tricks#comments</comments>
		<pubDate>Mon, 01 Sep 2008 23:37:03 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Random Ramblings]]></category>

		<guid isPermaLink="false">http://sitewisdom.com/?p=133</guid>
		<description><![CDATA[When I start to build a site, I typically use a CMS. That means that I have to run a program called XAMPP so that I can run PHP and Mysql on my Windows XP computer. Probably nothing new to you advanced users out there. The process typically works very well and I can build [...]]]></description>
			<content:encoded><![CDATA[<p>When I start to build a site, I typically use a CMS. That means that I have to run a program called XAMPP so that I can run PHP and Mysql on my Windows XP computer. Probably nothing new to you advanced users out there. The process typically works very well and I can build a site on my local machine and then move it to my server when I&#8217;m ready. Over the years I&#8217;ve come up with a few tips and tricks that can make your life a lot easier. We&#8217;ll be using WordPress as an example.<br />
<span id="more-133"></span></p>
<ol>
<li>When you download WordPress you get a file called &#8220;wp-config-sample.php&#8221; and are told to rename it to &#8220;wp-config.php&#8221;. What I do is have one file called &#8220;wp-config.php&#8221; that contains my local database settings and one called &#8220;wp-configON.php&#8221; which contains my online database settings. So after you upload your files to your server, simply rename &#8220;wp-configON.php&#8221; to &#8220;wp-config.php&#8221;. Don&#8217;t upload the &#8220;wp-config.php&#8221; to your server because it has your local settings. Doing this will allow you to continue working on your local website while still making it easy to locate and change settings to the <strong>ON</strong> version of the file. This is a very simple tip but it can save you a lot of time, energy, and headaches.</li>
<li>If you have to change a core file, make a copy of it and add some text so you remember that it was changed. Example: In the last post we had to modify the &#8220;wp-comments-template.php&#8221; file which is a core WordPress file. If you forget that you modified that file and update WP, you will overwrite it, then you&#8217;ll have to try and remember what modifications you made. Instead, simply copy the file and give it a name such as &#8220;wp-comments-templateBACKUP.php&#8221;. Now if you forget about your changes and overwrite your original file, you&#8217;ll always have a backup available, it shouldn&#8217;t be overwritten when you upgrade.</li>
</ol>
<p>Well these are all the tips I have for now. Hopefully they save you a headache or two and allow you to focus more on your website and less worrying about important files.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/working-local-machine-tips-and-tricks/feed</wfw:commentRss>
		</item>
		<item>
		<title>WordPress with Multiple Comment Templates</title>
		<link>http://sitewisdom.com/wordpress-multiple-comment-templates</link>
		<comments>http://sitewisdom.com/wordpress-multiple-comment-templates#comments</comments>
		<pubDate>Thu, 21 Aug 2008 21:09:14 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Hack &amp; Extend]]></category>

		<guid isPermaLink="false">http://localhost/sitewisdom/?p=116</guid>
		<description><![CDATA[So let&#8217;s say that you want to have 2 different comment templates on your WordPress site, kind of like this site has, there&#8217;s 1 for regular comments and 1 for reviews.

So as you can see from the graphic, on this site we have 1 form for regular comments, shown on the left, and 1 form [...]]]></description>
			<content:encoded><![CDATA[<p>So let&#8217;s say that you want to have 2 different comment templates on your WordPress site, kind of like this site has, there&#8217;s 1 for regular comments and 1 for reviews.<br />
<span id="more-116"></span><br />
<div id="attachment_124" class="wp-caption alignnone" style="width: 510px"><img src="http://sitewisdom.com/wp-content/uploads/multiple-wordpress-comment-forms.png" alt="Multiple WP Comment Forms" title="multiple-wordpress-comment-forms" width="500" height="250" class="size-full wp-image-124" /></a><p class="wp-caption-text">Multiple WordPress Comment Forms</p></div></p>
<p>So as you can see from the graphic, on this site we have 1 form for regular comments, shown on the left, and 1 form for reviews, shown on the right.</p>
<p>Let&#8217;s go through the steps so you can see what has to be done to get this functionality on your WordPress website.</p>
<p>1. You need to make some changes to single.php to call the comment form template you want.<br />
<pre><code>
&lt;?php if ( in_category(&#039;12&#039;) || in_category(&#039;17&#039;) || in_category(&#039;37&#039;) || in_category(&#039;42&#039;) || in_category(&#039;50&#039;) || in_category(&#039;1&#039;) ) { ?&gt;
&lt;?php comments_template(); // Get comments.php and comment-template.php template ?&gt;
&lt;?php } else { ?&gt; 
&lt;?php reviews_template(); // Get reviews.php and comment-template.php template ?&gt;
&lt;?php } ?&gt;
</code></pre></p>
<p>So basically this says that if you&#8221;re looking in any of those specific categories in the first line, put the<br />
usual comments template, otherwise put the reviews template.</p>
<p>2. Copy comments.php as your new template, so reviews.php in this scenario.</p>
<p>3. Open up wp-includes/comment-template.php</p>
<p>Find the code that starts like this&#8230;.(around line 642 in WP 2.6)</p>
<p><code>function comments_template( $file = &#039;/comments.php&#039; ) {</code></p>
<p>And ends around line 670 like this&#8230;</p>
<p><pre><code> else
require( WP_CONTENT_DIR . &#039;/themes/default/comments.php&#039;);
}</code></pre></p>
<p>COPY that whole block of about 30 lines and paste it below<br />
that block so you have 2 exact copies of all that code.</p>
<p>Now in the 2nd block we just copied, change the first line to&#8230;</p>
<p><code>function reviews_template( $file = &#039;/reviews.php&#039; ) {</code></p>
<p>And change some lines near the end of the block to this&#8230;</p>
<p><pre><code>define(&#039;REVIEWS_TEMPLATE&#039;, true);
$include = apply_filters(&#039;reviews_template&#039;, TEMPLATEPATH . $file );</code></pre></p>
<p>Now you should have 2 separate comment templates that you can modify and tweak to your liking. You can also easily change the code in single.php so that one template or the other only shows up for a specific category or page. Here&#8217;s a link to the codex so you can learn more about that.</p>
<p><a href="http://codex.wordpress.org/Conditional_Tags">Conditional Tag information</a> at WordPress.org</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/wordpress-multiple-comment-templates/feed</wfw:commentRss>
		</item>
		<item>
		<title>This Blog Has a New Focus</title>
		<link>http://sitewisdom.com/this-blog-has-a-new-focus</link>
		<comments>http://sitewisdom.com/this-blog-has-a-new-focus#comments</comments>
		<pubDate>Mon, 11 Aug 2008 16:18:07 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Random Ramblings]]></category>

		<guid isPermaLink="false">http://localhost/sitewisdom/?p=110</guid>
		<description><![CDATA[I&#8217;ve been thinking a lot lately about what I enjoy doing and what this blogs main focus should be. I&#8217;ve come to the conclusion that this blog will be mostly about hacking, integrating, reviewing, and smashing CMS software. Let&#8217;s take a look at the categories and what their goals will be.


A Quick Look - Posts [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been thinking a lot lately about what I enjoy doing and what this blogs main focus should be. I&#8217;ve come to the conclusion that this blog will be mostly about hacking, integrating, reviewing, and smashing CMS software. Let&#8217;s take a look at the categories and what their goals will be.</p>
<p><span id="more-110"></span></p>
<ul>
<li>A Quick Look - Posts in this category will be a quick look at a CMS or doing something specific to a CMS. These posts will be shorter than usual and will be consise and to the point, not going too in-depth.</li>
<li>An In-Depth Look - Here we will really drill down and take an in-depth look at a CMS or a group of CMS&#8217;.</li>
<li>Hack and Extend - Plugins, addons, extensions, and hacking a CMS to the extreme.</li>
<li>Promotion and Performance - This category probably won&#8217;t be posted to very often but posts will be about promoting your site and improving it&#8217;s performance.</li>
<li>Random Ramblings - Sometimes you have to talk about the web without rules or restrictions or labels.</li>
<li>Sites You Gotta See - Won&#8217;t be used very often, typically a post contains 3 links with brief descriptions of the sites that are new and interesting.</li>
</ul>
<p>Well there you have it. Keep in mind that I may be adding categories as time goes by and the site expands and grows. If you ever have a suggestion or advice or anything to say, don&#8217;t hesitate to use the contact page to get in touch with me.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/this-blog-has-a-new-focus/feed</wfw:commentRss>
		</item>
		<item>
		<title>The CMS Review Area</title>
		<link>http://sitewisdom.com/the-cms-review-area</link>
		<comments>http://sitewisdom.com/the-cms-review-area#comments</comments>
		<pubDate>Fri, 18 Jul 2008 04:56:49 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Random Ramblings]]></category>

		<guid isPermaLink="false">http://sitewisdom.com/?p=70</guid>
		<description><![CDATA[For those of you who haven&#8217;t noticed (can&#8217;t blame you, it&#8217;s hidden) there&#8217;s an area for reviewing PHP software, CMS systems, and web applications. From content management systems to shopping cart software, there&#8217;s pretty much everything you need and use for a website, even some services in the list. The whole reason I&#8217;m telling you [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who haven&#8217;t noticed (can&#8217;t blame you, it&#8217;s hidden) there&#8217;s <a href="http://sitewisdom.com/reviews">an area for reviewing PHP software, CMS systems, and web applications</a>. From content management systems to shopping cart software, there&#8217;s pretty much everything you need and use for a website, even some services in the list. The whole reason I&#8217;m telling you is because, well, you could save others a lot of time by reviewing the stuff and letting people know if it&#8217;s worth their time to try or not.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/the-cms-review-area/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Internet, She’s a Changin’</title>
		<link>http://sitewisdom.com/the-internet-shes-a-changin</link>
		<comments>http://sitewisdom.com/the-internet-shes-a-changin#comments</comments>
		<pubDate>Wed, 16 Jul 2008 17:24:45 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Random Ramblings]]></category>

		<guid isPermaLink="false">http://sitewisdom.com/?p=69</guid>
		<description><![CDATA[I decided to write this post to give you some updates on what&#8217;s happening around the webosphere. Recently I feel like my desire to be a web entrepreneur has been reinvigorated. To me the hardest thing about doing this internet stuff is staying motivated and inspired. It&#8217;s really the key that everyone seems to forget [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to write this post to give you some updates on what&#8217;s happening around the webosphere. Recently I feel like my desire to be a web entrepreneur has been reinvigorated. To me the hardest thing about doing this internet stuff is staying motivated and inspired. It&#8217;s really the key that everyone seems to forget about when trying to be successful. You can &#8220;push and push&#8221; like I said in the last post but sometimes it makes more sense to take a break and gain a little motivation, reinvigorate your passion.</p>
<p><span id="more-69"></span></p>
<p><a href="http://www.stompernet.net/TSReview/" target="_blank">Traffic Secrets 2.0 Review</a></p>
<p>The above link takes you to a review by StomperNet about the all new Traffic Secrets 2.0 developed by John Reese, an accomplished internet marketer of 15 years. The reason I&#8217;m pointing you to the review and not the actual sales letter (ugh I hate sales letters, sorry John) is because you get a bonus by purchasing through StomperNet. If you&#8217;re not interested in bonus stuff though you can always go directly to <a href="http://trafficsecrets.com" target="_blank">TrafficSecrets.com</a>.</p>
<p>Now sometimes when you find something like this there&#8217;s a part of you that thinks &#8220;keep this to yourself, don&#8217;t let other internet entrepreneurs know it exists!&#8221;. But that&#8217;s not the way you succeed in life. Besides, having the knowledge of making your website successful isn&#8217;t the whole picture. You still need to have the tools, the courage, the time, the list goes on. Sharing your information with others isn&#8217;t going to hurt you in the long run, that&#8217;s my point.</p>
<p>Anyways, the sooner you jump in the water, the sooner you&#8217;ll figure out what you need to do to make some money on the internet. So get started today, and if you can&#8217;t afford to buy the above package, oh well! There&#8217;s still massive amounts of information on the net for your comsumption so get started today!</p>
<p>Good Luck and Godspeed young web samurai.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/the-internet-shes-a-changin/feed</wfw:commentRss>
		</item>
		<item>
		<title>Learning to be a Web Entrepreneur</title>
		<link>http://sitewisdom.com/learning-to-be-a-web-entrepreneur</link>
		<comments>http://sitewisdom.com/learning-to-be-a-web-entrepreneur#comments</comments>
		<pubDate>Fri, 11 Jul 2008 01:07:11 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Random Ramblings]]></category>

		<category><![CDATA[buy domains]]></category>

		<category><![CDATA[money]]></category>

		<category><![CDATA[web entrepreneur]]></category>

		<guid isPermaLink="false">http://sitewisdom.com/?p=68</guid>
		<description><![CDATA[When I started building websites and trying to figure out how people made money online - it wasn't a lot of fun. It took me a while to figure out the basics and even then I felt like I was winging it. I started building websites with tables and when I tried to figure out CSS it was difficult to say the least.]]></description>
			<content:encoded><![CDATA[<p>When I started building websites and trying to figure out how people made money online - it wasn&#8217;t a lot of fun. It took me a while to figure out the basics and even then I felt like I was winging it. I started building websites with tables and when I tried to figure out CSS it was difficult to say the least. I couldn&#8217;t grasp the fundamentals and create a layout that stayed together or made any sense, it would just go all over. After a while though, you keep pushing and pushing, and you eventually start to realize what works and what doesn&#8217;t.</p>
<p><span id="more-68"></span></p>
<p>Let&#8217;s jump to domain chat. When I started out I went for the cheapest registration cost per domain, <a href="http://1and1.com" target="_blank">1and1</a>. I thought you had to have the domain and hosting at the same place so that&#8217;s what I did. It wasn&#8217;t until later that I realized it wasn&#8217;t necessary to have the domain and hosting with the same company. All you have to do is change the nameservers! If I were to give you advice on buying domains it would be this; buy domains where they&#8217;re easy to push, like <a href="http://namecheap.com" target="_blank">namecheap</a> or <a href="http://dynadot.com" target="_blank">dynadot</a>. Eventually you&#8217;re going to want to sell one of those domains and pushing is a lot easier than trying to transfer.</p>
<p>Read a book on SEO. If you&#8217;re serious about getting a site some traffic you better know how the search engines work. How many normal internet users do you know that don&#8217;t use google or yahoo to find something? The answer is not many. If you&#8217;re looking toward the future though, you&#8217;ll probably see search engines that find the best site available, not the site that&#8217;s best optimized. So in my opinion you need to build websites that can stand the test of time, websites that have a purpose. Because you never know when a new google will come along or a new idea and there goes your traffic. Building a site that is easy to navigate, usable, has a pleasant design, ranks well in the engines and so forth takes time to build. So my advice to you is to get ready for the long haul. Strap yourself down, put on your typing gloves <img src='http://sitewisdom.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> and get ready to grind it out for a while.</p>
<p>That&#8217;s all the <span style="text-decoration: line-through;">writing</span> rambling I can take for now, thanks for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/learning-to-be-a-web-entrepreneur/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ad Management Rundown</title>
		<link>http://sitewisdom.com/ad-management-rundown</link>
		<comments>http://sitewisdom.com/ad-management-rundown#comments</comments>
		<pubDate>Sun, 30 Mar 2008 22:28:55 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[An In-Depth Look]]></category>

		<category><![CDATA[ad management]]></category>

		<category><![CDATA[ad serving solution]]></category>

		<category><![CDATA[ads]]></category>

		<category><![CDATA[self serve ads]]></category>

		<guid isPermaLink="false">http://localhost/site_wisdom/?p=20</guid>
		<description><![CDATA[Here we take a look at some of the new and upcoming ad serving solutions available. It's kind of amazing to me that there haven't been many options available to publishers, considering ads power a lot of sites. Finally we start to see some solutions that are affordable and flexible for any ad powered website.]]></description>
			<content:encoded><![CDATA[<p>Over the recent months there has been some exciting advancements in ad management. For a while now web publishers haven&#8217;t had many options for self-serving their advertisements. We&#8217;re going to take a look at an ad management app that has just launched as well as some software that&#8217;s getting refocused.</p>
<p><span id="more-20"></span></p>
<p>First up, <strong>Adregate</strong><a class="seereview" href="?p=48&amp;phpMyAdmin=-Bw1rqvDa41woUXJlAuG45w3zt2&#038;phpMyAdmin=xtLpkA6Vjn-pIPlu8nBkVQdQuf1&#038;phpMyAdmin=8X9I3aUtluBj4Qs2crZtrzsy-kf"></a></p>
<p>Adregate is an online ad serving solution that makes it pretty easy to manage your ads. You pay a monthly fee which is based on impressions and you can even serve ads for 1 site for free.</p>
<p><strong>Pros: </strong></p>
<ul>
<li>Very easy interface makes managing ads easy</li>
<li>Media/Sales kit page to refer your potential advertisers to</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>No way for advertisers to check ad stats</li>
</ul>
<p><strong>OpenX</strong>, previously OpenAds<a class="seereview" href="?p=27&amp;phpMyAdmin=-Bw1rqvDa41woUXJlAuG45w3zt2&#038;phpMyAdmin=xtLpkA6Vjn-pIPlu8nBkVQdQuf1&#038;phpMyAdmin=8X9I3aUtluBj4Qs2crZtrzsy-kf"></a></p>
<p>OpenX is a PHP app that you install on your own server for all types of ad serving. Their blog had a post about their roadmap for 2008, it sounds good to me.</p>
<blockquote><p>Over the last few months, we have spent time sorting through all of the opportunities, features, and priorities that we have, and distilling these down to a clear roadmap of what OpenX plans to deliver in the coming months. <a href="http://blog.openx.org/03/openx-2008-roadmap/" target="_blank">Read the rest</a></p></blockquote>
<p><strong>Pros:</strong></p>
<ul>
<li>It&#8217;s open source</li>
<li>Advertisers can be emailed statistics about their campaigns</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>Admin area is a bit difficult to get used to</li>
</ul>
<p>These are the only 2 I&#8217;m going over for now. I will update this page when more ad serving apps are available. Feel free to leave a comment if you know of more ad serving solutions like the above. Google is currently in beta with it&#8217;s ad manager and I can&#8217;t wait to try it out. If I get to, I&#8217;ll be sure to update this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/ad-management-rundown/feed</wfw:commentRss>
		</item>
		<item>
		<title>Subscription Software Rundown</title>
		<link>http://sitewisdom.com/subscription-software-rundown</link>
		<comments>http://sitewisdom.com/subscription-software-rundown#comments</comments>
		<pubDate>Sat, 15 Mar 2008 18:04:24 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[An In-Depth Look]]></category>

		<category><![CDATA[cms]]></category>

		<category><![CDATA[member software]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[php subscription software]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[subscription]]></category>

		<guid isPermaLink="false">http://localhost/site_wisdom/?p=15</guid>
		<description><![CDATA[Here we take a look at a few of the more popular PHP subscription management systems available. We've tried to be fair and list all the pros and cons of each system. Take a look and leave a comment if you know of a system that should be added.]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve been trying to find some subscription software to use for a project I&#8217;m working on. Some of these PHP subscription systems have been difficult to find and I thought I&#8217;d give you a quick rundown of a few of them to hopefully make your life a bit easier.</p>
<p><span id="more-15"></span></p>
<p><strong>Amember</strong><a class="seereview" href="?p=45&amp;phpMyAdmin=-Bw1rqvDa41woUXJlAuG45w3zt2&#038;phpMyAdmin=xtLpkA6Vjn-pIPlu8nBkVQdQuf1&#038;phpMyAdmin=8X9I3aUtluBj4Qs2crZtrzsy-kf"></a></p>
<p><strong>Price: </strong>Under $200</p>
<p><strong>Pros</strong></p>
<ul>
<li>Site features trial download, support forum, and an online demo</li>
<li>Software Integrates with many payment processors and other software like WordPress, PHPBB, and more</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>Software development doesn&#8217;t seem very active, only 2 updates in 2007</li>
<li>Forum isn&#8217;t much help aside from a few helpful members, have to use ticket system</li>
<li>General lack of announcements or news, unsure if software integrates with new versions, like PHPBB3</li>
</ul>
<p><strong>Caribou CMS</strong></p>
<p><strong>Price: </strong>Starts at $free (LE version, 100 members)</p>
<p><strong>Pros</strong></p>
<ul>
<li>Site features online demo and ticket system for support</li>
<li>Software integrates with Paypal, 2Chechout and authorize.net</li>
<li>Software has built-in CMS and many features available</li>
<li>Active development, they responded to my email message quickly</li>
<li>*Now integrates with PHPBB3 and vBulletin software</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>Can&#8217;t view users in administration area</li>
<li>Somewhat difficult to implement a custom front-end design</li>
</ul>
<p><strong>Omni-Secure</strong></p>
<p><strong>Price:</strong> Starts at $197</p>
<p><strong>Pros </strong></p>
<ul>
<li>Site features online demo, 10-day trial of the software and ticket system for support</li>
<li>Software integrates with Paypal, 2Chceckout, authorize.net, PHPBB, and more</li>
<li>Software features Multi-Directional Login Forms and more</li>
<li>Active development, many new features added already this year</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li> CMS integration plugins cost extra, about $50 each</li>
<li>More expensive than some of the alternatives</li>
</ul>
<p>Hopefully this general rundown will be enough to get you going. I try not to spew my opinion too much when writing an article like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/subscription-software-rundown/feed</wfw:commentRss>
		</item>
		<item>
		<title>Sites You Gotta See III</title>
		<link>http://sitewisdom.com/sites-you-gotta-see-iii</link>
		<comments>http://sitewisdom.com/sites-you-gotta-see-iii#comments</comments>
		<pubDate>Sat, 15 Mar 2008 16:57:53 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Sites You Gotta See]]></category>

		<category><![CDATA[cool sites]]></category>

		<category><![CDATA[new sites]]></category>

		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://localhost/site_wisdom/?p=14</guid>
		<description><![CDATA[3 more sites that you gotta see! 2 of them are for raising money for that project or startup you're working on. Check them out and let us know what you think.]]></description>
			<content:encoded><![CDATA[<p>We have 3 more sites that you just have to see!</p>
<p><span id="more-14"></span></p>
<p>First up, <a href="http://www.raisecapital.com" target="_blank">RaiseCapital.com</a></p>
<p>A great way to raise capital because you get to connect with investors for free. Anyone can sign up and post an opportunity or look for opportunities to invest in. A neat idea and one that I think many will use and find invaluable.</p>
<p>Next we got <a href="http://www.go4funding.com" target="_blank">G04Funding.com</a><a href="http://www.jungletango.com" target="_blank"></a></p>
<p>This site has nearly the same goals as raisecapital.com, connect investors and entrepreneurs. Also has some nice articles on what angel investors and venture capitalists are and how the investment process works.</p>
<p>Lastly, <a href="http://www.osspinions.org/" target="_blank">OSSpinions.org</a></p>
<p>Feel free to spew your opinions on open source projects at this site. A nice way to check out OS projects and see what others think about them.</p>
<p>I hope you enjoy these sites as much as I have and don&#8217;t forget to leave a comment and let me know what you thought.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/sites-you-gotta-see-iii/feed</wfw:commentRss>
		</item>
		<item>
		<title>Site Promotion with Squidoo</title>
		<link>http://sitewisdom.com/site-promotion-with-squidoo</link>
		<comments>http://sitewisdom.com/site-promotion-with-squidoo#comments</comments>
		<pubDate>Wed, 16 Jan 2008 17:34:37 +0000</pubDate>
		<dc:creator>Cal</dc:creator>
		
		<category><![CDATA[Promotion and Performance]]></category>

		<category><![CDATA[google results]]></category>

		<category><![CDATA[promote site]]></category>

		<category><![CDATA[seo]]></category>

		<category><![CDATA[squidoo]]></category>

		<guid isPermaLink="false">http://localhost/site_wisdom/?p=13</guid>
		<description><![CDATA[Promoting your website can be one of the most difficult things to do. Here I outline a somewhat newer way of promoting your site that will cost you absolutely nothing. ]]></description>
			<content:encoded><![CDATA[<p>Recently I found some great videos on using social sites for increasing traffic to your site. The videos are part of <strong>StomperNet&#8217;s Going Natural 2.0</strong> and can be found <a href="http://www.stompernet.net/all/" target="_blank">right here</a>. I decided to give it a test run with <a href="http://www.squidoo.com" target="_blank">Squidoo.com</a> and give the results here.</p>
<p><span id="more-13"></span></p>
<p>So basically all I did was write an article called <a href="http://www.squidoo.com/why-wordpress-rocks">Why WordPress Rocks</a>.  It took about an hour and I tried to include as many links as I could to all the best <strong>WordPress</strong> sites on the net. I also (of course) included a link to my site where <a href="http://www.themesbycal.com" target="_blank">I release WordPress Themes</a>.</p>
<p>The <strong>Google</strong> searching began straight away because I wanted to see if the article showed up, how long it took, and where it ended up. I was shocked to see that in under 2 days it was number 1 in <strong>Google</strong> for the keywords &#8220;Why WordPress Rocks&#8221; and &#8220;WordPress Rocks&#8221;. Now I know that these aren&#8217;t the best keyword phrases in the world, but the results are amazing. Needless to say, I highly recommend that you try it out for yourself. My <strong><em>Lens</em></strong> was built in a couple of hours and <strong>Squidoo</strong> makes it really easy. The great part is that there are other sites like <strong>Squidoo</strong> out there and if you utilized all of them, who knows what results you&#8217;d have.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitewisdom.com/site-promotion-with-squidoo/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
