<?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>Wacdesigns &#187; Web</title>
	<atom:link href="http://www.wacdesigns.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wacdesigns.com</link>
	<description>What about Creativity ?</description>
	<lastBuildDate>Fri, 02 Dec 2011 11:50:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CodeIgniter &#8211; Pagination SEO Issue</title>
		<link>http://www.wacdesigns.com/2010/10/15/codeigniter-pagination-seo-issue/</link>
		<comments>http://www.wacdesigns.com/2010/10/15/codeigniter-pagination-seo-issue/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 13:00:47 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=287</guid>
		<description><![CDATA[I have recently been working with a PHP MVC Framework called CodeIgniter on a complete web application solution.  I have been trying some major framework like CakePHP, Zen and Symphony which where all very powerful framework for MVC and RAD development, the only thing they lack was a bit more of flexibility like CodeIgniter propose. [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently been working with a PHP MVC Framework called <a title="CodeIgniter Website" href="http://codeigniter.com/" target="_blank">CodeIgniter </a>on a complete web application solution.  I have been trying some major framework like CakePHP, Zen and Symphony which where all very powerful framework for MVC and RAD development, the only thing they lack was a bit more of flexibility like CodeIgniter propose. Anyway may not have taken enought time to get to know all of the specifics of the other Frameworks, but while benchmarking i got aquainted to CodeIgniter much faster.</p>
<p>Even though CodeIgniter is a very flexible framework, it&#8217;s very lightweight and some feature for Web application have not been taken into account, that in mind, the people behind <a href="http://ellislab.com/" target="_blank">EllisLab, Inc</a> made sure that these small twigs were easily bypassed by allowing complete customization of their libraries.</p>
<p>Here is my original issue:</p>
<p>I have a item listing page with pagination activated and I wanted the first page to be the the root URL of the item page.<br />
e.g. http://www.mysite.com/items</p>
<p>But what CodeIgniter Pagination Library generated for the first page was: http://www.mysite.com/result/1</p>
<p>That is pretty inconvenient for SEO, because the crawler will find two pages with the same content while crawling the pages.</p>
<p>Thus i modified the CI_Pagination library an created MY_Pagination.</p>
<p>First of all i have added a new variable called first_page_url as class variable in MY_Pagination class</p>
<pre>

class MY_Pagination extends CI_Pagination {

var $first_page_url        = ''; // The first page will have this URL
</pre>
<p>I have changed the original Pagination Library First page rendering from</p>
<pre>

// Render the "First" link
if  ($this-&gt;cur_page &gt; ($this-&gt;num_links + 1))
{
$output .= $this-&gt;first_tag_open.'&lt;a href="'.$this-&gt;base_url.'"&gt;'.$this-&gt;first_link.'&lt;/a&gt;'.$this-&gt;first_tag_close;
}
</pre>
<p>to</p>
<pre>

// Render the "First" link
if  ($this-&gt;cur_page &gt; ($this-&gt;num_links + 1))
{
$output .= $this-&gt;first_tag_open.'&lt;a href="'.$this-&gt;first_page_url == '' ? $this-&gt;base_url : $this-&gt;first_page_url.'"&gt;'.$this-&gt;first_link.'&lt;/a&gt;'.$this-&gt;first_tag_close;
}
</pre>
<p>This way if during the initialization of the Pagination class the configuration setting first_page_url was passed it will be used instead of the base_url.</p>
<p>Some modification were also made to the pagination digit generation from</p>
<pre>

// Write the digit links
for ($loop = $start -1; $loop &lt;= $end; $loop++)
{
$i = ($loop * $this-&gt;per_page) - $this-&gt;per_page;

if ($i &gt;= 0)
{
if ($this-&gt;cur_page == $loop)
{
$output .= $this-&gt;cur_tag_open.$loop.$this-&gt;cur_tag_close; // Current page
}
else
{
$n = ($i == 0) ? '' : $i;
$output .= $this-&gt;num_tag_open.'&lt;a href="'.$this-&gt;base_url.$n.'"&gt;'.$loop.'&lt;/a&gt;'.$this-&gt;num_tag_close;
}
}
}
</pre>
<p>to</p>
<pre>

// Write the digit links
for ($loop = $start -1; $loop &lt;= $end; $loop++)
{
$i = ($loop * $this-&gt;per_page) - $this-&gt;per_page;

if ($i &gt;= 0)
{
if ($this-&gt;cur_page == $loop)
{
$output .= $this-&gt;cur_tag_open.$loop.$this-&gt;cur_tag_close; // Current page
}
else if($loop == 1 &amp;&amp; $this-&gt;first_page_url != '')
{
$output .= $this-&gt;num_tag_open.'&lt;a href="'.$this-&gt;first_page_url.'"&gt;'.$loop.'&lt;/a&gt;'.$this-&gt;num_tag_close;
}
else
{
$n = ($i == 0) ? '' : $i;
$output .= $this-&gt;num_tag_open.'&lt;a href="'.$this-&gt;base_url.$n.'"&gt;'.$loop.'&lt;/a&gt;'.$this-&gt;num_tag_close;
}
}
}
</pre>
<p>which will make sure that the page numbered 1 takes has the first_page_url has href when  first_page_url is available.</p>
<p>The complete file can be found here: <a href="http://www.wacdesigns.com/wp-content/uploads/2010/10/MY_Pagination.zip">MY_Pagination</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2010/10/15/codeigniter-pagination-seo-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO: Bounce rate of a website</title>
		<link>http://www.wacdesigns.com/2008/09/22/seo-bounce-rate-of-a-website/</link>
		<comments>http://www.wacdesigns.com/2008/09/22/seo-bounce-rate-of-a-website/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 15:55:00 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Internet Articles]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Bounce Rate]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2008/09/22/seo-bounce-rate-of-a-website/</guid>
		<description><![CDATA[Why is my bounce rate so high ? Definition: A bounce occurs when a person leaves your website after reaching your entry page. The above cases can be considered equally as bounces from your website. 1) Visitor enters your site and press back immediately (before or even after the page has loaded) 2) Visitor waits [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em></em></strong></p>
<h3>Why is my bounce rate so high ?</h3>
<p><img src="http://s3.amazonaws.com:80/0MA9W84DQNJ4QTT686G2_MyBlogUploads/Photo/3573944_242afda7be.jpg" alt="" /></p>
<p>Definition: A bounce occurs when a person leaves your website after reaching your entry page. The above cases can be considered equally as bounces from your website.</p>
<p>1) Visitor enters your site and press back immediately (before or even after the page has loaded)</p>
<p>2) Visitor waits for the page to load stays on this page for some time and then press back or navigate on another site. ( In this case the visitor might have found the information and then chose to navigate elsewhere to either find some supplementary information. Or it could be that he/she might not have found it but just read some pieces to see what is there, a third case could be the persons did not like the: website, content or colors on the site and went away.)</p>
<p>Therefore there seems to be considerable number of aspects to take into consideration to get a more precise question about “<em>Why is my bounce rate so high ?</em>”. There isn’t any straight forward answer to this question, but there are many questions that can lead to possible solutions:</p>
<p>When you ask your questions about bounce rate here are the different questions that might come to your mind.</p>
<p><span style="text-decoration: underline;">Why is my bounce rate so high ?</span></p>
<p><strong>User Interface<br />
</strong>Is my layout/presentation/design attractive to visitors ?<br />
Does my pages load slowly ?<br />
Do my page have appropriate ads ? Are these ads <em>non-aggressive</em> towards the user ?<br />
Is your page browser friendly ? (Can be views at any resolution with any browser the same way)</p>
<p><strong>Content</strong></p>
<p>Does</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/09/22/seo-bounce-rate-of-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Live Writer</title>
		<link>http://www.wacdesigns.com/2008/09/19/windows-live-writer/</link>
		<comments>http://www.wacdesigns.com/2008/09/19/windows-live-writer/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 15:33:00 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Bloggers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Windows Live Writer]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2008/09/19/windows-live-writer/</guid>
		<description><![CDATA[It’s been not nearly a year since I last used Windows Live Writer, there seems to have been a lot of enhancement and changes compared to the first version that i have tried up. Today, I&#8217;ll be giving a try to the beta version (Build 14.0.5025.904). The setup was quiet easy and straight forward, warning [...]]]></description>
			<content:encoded><![CDATA[<p>It’s been not nearly a year since I last used Windows Live Writer, there seems to have been a lot of enhancement and changes compared to the first version that i have tried up. Today, I&#8217;ll be giving a try to the beta version (Build 14.0.5025.904). The setup was quiet easy and straight forward, warning me that I must enable XML-RPC on my blog before I can continue.</p>
<p>The first thing I installed is the <a href="http://www.codeplex.com/s3browser" target="_blank">S3 Object plug-in</a>, to be able to upload images directly to my Amazon S3 account and use them on this post.</p>
<p><img src="http://s3.amazonaws.com:80/0MA9W84DQNJ4QTT686G2_MyBlogUploads/Photo/WindowsLiveWriterMain.JPG" alt="" width="561" height="480" /></p>
<p>This image comes from my S3 bucket.</p>
<p>There are many feature such as the Insert Map: Let’s try it out and point out Mauritius for example <img src='http://www.wacdesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="scid:84E294D0-71C9-4bd0-A0FE-95764E0368D9:0564affd-941e-4eb5-9b97-d138d39f7d94" class="wlWriterEditableSmartContent" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"><a id="map-1458b467-ce72-4bbc-b6ae-5ac342dc9e9e" title="Click to view this map on Live.com" href="http://maps.live.com/default.aspx?v=2&amp;cp=-20.01295~57.57085&amp;lvl=14&amp;style=a&amp;sp=aN.-20.01553_57.57196_Where%2520I%2520Live%2520%253a)_This%2520is%2520where%2520i%2520live..._http%253a%252f%252fwww.wacdesigns.com%252f2006%252f10%252f18%252fphotos-of-mauritius%252f_http%253a%252f%252fwww.wacdesigns.com%252fwp-content%252fuploads%252f2006%252f10%252fWindowsLiveWriter%252fPhotosofMauritius%25255fB17E%252fPicture%252520-%252520Grand-Bay%252520009%25255B3%25255D.jpg&amp;mkt=en-us&amp;FORM=LLWR"><img src="http://www.wacdesigns.com/wp-content/uploads/2008/09/map6cf1c9909681.jpg" alt="Where i live." width="416" height="312" /></a><br />
<label style="font-size:.8em;" for="map-1458b467-ce72-4bbc-b6ae-5ac342dc9e9e">Where i live.</label></div>
<p>Nice. <span style="text-decoration: line-through;">I have also created a Marker (Push Pin).</span> Which does not seem to appear, When you create a map on Windows Live Messenger, it&#8217;s not the actual map that appears but an image with a link to the actual map&#8230; <img src='http://www.wacdesigns.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Some other comment: There is to a problem, when there are connection cuts. The application just hangs during an operation. It was the case for my first post. Hope that is will be happen.</p>
<p>Conclusion a very nice and elaborated tool for blogging. I’ll will be trying it for a fews days and will send some feedback on this post. Or create a new one if need be.</p>
<p>My previous article to Windows Live Writer can be found <a title="Windows Live Writer Beta" href="http://www.wacdesigns.com/2006/10/13/windows-live-writer-beta/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/09/19/windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>backup and share files using MozyHome and Dropbox</title>
		<link>http://www.wacdesigns.com/2008/09/18/backup-and-share-files-using-mozyhome-and-dropbox/</link>
		<comments>http://www.wacdesigns.com/2008/09/18/backup-and-share-files-using-mozyhome-and-dropbox/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 16:00:17 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[Mozy]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=130</guid>
		<description><![CDATA[If you are wondering what are the choices you have to make share and backup your files, you might easily be able to find hundreds of alternative on the web today. Each one with their different features and technologies. I came across 2 free tools that i use for my backup and file sharing: MozyHome [...]]]></description>
			<content:encoded><![CDATA[<p>If you are wondering what are the choices you have to make share and backup your files, you might easily be able to find hundreds of alternative on the web today. Each one with their different features and technologies.</p>
<p>I came across 2 free tools that i use for my backup and file sharing:</p>
<p>
<h2><a title="MozyHome Remote Backup" href="http://mozy.com/home" target="_blank">MozyHome Remote Backup</a></h2>
</p>
<p>&nbsp;</p>
<p><img class="size-medium wp-image-132 alignnone" title="mozyhome" src="http://www.wacdesigns.com/wp-content/uploads/2008/09/mozyhome-300x116.jpg" alt="" width="300" height="116" /></p>
<p><strong>MozyHome </strong>is a small application that runs on background and backups any folder that you configure it to. It will encrypt and then upload your files to your 2 GB free space. You have several tools to enable you to them restore any lost files. Nice for uploading document, project files. You have also the paid version with unlimited space.</p>
<p>
<h2><a title="Dropbox" href="http://www.getdropbox.com" target="_blank">Dropbox</a></h2>
</p>
<p>&nbsp;</p>
<p><img class="alignnone size-medium wp-image-131" title="dropbox" src="http://www.wacdesigns.com/wp-content/uploads/2008/09/dropbox-300x154.jpg" alt="" width="300" height="154" /></p>
<p>Dropbox is a new tool, that just got public last week. It&#8217;s similar to Mozybackup with 2 GB free space and the posibility of backup your files. With some extra features such as file sharing and automatic sync. Personally I use it to share files only. Since your files need to be in the DropDox folder (Similar concept and LiveMSN sharing folder) to be able to share.</p>
<p>It also allows sharing of files and give you a nice public URL that you can easily send to the person you want to share your files with. The only lacking features i might see here, is that you can&#8217;t share an entire folder with files inside. i.e When you want to share several photos you can&#8217;t directly get a link to the folder. You must share it with someone that already has Dropbox. A feature that would enable a link to a zip version of an entire folder could be nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/09/18/backup-and-share-files-using-mozyhome-and-dropbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IIS: Redirection from non-www to www domain</title>
		<link>http://www.wacdesigns.com/2008/08/08/iis-redirection-from-non-www-to-www-domain/</link>
		<comments>http://www.wacdesigns.com/2008/08/08/iis-redirection-from-non-www-to-www-domain/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 02:00:42 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=121</guid>
		<description><![CDATA[The problem today, is that we have a great asp.net website but search engines are indexing the http://greataspnetwebsite.com instead of http://www.greataspnetwebsite.com, this is commonly seen on the web and there are several ways to archive a good result for making the non-www to www domain. This redirection should be a 301 Permanently Moved, otherwise you [...]]]></description>
			<content:encoded><![CDATA[<p>The problem today, is that we have a great asp.net website but search engines are indexing the <a href="#">http://greataspnetwebsite.com</a> instead of <a href="#">http://www.greataspnetwebsite.com</a>, this is commonly seen on the web and there are several ways to archive a good result for making the non-www to www domain. This redirection should be a <strong>301 Permanently Moved</strong>, otherwise you will might lose your search engine indexed page or become duplicate content for your non-www and www domain. Here are easy steps how to archive a quick and clean Permanent Redirection using IIS.</p>
<p>Consider the case where we already have a website in IIS called: greataspnetwebsite.com</p>
<ul>
<li>Go to IIS Manager</li>
<li>Create a new website that point to the same directory as your existing one</li>
<li>Select the newly created website, open the properties box</li>
<li>In the option button <span style="color: black;">&#8220;When connecting to this resource the      content should come from&#8221; should be </span>change to &#8220;<span style="color: black;">A redirection to a URL</span>&#8220;</li>
<li>Specify the URL http://www.greataspnetwebsite.com</li>
<li>Select the check box <span style="color: black;">that      says &#8220;A permanent redirection for this resource.&#8221; </span></li>
</ul>
<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/08/iisredirectionsetting.jpg"><img class="alignnone size-full wp-image-123" title="iis redirection setting" src="http://www.wacdesigns.com/wp-content/uploads/2008/08/iisredirectionsetting.jpg" alt="" width="430" height="211" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/08/08/iis-redirection-from-non-www-to-www-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET: HyperLink and Label without Id attribute</title>
		<link>http://www.wacdesigns.com/2008/08/04/aspnet-hyperlink-and-label-without-id-attributes/</link>
		<comments>http://www.wacdesigns.com/2008/08/04/aspnet-hyperlink-and-label-without-id-attributes/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 02:00:54 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=98</guid>
		<description><![CDATA[Today, I&#8217;ll talk a bit about how ASP.NET handles HTML rendering of controls such as &#60;asp:HyperLink&#62; and &#60;asp:Label&#62;.]]></description>
			<content:encoded><![CDATA[<p>Today, I&#8217;ll talk a bit about how ASP.NET handles HTML rendering of controls such as &lt;asp:HyperLink&gt; and &lt;asp:Label&gt;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/08/04/aspnet-hyperlink-and-label-without-id-attributes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sourceforge.net redesigned home page</title>
		<link>http://www.wacdesigns.com/2008/07/24/sourceforgenet-redesigned-home-page/</link>
		<comments>http://www.wacdesigns.com/2008/07/24/sourceforgenet-redesigned-home-page/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 09:32:14 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Cool Sites]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[sourceforge]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=93</guid>
		<description><![CDATA[While searching for some open source software today, i just bumbed onto a &#8220;new&#8221;: Streamed and clearer version of sourceforge.net website. It&#8217;s quiet nice i may say, when u enter the page, u don&#8217;t have a lot of stuff, like the normal one. It&#8217;s a Google like home page i may say, not many actions, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/07/sourceforge.jpg"><img class="alignleft size-thumbnail wp-image-94" title="sourceforge" src="http://www.wacdesigns.com/wp-content/uploads/2008/07/sourceforge-150x150.jpg" alt="" width="150" height="150" /></a>While searching for some open source software today, i just bumbed onto a &#8220;new&#8221;: Streamed and clearer version of <a title="SourceForge" href="http://sourceforge.net/?abmode=1" target="_blank">sourceforge.net</a> website. It&#8217;s quiet nice i may say, when u enter the page, u don&#8217;t have a lot of stuff, like the normal one.</p>
<p>It&#8217;s a Google like home page i may say, not many actions, but the essentials that are needed is visible. Let&#8217;s say is more web 2.0</p>
<p>The bright orange is a bit too flashy and takes up too much of the screen i may think. It could have been a bit smaller.</p>
<p>For those who don&#8217;t what sourceforge.net is about here is a part of the description from wikipedia:</p>
<blockquote><p><strong>SourceForge.net</strong> is a <a title="Source code repository" href="http://en.wikipedia.org/wiki/Source_code_repository" target="_blank">source code repository</a> and acts as a centralized location for software developers to control and manage open source software development. SourceForge.net is operated by <a title="Sourceforge, Inc." href="http://en.wikipedia.org/wiki/Sourceforge%2C_Inc." target="_blank">Sourceforge, Inc.</a> (formerly VA Software) and runs a version of the <a title="SourceForge Enterprise Edition" href="http://en.wikipedia.org/wiki/SourceForge_Enterprise_Edition" target="_blank">SourceForge</a> software, <a title="Fork (software development)" href="http://en.wikipedia.org/wiki/Fork_%28software_development%29" target="_blank">forked</a> from the last open-source version available. A large number of open source projects are hosted on the site (it had reached 178,832 projects and 1,861,990 registered users<sup id="cite_ref-1" class="reference"><a href="http://en.wikipedia.org/wiki/SourceForge#cite_note-1" target="_blank">[2]</a></sup> as of 2008, although it does contain many dormant or single-user projects).</p>
<p>SourceForge.net has offered free access to hosting and tools for developers of <a title="Free software" href="http://en.wikipedia.org/wiki/Free_software" target="_blank">free software</a> / <a title="Open source software" href="http://en.wikipedia.org/wiki/Open_source_software" target="_blank">open source software</a> for several years, and has become well-known within such development communities for these services.</p>
<p>SourceForge.net competes with other providers such as <a title="RubyForge" href="http://en.wikipedia.org/wiki/RubyForge" target="_blank">RubyForge</a>, <a title="Tigris.org" href="http://en.wikipedia.org/wiki/Tigris.org" target="_blank">Tigris.org</a>, <a title="BountySource" href="http://en.wikipedia.org/wiki/BountySource" target="_blank">BountySource</a>, <a title="BerliOS" href="http://en.wikipedia.org/wiki/BerliOS" target="_blank">BerliOS</a>, <a title="JavaForge" href="http://en.wikipedia.org/wiki/JavaForge" target="_blank">JavaForge</a> and <a title="GNU Savannah" href="http://en.wikipedia.org/wiki/GNU_Savannah" target="_blank">GNU Savannah</a>.</p>
<p>Read more about sourceforge <a title="Wikipedia  Sourceforge" href="http://en.wikipedia.org/wiki/SourceForge" target="_blank">here</a>.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/07/24/sourceforgenet-redesigned-home-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo! Search BOSS</title>
		<link>http://www.wacdesigns.com/2008/07/11/yahoo-search-boss/</link>
		<comments>http://www.wacdesigns.com/2008/07/11/yahoo-search-boss/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 05:45:54 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Internet Articles]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search BOSS]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=149</guid>
		<description><![CDATA[Yahoo has just opened his search engine to us developer folks, we can now mindle and medle about to improve our search result on our own website. The codename for this open API is BOSS (Build your Own Search Service). As describe in zdnet article: is this a way for Yahoo to try to get [...]]]></description>
			<content:encoded><![CDATA[<p>Yahoo has just opened his search engine to us developer folks, we can now mindle and medle about to improve our search result on our own website. The codename for this open API is BOSS (Build your Own Search Service). As describe in <a title="Yahoo’s desperate search times call for open source" href="http://blogs.zdnet.com/BTL/?p=9282&amp;tag=nl.e539" target="_blank">zdnet article</a>: is this a way for Yahoo to try to get some market shares in the search industry on GOOG.</p>
<p>Here is an extract from <a title="Yahoo! Search BOSS YDN" href="http://developer.yahoo.com/search/boss/" target="_blank">Yahoo! Search BOSS YDN</a></p>
<p style="padding-left: 30px;">BOSS (Build your Own Search Service) is Yahoo!&#8217;s open search web services platform. The goal of BOSS is simple: to  foster innovation in the search industry. Developers, start-ups, and large Internet companies can use BOSS to  build and launch web-scale search products that utilize the entire Yahoo! Search index. BOSS gives you access  to Yahoo!&#8217;s investments in crawling and indexing, ranking and relevancy algorithms, and powerful  infrastructure. By combining your unique assets and ideas with our search technology assets, BOSS is  a platform for the next generation of search innovation, serving hundreds of millions  of users across the Web.</p>
<p><img src="http://l.yimg.com/a/i/ydn/boss/boss_info4.gif" alt="Yahoo! Search BOSS" width="625" height="140" /></p>
<p>I&#8217;ll try to experiment a bit on it, to see if i can get to integrate the search on this blog for a small&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/07/11/yahoo-search-boss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abode Flash is Google and Yahoo Index friendly</title>
		<link>http://www.wacdesigns.com/2008/07/02/abode-flash-is-google-and-yahoo-index-friendly/</link>
		<comments>http://www.wacdesigns.com/2008/07/02/abode-flash-is-google-and-yahoo-index-friendly/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 05:39:48 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Internet Articles]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=148</guid>
		<description><![CDATA[Here we are, the day that many developers, specially Flash developer has been waiting for&#8230; their application can now be crawled and indexed by Google and Yahoo search engine this was officially announced by adobe on tuesday: &#8220;to enhance search engine indexing of the Flash file format (SWF) and uncover information that is currently undiscoverable [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://www.adobe.com/shockwave/download/images/flashplayer_100x100.jpg" alt="Adobe Flash Logo" width="100" height="100" />Here we are, the day that many developers, specially Flash developer has been waiting for&#8230; their application can now be crawled and indexed by Google and Yahoo search engine this was officially announced by adobe on tuesday: &#8220;to enhance search engine indexing of the Flash file format (SWF) and uncover information that is currently undiscoverable by search engines.&#8221;</p>
<p>They have been working together with Google and Yahoo for a way to give access to all the information that can be found in Flash application that have been hanging around the web for the some times now.</p>
<p>So what does that mean, in the Web world: Flash developers that have strived to create faboulous flash websites and application, that could only be reached via direct linking, will now be seen in Google and Yahoo search result, WOW this means millions of Flash application links will make their appearance in the day to day searching on GOOG.</p>
<p>From my point of view this is something really good. But what will happen to AJAX application with fancy effects ? will they not be replaced by Flash which is now INDEXABLE <img src='http://www.wacdesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  natively by the web crawler. From what i know from the internal working of flash, their are series of events that are triggered to be able to navigate in an application, so when the crawler will index it, will it be by pages or by scene&#8230; What will be the effect of this changes on the Web 2.0 era ?</p>
<p>i&#8217;ll make some research to see how it will be working and maybe post back something here. If anyone has extra information or reaction to this post, do not hesitate to post a comment.</p>
<p>Here is an article from ZDNET:</p>
<blockquote><p>It’s a big day for rich Internet applications. Why? You can now find these newfangled Web applications a lot easier. Google, Yahoo and Adobe have teamed to make Flash file format content easier to find&#8230;.</p></blockquote>
<p><a title="A boon to the Webtop: Adobe makes indexing Flash in search easier" href="http://blogs.zdnet.com/BTL/?p=9224&amp;tag=nl.e539" target="_blank">Read more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/07/02/abode-flash-is-google-and-yahoo-index-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS Log Archiving</title>
		<link>http://www.wacdesigns.com/2008/06/24/iis-log-archiving/</link>
		<comments>http://www.wacdesigns.com/2008/06/24/iis-log-archiving/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 05:58:09 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=145</guid>
		<description><![CDATA[You need to archive your IIS Log often so as not to get your log folder full with HTTP Logs. I have been searching for some quick implemented solutions for performing this IIS Log archiving task and found some quiet nice discussions and article about it. Here are the links to the different post and [...]]]></description>
			<content:encoded><![CDATA[<p>You need to archive your IIS Log often so as not to get your log folder full with HTTP Logs.</p>
<p>I have been searching for some quick implemented solutions for performing this IIS Log archiving task and found some quiet nice discussions and article about it. Here are the links to the different post and forums that talk about a solution to solve this issue:</p>
<p><a href="http://blogs.thesitedoctor.co.uk/tim/2007/02/10/Automatically+Delete+Old+IIS+Log+Files.aspx" target="_blank">http://blogs.thesitedoctor.co.uk/tim/2007/02/10/Automatically+Delete+Old+IIS+Log+Files.aspx</a></p>
<p><a href="http://www.iislogs.com/" target="_blank">http://www.iislogs.com/</a> (Tool to automate maintenance of IIS Log)<a href="http://www.iislogs.com/" target="_blank"><br />
</a></p>
<p><a href="http://forums.webhostautomation.com/showthread.php?t=5053" target="_blank">http://forums.webhostautomation.com/showthread.php?t=5053</a></p>
<p><a href="http://forums.iis.net/p/1022450/1388469.aspx" target="_blank">http://forums.iis.net/p/1022450/1388469.aspx</a></p>
<p>On my side i need something with a bit more functionality so, i modified some of the scripts that i could find on the different article related above and came up with a solution that can.</p>
<ul>
<li>Compress each log file found in your websites folder</li>
<li>FTP the compressed files on a foreign server ( Keeping historic of your IIS log ) Uses <a title="Chillkat Free FTP ActiveX" href="http://www.chilkatsoft.com/chilkatftp.asp" target="_blank">Chillkat Free FTP ActiveX</a></li>
<li>Delete them from your disk afterward</li>
</ul>
<p>You can launch this process everyday and there will be no log that is older than a specified number of days on your server.</p>
<p>Requirement for this solution to work:</p>
<ul>
<li><a title="FTP ActiveX Download" href="http://www.chillkatsoft.com/download/FtpActiveX.msi" target="_blank">Chillkatsoft FTP.1 ActiveX</a></li>
<li><a title="Gzip" href="http://www.gzip.org/" target="_blank">gzip archiver</a></li>
</ul>
<p>You can download the script <a title="IIS Log Archiver" href="http://www.wacdesigns.com/wp-content/uploads/2008/06/IISLogarchiver.zip" target="_blank">here</a>.</p>
<p>See the entire script in the <a title="IIS Log Archiving" href="http://www.wacdesigns.com/2008/06/24/iis-log-archiving/" target="_self">full post</a>.</p>
<p><span id="more-86"></span><br />
[sourcecode language='vb']Option Explicit</p>
<p>Const ftpSite = &#8220;yourftpsite&#8221;<br />
Const ftpUsername = &#8220;ftpusername&#8221;<br />
Const ftpPassword = &#8220;ftppassword&#8221;<br />
Const bDEBUG = True<br />
Const zipProgram = &#8220;C:\gzip\gzip.exe&#8221; &#8216; Path to your gzip utility<br />
Const zipExtension = &#8220;.gz&#8221;</p>
<p>Dim objFSO, objFolder, objF, objWS<br />
Dim strYear, strDay, strMonth, strDate<br />
Dim strBaseFTPPath<br />
Dim bFTPUpload</p>
<p>bFTPUpload = False</p>
<p>&#8216;If no arguments passed quit the script<br />
If WScript.Arguments.Count = 0 Then<br />
WScript.Echo &#8220;weblogs.vbs startdirectory [ftppath]&#8221;<br />
WScript.Quit (1)<br />
End If</p>
<p>&#8216;Check if there is the FTP path Argument sent<br />
If WScript.Arguments.Count > 1 Then<br />
bFTPUpload = True<br />
strBaseFTPPath = wscript.arguments (1)<br />
End If</p>
<p>strDate</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/24/iis-log-archiving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.wacdesigns.com/category/web/feed/ ) in 1.11021 seconds, on Feb 4th, 2012 at 8:34 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 11th, 2012 at 8:34 am UTC -->
