<?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; Work</title>
	<atom:link href="http://www.wacdesigns.com/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wacdesigns.com</link>
	<description>What about Creativity ?</description>
	<lastBuildDate>Tue, 07 Sep 2010 18:27:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>
		<item>
		<title>Virtualization using VirtualBox</title>
		<link>http://www.wacdesigns.com/2008/06/06/virtualization-using-virtualbox/</link>
		<comments>http://www.wacdesigns.com/2008/06/06/virtualization-using-virtualbox/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 02:00:28 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=134</guid>
		<description><![CDATA[Microsoft Virtual PC, which is a quiet efficient tool but needs licences to work with. Today while browsing the web i came to get accross a free open source alternative: VirtualBox I installed it, had a copy of Linux Ubuntu and created it new virtual guest OS, it took me about 1 hour to set]]></description>
			<content:encoded><![CDATA[<p>Microsoft Virtual PC, which is a quiet efficient tool but needs licences to work with. Today while browsing the web i came to get accross a free open source alternative: <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a></p>
<p>I installed it, had a copy of Linux Ubuntu and created it new virtual guest OS, it took me about 1 hour to set everything up.<br />
From VirtualBox website:</p>
<blockquote><p><span class="searchword0">VirtualBox</span> is a family of powerful x86 <a class="wiki" href="http://www.virtualbox.org/wiki/Virtualization">virtualization</a> products for enterprise as well as home use. Not only is <span class="searchword0">VirtualBox</span> an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL). See &#8220;<a class="wiki" href="http://www.virtualbox.org/wiki/VirtualBox">About <span class="searchword0">VirtualBox</span></a>&#8221; for an introduction.</p>
<p>Presently, <span class="searchword0">VirtualBox</span> runs on Windows, Linux, Macintosh and OpenSolaris hosts and supports a large number of <a class="wiki" href="http://www.virtualbox.org/wiki/Guest_OSes">guest operating systems</a> including but not limited to Windows (NT 4.0, 2000, XP, Server 2003, Vista), DOS/Windows 3.x, Linux (2.4 and 2.6), and OpenBSD.</p>
<p><span class="searchword0">VirtualBox</span> is being actively developed with frequent releases and has an ever growing list of features, supported guest operating systems and platforms it runs on. <span class="searchword0">VirtualBox</span> is a community effort backed by a dedicated company: everyone is encouraged to contribute while Sun ensures the product always meets professional quality criteria.</p></blockquote>
<p>That said, I seriously encourage any developer, who needs Virtual OS to run, to either to make a development platform or doing test.</p>
<p>Here are some screen shots of running Windows XP and Ubuntu Linux.<br />
<a href="http://www.wacdesigns.com/wp-content/uploads/2008/06/starting_virtualbox.jpg"><img class="alignleft size-medium wp-image-138" title="starting_virtualbox" src="http://www.wacdesigns.com/wp-content/uploads/2008/06/starting_virtualbox-300x187.jpg" alt="" width="300" height="187" /></a><a href="http://www.wacdesigns.com/wp-content/uploads/2008/06/running_ubuntu.jpg"><img class="alignnone size-medium wp-image-137" title="running_ubuntu" src="http://www.wacdesigns.com/wp-content/uploads/2008/06/running_ubuntu-300x187.jpg" alt="" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/06/virtualization-using-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 30 skills every IT person should have</title>
		<link>http://www.wacdesigns.com/2008/06/04/the-30-skills-every-it-person-should-have/</link>
		<comments>http://www.wacdesigns.com/2008/06/04/the-30-skills-every-it-person-should-have/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 02:00:15 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Internet Articles]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Skills]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=135</guid>
		<description><![CDATA[I found this article on infoworld.com it was written by Richard Casselberry. Here are some of them you can read the rest of the article here. 1. Be able to fix basic PC issues. These can be how to map a printer, back up files, or add a network card. You don&#8217;t need to be]]></description>
			<content:encoded><![CDATA[<p>I found this article on infoworld.com it was written by Richard Casselberry. Here are some of them you can read the rest of the article <a href="http://www.infoworld.com/archives/emailPrint.jsp?R=printThis&amp;A=/article/08/06/02/23FE-how-to-fire-IT-staff-skills-list_1.html" target="_blank">here</a>.</p>
<p><span class="artText"></p>
<blockquote>
<p class="ArticleBody"><strong>1. Be able to fix basic PC issues.</strong> These can be how to map a printer, back up files, or add a network card. You don&#8217;t need to be an expert and understand how to overclock a CPU or hack the registry, but if you work in IT, people expect you to be able to do some things.</p>
<p class="ArticleBody"><strong>[ If</strong> <strong>you have IT staffers who aren't up to snuff, fire them. <a class="regularArticleU" href="http://www.infoworld.com/article/08/06/02/23FE-how-to-fire-it-staff_1.html">Learn how to do it right.</a> ]</strong></p>
<p class="ArticleBody"><strong>2. Work the help desk.</strong> Everyone, from the CIO to the senior architect, should be able to sit down at the help desk and answer the phones. Not only will you gain a new appreciation for the folks on the phones, but you will also teach them more about your process and avoid escalations in the future.</p>
<p class="ArticleBody"><strong>3. Do public speaking.</strong> At least once, you should present a topic to your peers. It can be as simple as a five-minute tutorial on how IM works, but being able to explain something and being comfortable enough to talk in front of a crowd is a skill you need to have. If you are nervous, partner with someone who is good at it, or do a roundtable. This way, if you get flustered, someone is there to cover for you.</p>
<p class="ArticleBody"><strong>4. Train someone.</strong> The best way to learn is to teach.</p>
<p class="ArticleBody"><strong>5. Listen more than you speak.</strong> I very rarely say something I didn&#8217;t already know, but I often hear other people say things and think, &#8220;Darn, I wish I knew that last week.&#8221;</p>
</blockquote>
<p class="ArticleBody"><a href="http://www.infoworld.com/archives/emailPrint.jsp?R=printThis&amp;A=/article/08/06/02/23FE-how-to-fire-IT-staff-skills-list_1.html" target="_blank">Read more&#8230;</a></p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/04/the-30-skills-every-it-person-should-have/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelancing, Online jobs for professionals</title>
		<link>http://www.wacdesigns.com/2008/06/02/freelancing-online-jobs-for-professionals/</link>
		<comments>http://www.wacdesigns.com/2008/06/02/freelancing-online-jobs-for-professionals/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 02:00:00 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[Online Job]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=113</guid>
		<description><![CDATA[Nowadays many professionals in different activity sector offers their services and expertise through freelance portals. These portals are websites were you can post job offerings and register as a freelance to take job offerings. In terms of business, you can bargain and get the work done at an affordable price with expert professionals. So where]]></description>
			<content:encoded><![CDATA[<p>Nowadays many professionals in different activity sector offers their services and expertise through freelance portals. These portals are websites were you can post job offerings and register as a freelance to take job offerings. In terms of business, you can bargain and get the work done at an affordable price with expert professionals.</p>
<p>So where is the catch ? Why doesn&#8217;t everyone go online and work as a freelancer ?</p>
<p>It&#8217;s quiet simple, before getting a Job online it can take quiet a while you must register to several websites either paid or non paid, then apply for job positions that fits your expertise, wait for an answer and if you are accepted start working. When working as a freelancer you are not bound by any long term contract many a time, you get to work on a module for 1 month and when the job is done, you simply have to get to the entire process again, which can sometimes take several weeks before you get another job. So being a freelance is a tedious and long process, but it is quiet a remunerative process, since you get to work on different project and gain much more experience.</p>
<p>Since I have expertise in Web Technology and Programming here are some websites that i am registered to.</p>
<p><img src="file:///C:/DOCUME~1/JEAN-F~1/LOCALS~1/Temp/moz-screenshot-3.jpg" alt="" /></p>
<h3>Guru.com</h3>
<p><img class="alignleft size-medium wp-image-117" title="Guru.com Logo" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/guru_logo.jpg" alt="Guru.com Logo" width="76" height="77" /><a title="Guru.com" href="http://www.guru.com" target="_blank"> Guru.com</a> was launched August 2000 (as A2Zmoonlighter.com)<br />
<strong>It&#8217;s Mission:</strong> To provide the most efficient platform to connect and perform transactions with freelance professionals locally, nationally, and globally.</p>
<p><img class="aligncenter size-full wp-image-116" title="Guru.com Baseline" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/guru_exp.jpg" alt="Guru.com Baseline" width="499" height="93" /></p>
<h3>Odesk.com</h3>
<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_logo.gif"><img class="alignleft size-medium wp-image-118" title="odesk logo" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_logo.gif" alt="odesk logo" width="147" height="60" /></a> <a title="Odesk" href="http://www.odesk.com" target="_blank">Odesk.com</a> was created in 2003<br />
<strong>It&#8217;s Mission:</strong> Build the world&#8217;s best network of technology service providers through screening, testing, and feedback<br />
Offer the platform that lets buyers successfully hire, manage, and pay service providers from around the world</p>
<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_exp.jpg"><img class="aligncenter size-full wp-image-119" title="odesk platform" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_exp.jpg" alt="odesk platform" width="500" height="147" /></a></p>
<h3>thecodingmachine.com</h3>
<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_logo.jpg"><img class="alignleft size-medium wp-image-120" title="tcm_logo" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_logo-300x35.jpg" alt="The Coding Machine Logo" width="300" height="35" /></a> <a title="The Coding Machine" href="http://www.thecodingmachine.com" target="_blank">thecodingmachine.com</a> was launched in late 2006<br />
<strong>It&#8217;s Mission:</strong> offers you IT services. Thanks to a new approach, your projects can be delivered quicker and at lower cost.<br />
Has created a web platform and linked together coders from all over the world.<br />
<a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_exp.jpg"><img class="aligncenter size-medium wp-image-121" title="tcm_exp" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_exp-300x39.jpg" alt="" width="300" height="39" /></a></p>
<p>There are many for website offering job posting and freelance work but, there are a the one i experienced with and i find them pretty good tools to deal with when you are searching for a job online to share your expertise.</p>
<p>Leave your comment on other sites that might be good, I&#8217;ll review them and update this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/02/freelancing-online-jobs-for-professionals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exception: Collection was modified; enumeration operation may not execute.</title>
		<link>http://www.wacdesigns.com/2008/05/28/collection-was-modified-enumeration-operation-may-not-execute/</link>
		<comments>http://www.wacdesigns.com/2008/05/28/collection-was-modified-enumeration-operation-may-not-execute/#comments</comments>
		<pubDate>Wed, 28 May 2008 03:00:37 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Exception]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=80</guid>
		<description><![CDATA[It&#8217;s been a while that i didn&#8217;t get this Exception, while working, and yesterday, while I was performing some test on]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while that i didn&#8217;t get this Exception, while working, and yesterday, while I was performing some test on</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/05/28/collection-was-modified-enumeration-operation-may-not-execute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT Workers gaining weigh and possible health problem</title>
		<link>http://www.wacdesigns.com/2008/05/23/it-workers-gaining-weigh-and-possible-health-problem/</link>
		<comments>http://www.wacdesigns.com/2008/05/23/it-workers-gaining-weigh-and-possible-health-problem/#comments</comments>
		<pubDate>Fri, 23 May 2008 02:00:34 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=77</guid>
		<description><![CDATA[I&#8217;ve just found a nice article that talks of a study performed by CareerBuilder.com, it talks about how IT workers have begun to gain weigh just by sitting all day in front of their computers . Let&#8217;s just hear what they have to say. Here is a little intro: Feeling a little, shall we say,]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just found a nice article that talks of a study performed by <strong><a title="careerbuilder.com" href="http://careerbuilder.com/" target="_blank">CareerBuilder.com</a></strong>, it talks about how IT workers have begun to gain weigh just by sitting all day in front of their computers <img src='http://www.wacdesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Let&#8217;s just hear what they have to say.</p>
<p>Here is a little intro:</p>
<blockquote><p>Feeling a little, shall we say, sluggish lately? You might be among the vast ranks of IT workers who have put on some extra heft while sitting at their desks.</p>
<p>A study by <a title="careerbuilder.com" href="http://careerbuilder.com" target="_blank"><strong>CareerBuilder.com</strong></a> found that half of U.S. IT workers have gained weight at their current jobs.</p>
<p>The study, which polled nearly 7,700 participants from Feb. 11 through March 13, found that 34 percent of IT workers report they have gained more than 10 pounds in their current positions. Even more alarming, 17 percent say they have put on more than 20 pounds!&#8230;</p></blockquote>
<p>Read the full article on: <a title="IT Workers Weigh In on Health Habits" href="http://blog.channelinsider.com/content001/channel_chatter/it_workers_weigh_in_on_health_habits.html" target="_blank">IT Workers Weigh In on Health Habits</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/05/23/it-workers-gaining-weigh-and-possible-health-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Padding is invalid and cannot be removed.</title>
		<link>http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/</link>
		<comments>http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 12:32:38 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/</guid>
		<description><![CDATA[Stop Google crawling WebResource.axd &#38; ScriptResource.axd As an ASP.NET developer i often get error message: &#8220;Padding is invalid and cannot be removed&#8221;. It&#8217;s a pretty annoying message that i have been trying to get rid of for days. It was caused by Google trying to index, crawl my WebResource.axd and session. But when the session]]></description>
			<content:encoded><![CDATA[<p><strong>Stop Google crawling WebResource.axd &amp; ScriptResource.axd</strong><br />
As an ASP.NET developer i often get error message: &#8220;Padding is invalid and cannot be removed&#8221;. It&#8217;s a pretty annoying message that i have been trying to get rid of for days. It was caused by Google trying to index, crawl my WebResource.axd and  session. But when the session expires you get this error message. Since Google caches the pages it visits the session on this page has already expired after it is crawled, when it tries to crawl the page again and request the WebResource.axd or ScriptResource.axd with an old key, an exception is raised.</p>
<p>Therefore to solve this problem the simple solution for that is to modify your robots.txt file in your root directory</p>
<p>and add the following at the end</p>
<p>Disallow: /ScriptResource.axd<br />
Disallow:/WebResource.axd</p>
<p>With this no more issues regarding invalid padding.</p>
<p>If this does not solve your issue you can take a look at what other users propose <a title="Google Search Result" href="http://www.google.mu/search?hl=en&amp;q=Padding+is+invalid+and+cannot+be+removed&amp;btnG=Search" target="_blank">here</a>.</p>
<p>Some update on this issue, i found out while googling some days back:</p>
<p>On this post you can find  out  how to compress the webresource.axd and also somewhere in between prevent this error to occur.<br />
<a href="http://mironabramson.com/blog/post/2007/10/New--Shiny--WebResourceaxd-compression-Module.aspx" target="_blank"> http://mironabramson.com/blog/post/2007/10/New&#8211;Shiny&#8211;WebResourceaxd-compression-Module.aspx</a></p>
<p>Use the tool found at the website below to generate a machine key and a  decryption key:<br />
<a href="http://www.orcsweb.com/articles/aspnetmachinekey.aspx" target="_blank"> http://www.orcsweb.com/articles/aspnetmachinekey.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vinivi, the Team</title>
		<link>http://www.wacdesigns.com/2007/10/27/vinivi-the-team/</link>
		<comments>http://www.wacdesigns.com/2007/10/27/vinivi-the-team/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 05:20:50 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Vinivi]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Team]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2007/10/27/vinivi-the-team/</guid>
		<description><![CDATA[Goodbye are always sad, but last week we made a little party for the departure of Noelette from the Vinivi Team. here is a small video introducing all the members of the team. [kml_flashembed movie="Vinvi the Team" width="425" height="335" wmode="transparent" /]]]></description>
			<content:encoded><![CDATA[<p>Goodbye are always sad, but last week we made a little party for the departure of Noelette from the <a title="Vinivi" href="http://www.vinivi.com" target="_blank">Vinivi </a>Team. here is a small video introducing all the members of the team.</p>
<p><code>[kml_flashembed movie="</code><a href="http://www.dailymotion.com/swf/797FZNxK1fvsbnkBb">Vinvi the Team</a><code>" width="425" height="335" wmode="transparent" /]</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2007/10/27/vinivi-the-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time for change !!! new wordpress theme</title>
		<link>http://www.wacdesigns.com/2007/10/25/time-for-change-new-wordpress-theme/</link>
		<comments>http://www.wacdesigns.com/2007/10/25/time-for-change-new-wordpress-theme/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 17:25:18 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2007/10/25/time-for-change-new-wordpress-theme/</guid>
		<description><![CDATA[It&#8217;s been while since i last wrote something on my blog, and also make some changes, these last month have been quiet busy. I first step to get back to the blogging community is to get a lighter look for my blog, and start writing some more post. since i have been doing many interesting]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been while since i last wrote something on my blog, and also make some changes, these last month have been quiet busy. I first step to get back to the blogging community is to get a lighter look for my blog, and start writing some more post. <img src='http://www.wacdesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  since i have been doing many interesting things lately.</p>
<p>So how does my new theme look like ? ( I still have to make some changes thought to accept some ads and so on )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2007/10/25/time-for-change-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sweet monday morning&#8230;</title>
		<link>http://www.wacdesigns.com/2007/10/08/sweet-monday-morning/</link>
		<comments>http://www.wacdesigns.com/2007/10/08/sweet-monday-morning/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 06:15:53 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2007/10/08/sweet-monday-morning/</guid>
		<description><![CDATA[This morning, I woke up early as usual&#8230; had a good night sleep and all Got to the office, did my usual morning check and opened my mail. Suprise, suprise I see that i am really needed :&#62;]]></description>
			<content:encoded><![CDATA[<p>This morning, I woke up early as usual&#8230; had a good night sleep and all <img src='http://www.wacdesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Got to the office, did my usual morning check and opened my mail.</p>
<p>Suprise, suprise I see that i am really needed :&gt;</p>
<p><a title="My Inbox" href="http://www.wacdesigns.com/wp-content/uploads/2007/10/inbox.jpg"><img src="http://www.wacdesigns.com/wp-content/uploads/2007/10/inbox.jpg" alt="My Inbox" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2007/10/08/sweet-monday-morning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
