
<?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>Green ComplexWeb Stuff | Green Complex</title>
	<atom:link href="http://green.cx/category/web-resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://green.cx</link>
	<description></description>
	<lastBuildDate>Fri, 23 Dec 2011 17:12:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Broken ms-files.php in WordPress corrupting images</title>
		<link>http://green.cx/web-resources/wordpress-web-resources/broken-ms-files-php-in-wordpress-corrupting-images/</link>
		<comments>http://green.cx/web-resources/wordpress-web-resources/broken-ms-files-php-in-wordpress-corrupting-images/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 06:21:12 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2531</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/77.original.png" width="659" height="87" alt="" title="Troubleshooting" /><br/>I upgraded nginx on my server and all was well, or so I thought&#8230;. (TL;DR at the bottom) Feeling good about my self I patted my back and went to bed. The next day I was writing a new post when after uploading a photo to WordPress it did not load in the editor. So after a [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/77.original.png" width="659" height="87" alt="" title="Troubleshooting" /><br/><div id="attachment_1250" class="wp-caption alignleft" style="width: 160px"><a href="http://green.cx/files/2010/04/wordpress-logo.jpg"><img class="size-thumbnail wp-image-1250" title="wordpress-logo" src="http://green.cx/files/2010/04/wordpress-logo-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Wordpress 3.0 + Nginx </p></div>
<p>I upgraded nginx on my server and all was well, or so I thought&#8230;. (TL;DR at the bottom)</p>
<p>Feeling good about my self I patted my back and went to bed. The next day I was writing a new post when after uploading a photo to WordPress it did not load in the editor. So after a little struggling I figured out why non of the images from the /files/ directory in wordpress were working, but not until after I gave up trying to find the answer in Google.</p>
<p>I tried Googling all this to no avail: (Hopefully this will help some other Googler out there)</p>
<ul>
<li><strong>Ngnix not rewriting ms-files.php properly</strong></li>
<li>my nginx default conf for wordpress was faulty</li>
<li><strong>no errors in php for ms-files.php WPMU</strong></li>
<li><em><strong>ms-files.php corrupting images WPMU</strong></em></li>
<li>ms-files.php white (blank) screen of death</li>
</ul>
<div>After exhaustive rebuilding nginx config files for WordPress MU  I finally went back to poking at the blank screen&#8230;</div>
<div>When I loaded up Firefox I got &#8220;The image cannot be displayed because it contains errors&#8221; so I saved the file, and to my surprise is was actually a jpg full of data! And at first it looked fine, but as it turned out, is was incomplete. So I went back to Google and found a bug on the WordPress Core Trac Bug Reports.  <a title='Original Link: http://core.trac.wordpress.org/ticket/14730'  href="http://green.cx/?TieauOIL">http://core.trac.wordpress.org/ticket/14730</a></div>
<div>Eureka moment! As it turns out it was a known bug, by an unknown cause! I know mine was caused by upgrading nginx on ubuntu Lucid, and commenting out this line in fastcgi_prams config file. <em># fastcgi_param HTTPS $server_https;</em> It was added, and broke things so it was uneeded. But I think that as a side effect, it was truncating the output of ms-files.php.</div>
<div>TL;DR</div>
<div>So anyway the solution was a simple patch for ms-files.php to clear the buffers before and after reading the image file. (The entire patch is below, and goes at the very end of the file)</div>
<blockquote>
<div>
<table summary="Differences" cellspacing="0">
<thead>
<tr>
<th title="File wp-includes/ms-files.php"></th>
<td><em></em></td>
</tr>
</thead>
<tbody>
<tr>
<th>79</th>
<th>79</th>
<td>}</td>
</tr>
<tr>
<th>80</th>
<th>80</th>
<td></td>
</tr>
<tr>
<th>81</th>
<th>81</th>
<td>// If we made it this far, just serve the file</td>
</tr>
</tbody>
<tbody>
<tr>
<th></th>
<th>82</th>
<td><ins>ob_clean();</ins></td>
</tr>
<tr>
<th></th>
<th>83</th>
<td><ins>flush();</ins></td>
</tr>
</tbody>
<tbody>
<tr>
<th>82</th>
<th>84</th>
<td>readfile( $file );</td>
</tr>
</tbody>
<tbody>
<tr>
<th></th>
<th>85</th>
<td><ins>flush();</ins></td>
</tr>
</tbody>
<tbody>
<tr>
<th>83</th>
<th>86</th>
<td>?&gt;</td>
</tr>
</tbody>
</table>
</div>
</blockquote>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/wordpress-web-resources/broken-ms-files-php-in-wordpress-corrupting-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook is Killing RSS on Pages</title>
		<link>http://green.cx/web-resources/online-tools/facebook-is-killing-rss-on-pages/</link>
		<comments>http://green.cx/web-resources/online-tools/facebook-is-killing-rss-on-pages/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 03:04:50 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Recent Tech News]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2499</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>In the midst of the loss of tech giant Steve Jobs, Facebook rolling out some changes on their Facebook Pages. You were able to import your blog&#8217;s RSS feed into the notes to automate the syncing of your blog posts to facebook. What I wonder is if this change will effect the third party apps [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p><a href="http://green.cx/files/2010/04/facebook-logo60.jpg"><img class="alignright size-full wp-image-1304" title="Facebook Like Button" src="http://green.cx/files/2010/04/facebook-logo60.jpg" alt="" width="187" height="187" /></a>In the midst of the loss of tech giant Steve Jobs, Facebook rolling out some changes on their Facebook Pages. You were able to import your blog&#8217;s RSS feed into the notes to automate the syncing of your blog posts to facebook. What I wonder is if this change will effect the third party apps like networked blogs, from posting on your wall. I guess if you really want to keep syndicating to your wall you could run your feed through a desktop app like seesmic or tweetdeck&#8230; As long as they supported RSS feeds&#8230;.</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/online-tools/facebook-is-killing-rss-on-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Serp Workbench</title>
		<link>http://green.cx/web-resources/seo-serp-workbench/</link>
		<comments>http://green.cx/web-resources/seo-serp-workbench/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 21:55:12 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Bookmarklets]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chrome Browser Addons]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2494</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/64.original.png" width="659" height="87" alt="" title="Bookmarklets" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>This is the ultimate add on for any webmaster who wants to see where their website (or their clients) website stands in goolge&#8217;s search results pages easily. The only think I can really say is give it a try, you will really love it!!! Just add a campaign to track, and then a list of [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/64.original.png" width="659" height="87" alt="" title="Bookmarklets" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p>This is the ultimate add on for any webmaster who wants to see where their website (or their clients) website stands in goolge&#8217;s search results pages easily. The only think I can really say is give it a try, you will really love it!!! Just add a campaign to track, and then a list of urls you want to know positions for, and then try some different keywords against the list and save them one at a time.  This way every time you click on that keyword in the future, it updates the list of positions! Great stuff&#8230;</p>
<p><a href="https://chrome.google.com/webstore/detail/ehbgolklgacemnfnmkkpgekngaaggjjl?hc=search&amp;hcp=main">https://chrome.google.com/webstore/detail/ehbgolklgacemnfnmkkpgekngaaggjjl?hc=search&amp;hcp=main</a><br />
<a href="http://green.cx/files/2011/10/SEO-SERP-WATCH.png"><img class="size-full wp-image-2495 aligncenter" title="SEO-SERP WATCH" src="http://green.cx/files/2011/10/SEO-SERP-WATCH.png" alt="" width="400" height="275" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/seo-serp-workbench/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jason on Klout</title>
		<link>http://green.cx/web-resources/web-dev-resources/jason-on-klout/</link>
		<comments>http://green.cx/web-resources/web-dev-resources/jason-on-klout/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 03:59:21 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Klout]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2480</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/5.original.png" width="659" height="87" alt="" title="Web 2.0" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Have you ever wondered when you are posting a status update, tweet or sharing a link on Google+, how many people you are reaching out to? Well so were the guys that made Klout, a service that lets you measure your audience, their feedback, and creates a &#8220;Klout&#8221; score, from 1 to 100. But it [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/5.original.png" width="659" height="87" alt="" title="Web 2.0" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p>Have you ever wondered when you are posting a status update, tweet or sharing a link on Google+, how many people you are reaching out to?<br />
Well so were the guys that made Klout, a service that lets you measure your audience, their feedback, and creates a &#8220;Klout&#8221; score, from 1 to 100.</p>
<p>But it doesn&#8217;t end at just measuring your reach. There is also benefits such as &#8220;Perks&#8221; which are exclusive products or experiences that you earn based on your influence. Like for example, I can get a Subway Oven Crisp Chicken Sub since my Klout score is above 40, but alas, they are all out at the moment. I suddenly don&#8217;t feel so impressed by my &#8220;41&#8243; Klout score. But then again, Keven Rose only has an 81, and he&#8217;s a celebrity.</p>
<p>But Perks aside, I think the best part about Klout is the self aware factor. Once you realize how to focus what you&#8217;re talking about, and see what topics trend better, you could really use this as a tool to hone in your online social skills. And that would translate to growing a larger audience, so while I personally am not in it for the &#8220;Perks&#8221; I&#8217;m watching my Klout score on a daily basis. I haven&#8217;t figured out how frequently it updates, but I can see that over the next few months it will have a positive impact on my blogging as my social consumption should increase. Speaking of which all this is making me hungry for a meatball and pepperoni sub&#8230;</p>
<p>Why not check me out on <a title='Original Link: http://klout.com/#/LarcenIII'  href="http://green.cx/?WYr03nTi">Klout </a><a href=" http://klout.com/#/LarcenIII"> http://klout.com/#/LarcenIII</a> and follow me on twitter. <a href="http://twitter.com/LarcenIII">http://twitter.com/LarcenIII</a> or Google Plus <a href="http://➸.ws/~fc5L1">http://➸.ws/~fc5L1</a></p>
<p><a href="http://green.cx/files/2011/09/Klout-Jason-41.png"><img class="size-large wp-image-2481 aligncenter" title="Klout Jason 41" src="http://green.cx/files/2011/09/Klout-Jason-41.png" alt="" width="600" height="143" /></a></p>
<p>P.S. I&#8217;m also a <a title='Original Link: http://www.stumbleupon.com/stumbler/LarcenIII/'  href="http://green.cx/?buQhp6pd">stumbler</a>!</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/web-dev-resources/jason-on-klout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Advertising Network in Beta</title>
		<link>http://green.cx/web-resources/online-tools/new-advertising-network-in-beta/</link>
		<comments>http://green.cx/web-resources/online-tools/new-advertising-network-in-beta/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 12:00:42 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Tranquility Ads]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2457</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>I&#8217;m proud to announce our new advertising network  is opening its doors to the internet, and before launch I would like to  informed everyone that we are running a signup for our beta program before we open up. We called our new service Tranquility Ads, and offer something a little &#8220;Different&#8221; than most other publisher / advertiser [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p><img class="size-full wp-image-2458 alignleft" title="Tranq-300-beta" src="http://green.cx/files/2011/08/Tranq-300-beta.png" alt="" width="300" height="305" /></p>
<p>I&#8217;m proud to announce our new advertising network  is opening its doors to the internet, and before launch I would like to  informed everyone that we are running a signup for our beta program before we open up. We called our new service Tranquility Ads, and offer something a little &#8220;Different&#8221; than most other publisher / advertiser platforms. I did a mock interview with Greg, one of our developers in order to showcase some of the questions you may have about our new service and why what we offer is any different than existing platforms (Ie, Adsense, Adwords, AdBright, Technorati, just to name a few).</p>
<p><strong>Me</strong>: So ca you tell everyone what is the premise behind Tranquility Ads?</p>
<p><strong>Greg</strong>: Well you approached me with an idea for a new type of ad network, and after being a blogger myself, we realized that while advertisers are the life blood of any ad network but the publishers are the heart. Most of the services I&#8217;ve tried treated publishers quite poorly. I&#8217;ve found that support usually isn&#8217;t even an afterthought, much less implemented in any form. So we developed a platform that is both, versatile, easy to use, and provides an unprecedented level of support for any ad network out there.</p>
<p><strong>Me</strong>: So is support the most important thing in an ad network?</p>
<p><strong>Greg</strong>: No, of course and it&#8217;s not the only thing that sets us apart, actually, it&#8217;s just one of many things that is different. By versatile I ment that we already have Android and Iphone apps to monitor your stats and funds directly from your phone. We have also reconsidered the whole ad format idea that many other adnetwork use. Most are outdated and only fit older websites. We have HD advertisments, that webmasters and advertisers who design ads for 960px wide and fluid layout sites will love. We also call our matching system &#8220;Organic Advertising&#8221;</p>
<p><strong>Me</strong>: Organic advertising? Sounds like your trying to sell expensive food, lol no offense&#8230;</p>
<p><strong>Greg</strong>: Lol well you came up with it <img src='http://green.cx/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> &#8230;  Well we feel that &#8220;Organic&#8221; ads in this sense, that they naturally place themselves in appropriate places. We use a special system of categorization to match advertisments with publishers. It uses a matrix of categories and ratings that ensure publishers and advertisers are matched accurately. We love Google, but some things that they do we simply can&#8217;t, and won&#8217;t do. Their ads have a tendency to &#8220;Follow&#8221;  you around on the internet. That&#8217;s because they are tracking you, with a complex system of  IP recording, cookies, and algorithmic search patterns. We respect everyone&#8217;s privacy, and feel that if you are on a website about &#8220;Cameras&#8221; then Ads relating to camera are the only thing that makes sense there. You should see ads for guitars, just because you searched for some tabs a few minuets ago. When you are looking at that camera site, right then, you are not interested in guitars. Even worse is when unrelated ad matching comes into conflict. Like that recent newsite covered a story about a bear attack, and the advertisement was for camping in Alaska to see the bears.</p>
<p><strong>Me</strong>: I remember that bear story, I think I saw it on reddit. Lets move on to protecting advertisers. There are many bad guys out there who would love to try and cheat, how do you provision handling incidents like that?</p>
<p><strong>Greg</strong>: Well, obviously I can&#8217;t say too much about our methods, but fraud protection is extremely important to us. Click fraud is an uncomfortable topic with any ad network, but I can tell you that we have a rollback system, where if fraud occurs, the publisher (and website) is blocked forever, and all clicks and transactions are rolled back. We also use a verified funds system where all clicks are verified before they are confirmed. We have enlisted the help of 3rd party companies that also aid in the detection of fraud clicks, so the experience is there as well. Advertiser safety is a primary concern.</p>
<p><strong>Me</strong>: And now the question I know everyone is thinking&#8230; What is the % you payout to the publisher?</p>
<p><strong>Greg</strong>: Heh, well I don&#8217;t think I can divulge here and now, but it will be higher than any other network currently offers. We are giving our beta testers 90% for helping us find problems and for being patient while we trace out the last bugs in the system. This is a huge added value for advertisers as well, because their dollar goes further. We&#8217;re not sure how many beta testers there will be, but we are going to control it with a dual control invitation system. We will invite webmasters we think will benefit in growing our base, and then give them invitations that they can share with others in their circles. The other part is that after they are invited, we will still need to approve their website.  There will be a signup form for beta testers on our website very soon.</p>
<p><strong>Me</strong>: Ok, when I asked you about the interview, you mentioned some suprises?</p>
<p><strong>Greg</strong>: Oh yeah, our system provides another service for publishers. If you&#8217;re familiar with &#8220;House Ads&#8221; blanks, or Public Service Announcments, with other ad networks, or if you don&#8217;t know, these are the ads that the network provider displays when there are no ads for your website. With our system, we categorize our sites using a similar matrix to our advertisers, and we use this to display &#8220;Fliers&#8221;. A Flier is like a coat-of-arms for your website. Your banner gets displayed on similar publishers. So if you run a camera blog, and Fred runs a camera blog too, both of your visitors will see the related blog on the other site. For all the visitors your site generates for other sites, your site becomes stronger in the network, and more traffic is sent back to you.</p>
<p><strong>Me</strong>: Wow, ok that&#8217;s different alright, but why couldn&#8217;t an advertiser just do that?</p>
<p><strong>Greg</strong>: Well in a way they could, but the flyers are much more limited in how they can display compared to an ad. Fliers have a set size, like 125 x 125 px squares on a blog. So one adbox may show 4 fliers when it normally only shows 1 ad. That divides that space&#8217;s value, but many bloggers recognize the button banners. It&#8217;s really a good way to build traffic to your website if you&#8217;re looking for more readers, subscribers, etc.</p>
<p><strong>Me</strong>: Ok, that&#8217;s really neat, I&#8217;m eager to see how this is going to all work out. Do you have any concerns about getting started?</p>
<p><strong>Greg</strong>: I think if we do a quality execution and continue to provide an experience unlike any other (Trying badly to not sound like I have better than thou attitude) then success will find us. We know from both sides of the fence that there isn&#8217;t a perfect system out there. We think we have found an untapped and powerful resource in ourselves and the love of the blogging community that will keep us alive for quite some time.</p>
<p><strong>Me</strong>: Well you sound really confident, I think I&#8217;ll give your network a try if I could get a beta invite *wink* *wink* *nudge* *nudge*</p>
<p><strong>Greg</strong>: *rolls eyes* I&#8217;m sure we can work something out&#8230; lol<br />
Tranquility Ads is the brain child of Jason Green and Greg Wiggleton. Jason works out the design, structure and interface functionality, and Greg writes the backend, API, and database schema. We are both committed to creating a fantastic service and experience for advertisers and publishers alike.</p>
<p>&nbsp;</p>
<p>I&#8217;ll try to get some screenshots from the beta and I&#8217;ll post some updates in the near future.</p>
<p>Thank you Greg for the [mock]  interview. We&#8217;ll get some beta invites when they open it up and hand a few out.</p>
<p>Here is a link to subscribe to the mailing list, and a link to the facebook page.</p>
<p>We&#8217;ll try to post info in both places, but you may want to subscribe to both, just in case you miss the first message.</p>
<p>Facebook: <a title='Original Link: http://www.facebook.com/pages/Tranquility-Ads/258507007494625'  href="http://green.cx/?1eCoiqrM">http://www.facebook.com/pages/Tranquility-Ads/258507007494625</a></p>
<p>Feedburner: <a title='Original Link: http://feedburner.google.com/fb/a/mailverify?uri=TranquilityAds'  href="http://green.cx/?CNPebvzv">http://feedburner.google.com/fb/a/mailverify?uri=TranquilityAds</a></p>
<p>Comment if you want a beta invite, and be sure to include your website URL!!!</p>
<p>example: www (dot) example (dot) com</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/online-tools/new-advertising-network-in-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Host Gator Review</title>
		<link>http://green.cx/web-resources/online-tools/host-gator-review/</link>
		<comments>http://green.cx/web-resources/online-tools/host-gator-review/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 13:45:50 +0000</pubDate>
		<dc:creator>K M Rehan Salahuddin</dc:creator>
				<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2406</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Connection Speed Very high speed if compared with other shared hosting. This is perfect solution for rich media website in limited scale. Uptime If there is no natural disaster,or other extreme situation to cause a failure then all the websites hosted with hostgator is listed as having 99.99% uptime guarantee. File Type/Size “Unlimited” disk space is sold to [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><div class="zemanta-img" style="margin: 1em; display: block;">
<div class="wp-caption alignright" style="width: 210px"><a title='Original Link: http://en.wikipedia.org/wiki/File:HostGatorlogo.jpg'  href="http://green.cx/?ll9vRTLo"><img title="HostGator" src="http://upload.wikimedia.org/wikipedia/en/2/25/HostGatorlogo.jpg" alt="HostGator" width="200" height="99" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
</div>
<p><strong>Connection Speed</strong></p>
<p>Very high speed if compared with other shared hosting. This is perfect solution for rich media<br />
website in limited scale.</p>
<p><strong>Uptime</strong><br />
If there is no natural disaster,or other extreme situation to cause a failure then all the websites hosted with hostgator is listed as having 99.99% uptime guarantee.</p>
<p><strong>File Type/Size</strong><br />
“Unlimited” disk space is sold to customers with clearly stated limitations. There is no limitation<br />
on file size or type. Any type and any sized files can be uploaded.</p>
<p><strong>Inode/File Limit</strong><br />
Other than Vps this company is offering the moist allowed inode limit of <em>250,000</em>, which is the best on the market. When many other companies are offering only one fifth of this limit without backup, hostgator is not only offering a large number of inodes but also with backup.</p>
<p><strong>Disk Space</strong><br />
With 250,000 inode limit a webmaster can easily occupy 250GB of disk space which with VPS would be 100 times as expensive.</p>
<p><strong>CPU Resource Limit</strong><br />
Up to 25% of CPU resources are allowed for each hosted account, and the resources are well managed, allocated and optimized for each hosted account. It is really very difficult for any hosted account to go beyond this limit if only 1 domain is hosted under the<br />
account. If any hosted account continuously go beyond this limit then it would be better for a webmaster to think about a VPS as in what our research shows, there is no other shared hosting offering more resource allocation than Host Gator.</p>
<p><strong><a href="http://green.cx/files/2011/04/HG-Gator-Superman-300dpi.jpg"><img class="alignleft size-medium wp-image-2409" title="HG-Gator-Superman-300dpi" src="http://green.cx/files/2011/04/HG-Gator-Superman-300dpi-221x300.jpg" alt="" width="221" height="300" /></a>Customer Support</strong><br />
Usually any support ticket would be answered within 30-45 minutes. There is a very good support documentation to go through for more knowledge. The support department would even provide guidance about how to optimize a website for better performance. The customer support service is satisfactory.</p>
<p><strong>Satisfaction Guaranteed</strong><br />
It is well known that money talks around the world and with Host Gator it is no different. The cost of hosting with hostgator is 2.5 times higher than average market price of shared hosting and the result is 10 times better service with total satisfaction. For webmasters who want a hassle free, fluent webhosting experience in cheap pricing then Host Gator is the ultimate solution.</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/online-tools/host-gator-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unlimited Hosting and Hidden Disappointments</title>
		<link>http://green.cx/web-resources/online-tools/unlimited-hosting-and-hidden-disappointments/</link>
		<comments>http://green.cx/web-resources/online-tools/unlimited-hosting-and-hidden-disappointments/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 19:43:43 +0000</pubDate>
		<dc:creator>K M Rehan Salahuddin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[web services]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2384</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Most webmasters are always in a hurry to make their website available for the whole world. In the process of making a website webmasters hardly ever do any research on their needs and requirements for a healthy hosting environment. One of the basic reasons behind this is that most of the webmasters are unaware about [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p>Most webmasters are always in a hurry to make their website available for the whole world. In the process of making a website webmasters hardly ever do any research on their needs and requirements for a healthy hosting environment. One of the basic reasons behind this is that most of the webmasters are unaware about hosting logistics. They don&#8217;t want to skip a very lucrative unlimited offer to a limited offer; they don’t want to read the Terms of Service and/or Acceptable User Policy. They only compare between the pricing and how many unlimited items are listed, before they decide their hosting provider. And that&#8217;s where the tragedy starts with a lot of hidden disappointments.</p>
<p>The hosting providers are usually offering unlimited bandwidth, unlimited disk space, unlimited email accounts, unlimited domains, and unlimited databases on their shared hosting plans. But, when these cheap shared hosting plans are compared with vps/dedicated server there will be a big difference between the pricing and the features. Because the vps/dedicated hosting plan is at least 10 to 100 times as expensive as the shared unlimited plans and they come with a lot of limitations.</p>
<div class="mceTemp mceIEcenter" style="text-align: center;">
<dl id="attachment_2385" class="wp-caption  aligncenter" style="width: 556px;">
<dt class="wp-caption-dt"><a href="http://green.cx/files/2011/03/Compare-Unlimited-to-VPS.png"><img class="size-full wp-image-2385 " title="Compare Unlimited to VPS" src="http://green.cx/files/2011/03/Compare-Unlimited-to-VPS.png" alt="" width="546" height="182" /></a></dt>
<dd class="wp-caption-dd">Compare between a shared “unlimited” plan with a dedicated server plan.</dd>
</dl>
</div>
<p>A simple question to ask yourself is, if unlimited hosting can be obtained for only a few dollars then why do people need to buy <a id="aptureLink_eDDMwYysPr" title='Original Link: http://en.wikipedia.org/wiki/Virtual%20private%20server'  href="http://green.cx/?NoM0mW1k">vps</a>/dedicated server which has limits disk space/<a id="aptureLink_xAmdTfidj1" title='Original Link: http://en.wikipedia.org/wiki/Bandwidth%20%28computing%29'  href="http://green.cx/?6XkCXKxc">bandwidth</a>? The straight and clear answer is that there is no such thing as unlimited web hosting available on earth. All the unlimited features are having hidden restrictions to provide free disappointments through the hosting period.<br />
<strong>Unlimited disk space</strong>: It is almost impossible to offer unlimited dist space. Every server has its own limitation which depends on the hard disk driver size that is installed in the server, and there is no such unlimited sized hard disk available in market. Also in a shared hosting plan, there are many websites hosted in the same server, and those websites shares the resources of the server. In this case there is no such possibility for having a unlimited disk space to offer to all those clients, whose websites are hosted in the same server. All the hosting service providers usually restrict the clients from utilizing more than certain amount of disk space with a quota named “<a id="aptureLink_GJn6BcuzUW" title='Original Link: http://en.wikipedia.org/wiki/Inode'  href="http://green.cx/?PMOMTA_7">inode</a>”. Generally, one file uses one inode. Thus, if you have 50,000 files you have used 50,000 inodes. This inode limitation varies between different hosting providers. But be aware about those hosting services who offer only 50,000 inodes.<br />
<strong> </strong></p>
<p><strong>Unlimited bandwidth</strong>: One website only needs a lot of bandwidth when you are having a lot of visitors and when your website contains a lot of images/large sized files. But all the hosting providers restrict the processor per user under their terms of service or under a acceptable user policy. Cpu uage per user is restricted between 10% to 25% among all the hosting providers. Also sometimes some providers limit the connection per ip address. If the cpu per user is restricted then the visitors will experiment either a very slow performance of your web or will see an error message.<br />
<strong></strong></p>
<p><strong>Unlimited Email:</strong> Another feature that depends a lot on other features. If a webmaster wants to open unlimited email address then he/she requires unlimited inode count along with unlimited disk space. It also requires heavy Cpu usage when a lot of email clients start to retrieve email/attach large sized files. As all these features are limited, unlimited email accounts is also can only be available in dreams.</p>
<p>All this means is that &#8220;unlimited web hosting&#8221; does, in fact, have its limitations. There are several criteria of limitations that are applied to unlimited web hosting, including RAM, bandwidth, CPU, queries, FTP uploads, and the number of MySQL databases being utilized. Each of these can trigger an automatic or even manual suspension of hosting/website.<br />
So our suggestion is that whenever you visit a site promoting &#8220;Unlimited Bandwidth/disk space&#8221; as one of the account features, be sure to visit the Acceptable Use Policy, or the Terms of Service. Read the fine text about the so-called &#8220;Unlimited&#8221; disclaimer, you will be surprised!</p>
<h2><strong>Suggested</strong></h2>
<p><strong></strong>Host Gator (Higher Cpu Resource &amp; Inode Count, Fair Bandwidth Ratio)<br />
Host Moster (Higher Cpu Resource, Good Maintenance)<br />
<a title='Original Link: http://www.linode.com/?r=f578b9d1346de5ecec5707f4ed401b661f7b1510'  href="http://green.cx/?k6iIRhlk">Linode</a> (Good VPS if you are a &#8220;Do it yourself&#8221; type, Best Price for Performance)</p>
<h2><strong>Bad Ones</strong></h2>
<p><strong></strong>Justhost (They bought a dedicated server on Singlehop.com, and hosts everything in that server, 10% cpu resource, 50,000 inode count and almost no tech support)<br />
Inmotion (10% cpu resource, inefficient tech support)<br />
Globat ($4/Month for 1TB of space, but it&#8217;s so slow it would take you 12 months to fill it up!)</p>

		<div class='author-shortcodes'>
			<div class='author-inner'>
				<div class='author-image'>
			<img src='http://green.cx/wp-content/themes/GCX7/timthumb.php?src=http://green.cx/wp-content/blogs.dir/1/files/2011/03/K-M-Rehan-Salahuddin-2.jpg&amp;w=57&amp;h=57&amp;zc=1' alt='' />
			<div class='author-overlay'></div>
		</div> <!-- .author-image --> 
		<div class='author-info'>
			K M Rehan Salahuddin is an Opinion writer for different media &amp; Newspapers. He has freelanced for different media for years before he has started professional career. Currently working at Eximlabs Ltd Hong Kong as Chief of Public Relations (www.sortoflife.com &amp; www.sortofmag.com).
		</div> <!-- .author-info --> K M Rehan Salahuddin has become a Icon figure among the youth for founding Eximlabs Ltd Bangladesh back in 2001 at the age of 19. The company has created a big crowd as it served 188 clients in a period of 15months to create/design/host various websites/databases/servers. To peruse higher education he left the company at 2002. At 2009 he has again joined back the company and registered it as a Limited Company at Hong Kong. K M Rehan Salahuddin has been awarded best National Debater at 2004. For his charity works and great achievements in study he has also been awarded with Provincial Recognition Certificate at 2007. He is much known as Soul among the young generation for his continuous effort to support the environment and the society. He has published a poetry book &#8220;Truth of life&#8221; at 2008. He is currently studying as a phd student at PR China. K M Rehan Salahuddin&#8217;s interests are broad but there are some specific interest like World Affairs, E Marketing &amp; Technology.
			</div> <!-- .author-inner -->
		</div> <!-- .author-shortcodes -->]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/online-tools/unlimited-hosting-and-hidden-disappointments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hostable giving away 3 years of free hosting</title>
		<link>http://green.cx/software/free-software/hostable-giving-away-3-years-of-free-hosting/</link>
		<comments>http://green.cx/software/free-software/hostable-giving-away-3-years-of-free-hosting/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 19:42:32 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2369</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/4.original.png" width="659" height="87" alt="" title="Free Software" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Since 1999, Hostable a webhosting provider, has recently begun offering for a limited time, an unlimited hosting plan for new customers. There is no specific time mentioned in the official Hostable website about the dead line. So hurry up, You&#8217;ve got nothing to lose by purchasing the Unlimited Hosting with Hostable. &#160; It&#8217;s worth noting that you do have to pay 0.99 [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/4.original.png" width="659" height="87" alt="" title="Free Software" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><h2><span class='et-tooltip'>**UPDATED**<span class='et-tooltip-box'>Scroll down for new information about this offer from Hostable<span class='et-tooltip-arrow'></span></span></span><span style="font-size: 13px; font-weight: normal;"><img class="alignnone size-full wp-image-2370" title="Hostable" src="http://green.cx/files/2011/03/Hostable.png" alt="" width="348" height="112" /></span></h2>
<p>Since 1999, Hostable a webhosting provider, has recently begun offering for a limited time, an <strong>unlimited hosting plan</strong> for new customers. There is no specific time mentioned in the official <a title="Hostable Website" title='Original Link: http://www.hostable.com/'  href="http://green.cx/?shs4RATB" target="_blank">Hostable website</a> about the dead line. So hurry up, You&#8217;ve got nothing to lose by purchasing the <strong>Unlimited Hosting with Hostable</strong>.</p>
<p style="text-align: center;">&nbsp;</p>
<p>It&#8217;s worth noting that you do have to pay <strong>0.99 USD one time setup fee</strong> to verify as a human to avail this <strong>unlimited web hosting plan for 3 years</strong>. After 3 years the recurring bill amount will be $6 USD / month.  Take a look at the <a title="Hostable Comparison Review" title='Original Link: http://hostable.com/how-we-compare.aspx'  href="http://green.cx/?CJ7fuoVX" target="_blank">comparison chart of Hostable</a> to see how they stand againt other leading web hosting providers.</p>
<p>My only fear is that the service like this could easily be over sold and performance run into the ground. It&#8217;s full featured hosting, and includes many extras like unlimited databases etc etc&#8230; <strong>I will do a follow-up with a review of the service.</strong> They mention backups daily, but they are not free, you have to pay $5 bucks a month. Still, not bad for free. I mean really, what do you have to lose?</p>
<h2>*UPDATE*</h2>
<p>After doing some digging, I found a few things out thanks the the fine folks at .<br />
According to one person named &#8220;FatWallet&#8221; who said</p>

		<div class='et-testimonial-box'>
			<div class='et-testimonial-content'>
			    <div class='et-testimonial clearfix'>
					
			<div class='t-img'>
				<img src='http://green.cx/wp-content/themes/GCX7/timthumb.php?src=http://green.cx/wp-content/blogs.dir/1/files/2011/03/Red-Green.jpg&amp;w=57&amp;h=57&amp;zc=1;' alt='FatWallet' />
				<span class='t-overlay'></span>
			</div>
		
					Reportedly owned by Brinkster, which ain&#8217;t great according to reviews:</p>
<p>http://www.webhostingjury.com/reviews/Brinkster</p>
<p>http://www.webhostingstuff.com/review/Brinkster.html</p>
<p>http://www.reviewcentre.com/reviews97571.html</p>
<p>Some folks on Slickdeals complaining about extremely slow speed&#8230;. so, you might get what you&#8217;re paying for.
And read this:Hostable reserves the right to charge an early termination fee of $35.
As noted on Slickdeals:To all the people using PayPal, VCCs or Visa gift cards thinking that means that you can forget about it in 3 years. Don&#8217;t be so certain of that. Yes, doing all those things will mean they will not be able to charge you automatically, but that doesn&#8217;t mean that they can&#8217;t bill you and you&#8217;ll still owe the money. You are agreeing to the automatic renewal when you sign up. Thus if they can&#8217;t charge your card automatically, they have the legal right to send it off to collections. The safest thing to do is to cancel it in 3 years before your renewal date. I think saving your credit history is worth a minute of your time. If you don&#8217;t think things like this happen, check out the complaints about 1&amp;1 web hosting. That&#8217;s exactly what they do. People who signed up with VCCs or had expired CC on file, got sent directly to collections. Once you are in collections, it&#8217;s a hassle to remove it from your credit report even if you pay it off.
					<div class='t-info'>
						<span class='t-author'>FatWallet</span>
						<span class='t-position'>RedFlagDeals.com Forums</span>
					</div>
				</div>
		    </div>
		    <div class='t-bottom-arrow'></div>
			<div class='t-bottom-shadow'></div>
		</div>]]></content:encoded>
			<wfw:commentRss>http://green.cx/software/free-software/hostable-giving-away-3-years-of-free-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anatomy of a WordPress Theme</title>
		<link>http://green.cx/web-resources/anatomy-of-a-wordpress-theme/</link>
		<comments>http://green.cx/web-resources/anatomy-of-a-wordpress-theme/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 20:23:43 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Cheat Sheets]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[factsheet]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2342</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Yoast had this great info graphic about wordpress I just had to share with everyone. I reposted here for posterity&#8217;s sake because I think this would be usefull down the line for reference as well. Although this does do a great job of going through all the caveats to a traditional theme, not all theme adhere to this model. Some WordPress themes range from very [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p>Yoast had this great info graphic about wordpress I just had to share with everyone. I reposted here for posterity&#8217;s sake because I think this would be usefull down the line for reference as well. Although this does do a great job of going through all the caveats to a traditional theme, not all theme adhere to this model. Some WordPress themes range from very creative to the totally bizarre. I recently wrote a theme that doesn&#8217;t strictly adhere to this mantra because of the unique requirements of the design, I took a not so traditional approach, but it was all for the ease of use for the blogger.</p>
<p><a href="http://green.cx/files/2011/03/anatomy-wordpress-yoast.png"><img class="aligncenter size-full wp-image-2343" title="anatomy-wordpress-yoast" src="http://green.cx/files/2011/03/anatomy-wordpress-yoast.png" alt="" width="570" height="3045" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/anatomy-of-a-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Theme: 2Clone</title>
		<link>http://green.cx/web-resources/free-theme-2clone/</link>
		<comments>http://green.cx/web-resources/free-theme-2clone/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 08:22:26 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Web Stuff]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[2Clone]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Style Sheet]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://green.cx/?p=2325</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/>Well I got bored one night, and you know how bored evenings can go and I created a Shiny new WordPress 3+ theme named 2Clone. TL;DR&#8230; Goto bottom for Demo and Download Links Why? I&#8217;ve been thinking of 2leep a lot lately and thought that their layout would make for an interesting theme. So I [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/40.original.png" width="659" height="87" alt="" title="Web Stuff" /><br/><p>Well I got bored one night, and you know how bored evenings can go <img src='http://green.cx/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  and I created a Shiny new <a class="zem_slink" title="WordPress" rel="homepage" title='Original Link: http://wordpress.org'  href="http://green.cx/?7t4QWBGV">WordPress 3+</a> theme named 2Clone.</p>
<p style="text-align: center;"><strong>TL;DR&#8230; Goto bottom for Demo and Download <a title="Links" href="http://green.cx/links/">Links</a></strong></p>
<h1 style="text-align: left;"><strong>Why?</strong></h1>
<p>I&#8217;ve been thinking of <a title='Original Link: http://2leep.com'  href="http://green.cx/?yUGmUELy" target="_blank">2leep</a> a lot lately and thought that their layout would make for an interesting theme. So I set out on making it into a wordpress theme, cause it looked like it would be easy and a good place to start off as my first theme. Yes, this is my first WordPress Theme I&#8217;ve ever released, so be kind, but any pointers is appreciated. The concept behind this theme is not to make a link exchange, or to spoof 2leep. It&#8217;s actually a pretty neat theme when you start playing with it. Contributions are also welcome, in the form of code or cash! Just let me know what you think in the comments!</p>
<h2>Features</h2>
<ul>
<li><strong>Full Auto Thumbnails</strong>. Don&#8217;t worry about them, other than setting the cache folder to 777</li>
<li>Front Page sorts posts by Comments, Most Views,Randomly(Shuffle) and by Newest<br />
(Tracked Automatically via Custom Post MetaData aka Custom Fields)</li>
<li>Custom Menu for the Top nav. Simpley choose what categories you want and add them to the menu.</li>
<li>Best Ever, just add any post to a category called &#8220;Featured&#8221; and it gets on the front page.<br />
(Similar to sticky posts, but the posts are kept seperate)</li>
<li><strong>VERY</strong> <em>Minimal</em> theme, <strong><em>only Two images, and one css file</em>!</strong></li>
<li>Colors easy to change, only two green colors in css, find and replace for whole new look!</li>
<li>7 Widget areas, Sidebar 1, Sidebar 2, Pre Header, Header,Pre Article,Post Article, Footer</li>
<li>WordPress 3 Required for Menus and Post Queries</li>
<li>A Very  Simple Theme, means few files to edit, and loads very fast! My own demo site loads in under 2 seconds, without caching!</li>
</ul>
<p>The Second Menu (menu2.php) Has 5 Hard-coded <a title="links" href="http://green.cx/links/">links</a>:</p>
<ul>
<li><strong>New</strong> &#8211; Newest posts on top.</li>
<li><strong>Lately Popular</strong> &#8211; Shows Posts with most views on top (Uses Custom Field to store post views, so the number of views can be edited if desired)</li>
<li><strong>Shuffle</strong> &#8211; Shows Random Posts.</li>
<li><strong>Best Ever</strong> &#8211; Shows the &#8220;Featured&#8221; category. Requires Slug to be /category/Featured/ &#8211; changable via menu2.php.</li>
<li><strong>Commented</strong> &#8211; Shows posts with most comments on top.</li>
</ul>
<p>All of the above was achieved via WordPress 3 api&#8217;s, so <strong>NO PLUGINS REQUIRED</strong>! Woot!!</p>
<p><em>Creative Commons Attribution Required</em>. All free things come with strings attached now-a-days, so just leave the footer <a title="links" href="http://green.cx/links/">links</a> alone. That&#8217;s all there is to it! I&#8217;m thinking about selling a no Attribution version for those interested.</p>
<h1>Planned Features to come:</h1>
<ul>
<li>Random Posts Widget for the sidebars</li>
<li>Custom Category and Tag pages to mimmik the out pages</li>
<li>Custom Post Templates, for making posts the redirect to external urls if desired or to look different.</li>
<li>RSS <a title="Links" href="http://green.cx/links/">Links</a></li>
<li>Better  Comments</li>
<li>Post Ratings? Maybe&#8230;</li>
<li>?? Open to suggestions ??</li>
</ul>
<h2><strong>Installation</strong></h2>
<p>Simple themes require a little more footwork to setup, so after you upload it, let&#8217;s get it on with a checklist!</p>
<ul>
<li>Step 1: Logo! Change it by replacing /images/2logo.jpg with your own!</li>
<li>Step 2: <a class="zem_slink" title="Chmod" rel="wikipedia" title='Original Link: http://en.wikipedia.org/wiki/Chmod'  href="http://green.cx/?uCRv2wnD">CHMOD</a> the cache folder to 777 this is where timthumb saves thumbnails to make your site load faster.</li>
<li>Step 3: Create a Menu, and save it as the Primary menu.  ( Apearance -&gt; Menus )</li>
</ul>
<p>&nbsp;</p>
<p>Colorization</p>
<ul>
<li>Edit style.css and do a Find/Replace on #66AE3E to change the theme color.</li>
<li>Article box hover color is #d3eac7 in the <a class="zem_slink" title="Cascading Style Sheets" rel="wikipedia" title='Original Link: http://en.wikipedia.org/wiki/Cascading_Style_Sheets'  href="http://green.cx/?KyNAnYOk">CSS</a> to change</li>
</ul>
<p>&nbsp;</p>
<h2>Screenshots</h2>
<p><a href="http://green.cx/files/2011/03/2Clone-Home.png"><img class="aligncenter size-large wp-image-2334" title="2Clone - Home" src="http://green.cx/files/2011/03/2Clone-Home-600x768.png" alt="" width="600" height="768" /></a></p>
<h2>Demo &amp; Download</h2>
<a href='http://2clone.green.cx' class='small-button smallgreen'><span>View 2Clone Live Demo</span></a>
<a href='http://bit.ly/2clone' class='small-button smallblue'><span>Download 2Clone WordPress Theme</span></a>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/free-theme-2clone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 190/346 queries in 0.463 seconds using apc

Served from: potpiedeluxe.com @ 2012-02-09 19:26:12 -->
