<?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>wehuberconsultingllc.com &#187; CSS/WebDesign</title>
	<atom:link href="http://wehuberconsultingllc.com/wordpress/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://wehuberconsultingllc.com/wordpress</link>
	<description></description>
	<lastBuildDate>Fri, 28 Oct 2011 16:15:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Jeditable and Classic ASP</title>
		<link>http://wehuberconsultingllc.com/wordpress/2010/02/05/jeditable-and-classic-asp/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2010/02/05/jeditable-and-classic-asp/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:18:36 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2010/02/05/jeditable-and-classic-asp/</guid>
		<description><![CDATA[This week I implemented a grid style application using Classic ASP and Jeditable. The hardest part of implementing this application was trying to figure out what a save.asp version of save.php would look like. Here the template I created. No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This week I implemented a grid style application using Classic ASP and <a title="Jeditable - Edit In Place Plugin For jQuery" href="http://www.appelsiini.net/projects/jeditable">Jeditable</a>. The hardest part of implementing this application was trying to figure out what a save.asp version of save.php would look like. Here the template I created.</p>
<pre class="brush: vb; title: ; notranslate">
&lt;%
dim sID, sValue,errorcode dim field1,field2,field3,field4
'The sID is a spreadsheet style ID
'As an example B3 would be the second editable field
'for DB ID field = 3
sID = request(&quot;id&quot;)
sValue = request(&quot;value&quot;)
sType = mid(sID,1,1)
sDataID = mid(sID,2)
'We have four editable fields
'The changed field will not be null
field1 = null
field2 = null
field3 = null
field4 = null
errorcode = 0
select case sType
case &quot;A&quot;
field1 = sValue
case &quot;B&quot;
field2 = sValue
case &quot;C&quot;
field3 = sValue
case &quot;D&quot;
field4 = sValue
case else
errorcode = 1
end select
if errorcode = 0 then
'Validate and update the data base
end if
if errorcode = 0 then
'Send back the value field
Response.Write sValue
else
Response.Write &quot;&lt;b&gt;!Error &quot; &amp; errorcode &amp; &quot;&lt;/b&gt;&quot;
end if
%&gt; </pre>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2010/02/05/jeditable-and-classic-asp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE8 Compatibility Problem Solved!</title>
		<link>http://wehuberconsultingllc.com/wordpress/2009/04/04/ie8-compatibility-problem-solved/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2009/04/04/ie8-compatibility-problem-solved/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 14:07:05 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2009/04/04/ie8-compatibility-problem-solved/</guid>
		<description><![CDATA[I fixed the IE8 Compatibility Problem I talked about previously. The login screen was missing some of the most basic HTML tags. I have seen several early ASP files that ignored the basic HTML tags and page structure. Since the page worked with the current browsers there was no need to fix it even though [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I fixed the <a href="http://wehuberconsultingllc.com/wordpress/2009/03/23/ie8-compatibility-problem/">IE8 Compatibility Problem</a> I talked about previously. The login screen was missing some of the most basic HTML tags. I have seen several early ASP files that ignored the basic HTML tags and page structure. Since the page worked with the current browsers there was no need to fix it even though it had HTML validation errors. I am not sure which missing tag caused the problem but adding the &lt;html&gt;, &lt;head&gt;, and &lt;body&gt; tags fixed the problem.&#160; <img src='http://wehuberconsultingllc.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2009/04/04/ie8-compatibility-problem-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE8 Compatibility Problem</title>
		<link>http://wehuberconsultingllc.com/wordpress/2009/03/23/ie8-compatibility-problem/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2009/03/23/ie8-compatibility-problem/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 11:50:20 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2009/03/23/ie8-compatibility-problem/</guid>
		<description><![CDATA[I have been pretty busy this year with a move to a new warehouse so I did not get around to checking IE8 out until last week. So I installed the released version of IE8 for a quick checkout. It is scheduled to go on automatic updates in late April. The first screen I tried [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I have been pretty busy this year with a move to a new warehouse so I did not get around to checking IE8 out until last week. So I installed the released version of IE8 for a quick checkout. It is scheduled to go on automatic updates in late April. The first screen I tried failed. All I got was a blank screen. No error messages at all! We use this screen to login to the administrative side of our web site. It is a classic ASP page with HTML validation issues that was written long before I got here. I tried to quickly fix the HTML validation errors but ASP barfed up some cryptic error codes with the HTML fixes I tried. So I am leaving this nugget for next week while I work on the issues my boss is most concerned about. Since I am old, I have a few rules about computer programming maintenance that keeps management happy with me. </p>
<ul>
<li>Rule #1 – Don’t fix things that are not broken. </li>
<li>Rule #2 – Don’t fix things that they do not ask you to fix. </li>
</ul>
<p>Until last week both of these rules applied.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2009/03/23/ie8-compatibility-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Christmas WordPress Theme For Free Download &#124; Freebies &#124; Smashing Magazine</title>
		<link>http://wehuberconsultingllc.com/wordpress/2008/12/29/christmas-wordpress-theme-for-free-download-freebies-smashing-magazine/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2008/12/29/christmas-wordpress-theme-for-free-download-freebies-smashing-magazine/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 16:48:48 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[webdesign wordpress]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2008/12/29/christmas-wordpress-theme-for-free-download-freebies-smashing-magazine/</guid>
		<description><![CDATA[A big thanks to the folks at Smashing Magazine and InstantShift for offering a free Christmas theme. The festive mood of the theme motivated me to embark on a web site conversion over the weekend.


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<blockquote><p>We may be a little bit late to the Christmas party, but late is usually better than never. In this post we release a very <strong>compact, magazine-like theme</strong> designed especially for events such Christmas. We hope that the theme may be useful not only for this Christmas, but can also be used in general, for various purposes. This theme was designed by <a href="http://www.instantshift.com">InstantShift</a> as an exclusive Christmas gift for Smashing Magazine readers.</p></blockquote>
<p><a href="http://www.smashingmagazine.com/2008/12/24/christmas-wordpress-theme/">Christmas WordPress Theme For Free Download | Freebies | Smashing Magazine</a></p>
<p>A big thanks to the folks at Smashing Magazine and InstantShift for offering a free Christmas theme. The festive mood of the theme motivated me to embark on a web site conversion over the weekend. I had been meaning to switch our farm web site, <a href="http://www.legacyfarmltd.com">www.legacyfarmltd.com</a>, from phpWebsite to WordPress for several months but I always found a reason to not work on it. Installing WordPress 2.7 and the Christmas theme was almost effortless compared to the process of duplicating old posts and pages. It was nice that they included the PSD for the logo. I cranked up my portable copy of GIMP and after a few minutes of re-learning GIMP/PhotoShop I had a custom logo that fit the Christmas theme. Although I will have to change the theme in the next few weeks soon since Christmas is over, the theme layout and fonts look like a good base to work from.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2008/12/29/christmas-wordpress-theme-for-free-download-freebies-smashing-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimental Mail Server Analyzer Online</title>
		<link>http://wehuberconsultingllc.com/wordpress/2008/08/23/experimental-mail-server-analyzer-online/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2008/08/23/experimental-mail-server-analyzer-online/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 13:07:52 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[dns security]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2008/08/23/experimental-mail-server-analyzer-online/</guid>
		<description><![CDATA[Dan Kaminsky wrote a post about an Experimental Mail Server Analyzer Online. This might have helped me with a problem I was dealing with earlier this month. I am not sure whether my problem is related to what he is trying to accomplish but here is my problem description and resolution. At the place I [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Dan Kaminsky wrote a post about an <a title="Link to Experimental Mail Server Analyzer Online" href="http://www.doxpara.com/?p=1223">Experimental Mail Server Analyzer Online</a>. This might have helped me with a problem I was dealing with earlier this month. I am not sure whether my problem is related to what he is trying to accomplish but here is my problem description and resolution. </p>
<p>At the place I am working our customer service representatives said they were getting a lot of customer complaints about order confirmation emails never arriving. I did a little pivot table analysis on the event log and found a lot of SMTP 4000 and 4006 warnings. The frequency of the errors started escalating on July 29th. The good news is that I had not applied any patches in that time frame. The 4006 warning message I was familiar with since I had fixed a naked line feed issue in June. The 4006 warning message also appears when a customer enters their email address incorrectly so I expect to see it in the event log but at low levels. The 4000 warning message was new and said “Unable to bind to the destination server in DNS”. The problem appeared to be intermittent since not all emails were failing. However when I ran NSLOOKUP on the web site for the mail server that appeared in the 4000 message, it failed. When I used NSLOOKUP on my workstation to look up that same server, it worked.&#160; The DNS used by the web server was failing for a group of mail servers. The solution was very simple. Although both the ISP help desk and I thought the web site had local problems and needed a mid-day reboot, the help desk changed our domain name server. Based on their initial testing they did not think they had fixed the problem. I suspect they used ping to try and verify the mail server. Since a lot of people have turned off ping responses on their mail servers, I looked at the event log. I could see that the problem was probably fixed. The 4000 messages had disappeared completely and the mail queue was emptying. The 4006 messages went down to previous levels, too. In fact they are at a level slightly lower than I had noticed before the problem. </p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2008/08/23/experimental-mail-server-analyzer-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Picks and Pans on my del.icio.us favorites for last week</title>
		<link>http://wehuberconsultingllc.com/wordpress/2008/07/06/quick-picks-and-pans-on-my-delicious-favorites-for-last-week/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2008/07/06/quick-picks-and-pans-on-my-delicious-favorites-for-last-week/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 13:45:31 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[webdesign security sql]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2008/07/06/quick-picks-and-pans-on-my-delicious-favorites-for-last-week/</guid>
		<description><![CDATA[Build a Generic Histogram Generator for SQL Server Histograms help people analyze large amounts of data, whether you display them as tables or as charts. This article shows you how to do both. &#8230; 1 day ago JkDefragGUI &#8211; Freeware made by Emiel Wieldraaijer &#8230; saved by 488 other people &#8230; 1 day ago VirusTotal [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<blockquote><ul>
<li>
<p><a href="http://www.devx.com/dbzone/Article/38511">Build a Generic Histogram Generator for SQL Server</a></p>
<p>Histograms help people analyze large amounts of data, whether you display them as tables or as charts. This article shows you how to do both. </p>
<p>&#8230; 1 day ago</p>
</li>
<li>
<p><a href="http://www.emro.nl/freeware/">JkDefragGUI &#8211; Freeware made by Emiel Wieldraaijer</a></p>
<p>&#8230; <a href="http://del.icio.us/url/a1641c99e377acaad16bd1ce843ea41b">saved by 488 other people</a> &#8230; 1 day ago</p>
</li>
<li>
<p><a href="http://www.virustotal.com/">VirusTotal &#8211; Free Online Virus and Malware Scan</a></p>
<p>&#8230; <a href="http://del.icio.us/url/7f911bbcf618f052ac6b9928600d2820">saved by 1677 other people</a> &#8230; 1 day ago</p>
</li>
<li>
<p><a href="http://feeds.feedburner.com/~r/GoogleOnlineSecurityBlog/~3/324447250/meet-ratproxy-our-passive-web-security.html">Meet ratproxy, our passive web security assessment tool</a></p>
<p>&#8230; <a href="http://del.icio.us/url/bc78dd4116c64ea5b3a05fa82e188ff7">saved by 1 other person</a> &#8230; 4 days ago</p>
</li>
<li>
<p><a href="http://support.microsoft.com/kb/954476">The Microsoft Source Code Analyzer for SQL Injection tool is available to find SQL injection vulnerabilities in ASP code</a></p>
<p>&#8230; <a href="http://del.icio.us/url/06ebbcb99df323fda20d2c110282c3c4">saved by 50 other people</a> &#8230; 5 days ago</p>
</li>
<li>
<p><a href="http://feeds.feedburner.com/~r/techtarget/Searchsecurity/SecurityWire/~3/323298626/0,289142,sid14_gci1319360,00.html">PCI Requirement 6.6 has merchants gearing up</a></p>
<p>&#8230; 5 days ago</p>
</li>
</ul>
</blockquote>
<ol>
<li>The Histogram Generator for SQL Server looks interesting but I think I will work on making pivot tables easier to use first. </li>
<li>I tried JkDefrag last week. I like the look and feel of the <a href="http://www.auslogics.com/">Auslogics</a> defrag tool. JkDefragGUI makes JkDefrag a little easier to use and adds a few features. Both tools are nice upgrades to the standard defrag tool. </li>
<li>VirusTotal is a nice way to generate hashes for downloadable files. </li>
<li>I need to check Ratproxy out. Ultimately I would like to compare this to <a href="http://www.owasp.org/index.php/Category:OWASP_WebScarab_Project">WebScarab</a>. I need to read this Google <a href="http://code.google.com/p/ratproxy/wiki/RatproxyDoc">document</a> again and play with to figure out why Google re-invented the wheel. </li>
<li>Microsoft’s contribution to fight against SQL Injection would have been more appreciated if it worked for me. It did not generate a report for me. The program was more than willing to tell me that I did not have it configured properly. When I finally had it configured properly, the result is no report?! </li>
<li>PCI 6.6 is a mess. I am suspicious that the firewall option will ever be a cost effective solution for retail web servers. My first run at automated code analysis was inconclusive. I believe that low cost automated and manual code analysis are probably the best cost to benefit options. </li>
</ol>
<p><a href="http://del.icio.us/wehuberconsultingllc">wehuberconsultingllc&#8217;s favorites on del.icio.us</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2008/07/06/quick-picks-and-pans-on-my-delicious-favorites-for-last-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writer Zone: Technical Preview: Now Available for Download</title>
		<link>http://wehuberconsultingllc.com/wordpress/2008/06/03/writer-zone-technical-preview-now-available-for-download/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2008/06/03/writer-zone-technical-preview-now-available-for-download/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 10:56:43 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ livewriter]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2008/06/03/writer-zone-technical-preview-now-available-for-download/</guid>
		<description><![CDATA[One of my favorite tools has been updated. It alludes to the possibility of integrating Writer with a couple of services and technologies I have been looking at integrating, Flickr and Lightbox. I was almost motivated enough to try my hand at writing a plugin a while back. The most obvious change is that the [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>One of my favorite tools has been updated. It alludes to the possibility of integrating Writer with a couple of services and technologies I have been looking at integrating, Flickr and Lightbox. I was almost motivated enough to try my hand at writing a plugin a while back. The most obvious change is that the interface has been revamped. I have looked but I cannot find how Lightbox gets integrated. The Insert Picture dialog has a web interface. I will check out the web interface to Flickr shortly.</p>
<p><a href="http://windowslivewriter.spaces.live.com/blog/cns!D85741BB5E0BE8AA!1508.entry">Writer Zone: Technical Preview: Now Available for Download</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2008/06/03/writer-zone-technical-preview-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8250; WordPress Automatic upgrade &#171; WordPress Plugins</title>
		<link>http://wehuberconsultingllc.com/wordpress/2008/04/26/wordpress-wordpress-automatic-upgrade-wordpress-plugins/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2008/04/26/wordpress-wordpress-automatic-upgrade-wordpress-plugins/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 20:10:04 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2008/04/26/wordpress-wordpress-automatic-upgrade-wordpress-plugins/</guid>
		<description><![CDATA[I have been using this plugin for almost a year. When it works it is great! When I upgraded to WordPress 2.5 I started having a problem with the final two steps, reactivating the plugins and going to the final page. Before I could activate the plugins I had to upgrade the data base. Then [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I have been using this plugin for almost a year. When it works it is great! When I upgraded to WordPress 2.5 I started having a problem with the final two steps, reactivating the plugins and going to the final page. Before I could activate the plugins I had to upgrade the data base. Then I had to log back in to the blog. At this point the automatic plugin was lost and gave me a screen with &quot;Are you sure you want to do this?&quot; All the plugin could do at this point was to clean up the installation. I had to manually activate my plugins.</p>
<p>Today I figured out that if I remove the wp_nonce stuff at the end of the line I could get the automatic upgrade plugin to continue. Wp_nonce is a security feature. I think it is primarily used with forms but it can be used with links. About the only source on this function is the <a href="http://michaeldaw.org/papers/securing_wp_plugins">Writing Secure WordPress Plugins</a> post by David Kierznowski. I think when I have to log back into WordPress, wp_nonce thinks I am breaking in and slams the door shut. From a plugin design standpoint I am not sure there is a need for this type of security at this point since all I want to do is activate my plugins and get my log report. I guess I will comment out lines 392-394 so the plugin will work.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-automatic-upgrade/">WordPress &#8250; WordPress Automatic upgrade &#171; WordPress Plugins</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2008/04/26/wordpress-wordpress-automatic-upgrade-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cutline 1.3 Released &#124; Cutline Theme for WordPress</title>
		<link>http://wehuberconsultingllc.com/wordpress/2008/04/26/cutline-13-released-cutline-theme-for-wordpress/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2008/04/26/cutline-13-released-cutline-theme-for-wordpress/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 17:56:04 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2008/04/26/cutline-13-released-cutline-theme-for-wordpress/</guid>
		<description><![CDATA[I upgraded to WordPress 2.5.1 today and my old theme broke. I have been looking at Cutline for some time but I have not been motivated enough to commit the time.&#160; Today I had the motivation. I am really pleased that I had it ready to go in about thirty minutes. Cutline 1.3 Released &#124; [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I upgraded to WordPress 2.5.1 today and my old theme broke. I have been looking at Cutline for some time but I have not been motivated enough to commit the time.&#160; Today I had the motivation. I am really pleased that I had it ready to go in about thirty minutes.</p>
<p><a href="http://cutline.tubetorial.com/cutline-13-released/">Cutline 1.3 Released | Cutline Theme for WordPress</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2008/04/26/cutline-13-released-cutline-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.htaccess changes can break LiveWriter</title>
		<link>http://wehuberconsultingllc.com/wordpress/2008/04/02/htaccess-changes-can-break-livewriter/</link>
		<comments>http://wehuberconsultingllc.com/wordpress/2008/04/02/htaccess-changes-can-break-livewriter/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 21:18:48 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[CSS/WebDesign]]></category>
		<category><![CDATA[ livewriter]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://wehuberconsultingllc.com/wordpress/2008/04/02/htaccess-changes-can-break-livewriter/</guid>
		<description><![CDATA[Recently I changed some of my sites to not use the &#34;www&#34; on the front of the URL. It was a little tricky but I got it working right. The first part is to change WordPress to use shorter URL. The second part of the change was to modify the .htaccess file. I found that&#160; [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Recently I changed some of my sites to not use the &quot;www&quot; on the front of the URL. It was a little tricky but I got it working right. The first part is to change WordPress to use shorter URL. The second part of the change was to modify the .htaccess file. I found that&#160; the post, <a href="http://perishablepress.com/press/2008/01/16/comprehensive-htaccess-canonicalization-for-wordpress/">Comprehensive URL Canonicalization via htaccess for WordPress-Powered Sites</a>, helped me the most. I checked it in a browser and everything looked fine. Much later I tried to write a post in LiveWriter and it did not work. It gave me the following error message.</p>
<p><code>blogger.getUsersBlogs method received from the weblog server was invalid</code></p>
<p>After a little debugging I figured out I could get rid of the problem if I refreshed my account settings for the web sites with the new .htaccess file. I guess LiveWriter is picky about the web site URL.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wehuberconsultingllc.com/wordpress/2008/04/02/htaccess-changes-can-break-livewriter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.444 seconds -->

