<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>FrankDzedzy.com</title>
	
	<link>http://frankdzedzy.com</link>
	<description>A blog about IT</description>
	<lastBuildDate>Thu, 05 Mar 2009 13:12:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Frankdzedzycom" /><feedburner:info uri="frankdzedzycom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
		<title>Hard Drive Failure</title>
		<link>http://frankdzedzy.com/2009/03/05/hard-drive-failure/</link>
		<comments>http://frankdzedzy.com/2009/03/05/hard-drive-failure/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 13:12:07 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=77</guid>
		<description><![CDATA[Upon arriving at work yesterday morning, I was greeted by a blue screen with a KERNEL_STACK_INPAGE_ERROR message and a STOP: 0X00000077 code.  As I rebooted the box, I received an UNMOUNTABLE_BOOT_VOLUME with STOP: 0XC0000185.  Some quick research on another computer showed that these codes were indicative of a bad hard drive.   And Dell Diagnostics returned [...]]]></description>
			<content:encoded><![CDATA[<p>Upon arriving at work yesterday morning, I was greeted by a blue screen with a KERNEL_STACK_INPAGE_ERROR message and a STOP: 0X00000077 code.  As I rebooted the box, I received an UNMOUNTABLE_BOOT_VOLUME with STOP: 0XC0000185.  Some quick research on another computer showed that these codes were indicative of a bad hard drive.   And Dell Diagnostics returned error code 0142 with status byte 78 when it checked the hard drive.  I called Dell with error and I should have my replacement hard drive today.  Ironically the previous day, I cleaned up my box, placing all my essential files onto my share on the san.  There were a few older backups and software installations that I didn&#8217;t save, but I can always redownload the software.  It has been very annoying and counter productive the last two days to use an older underpowered workstation that I found under a desk.  It is frustrating not to have all the tools I normally use frequently not installed.  This situation has made me think harder about experimenting with VDI.  Having a virtual desktop stored on our san would be very helpful.  I could install the tools I typically use and set it up just the way I want to without have to worry about hardware failure.  This has been the first drive fail on a workstation I have used that was no longer usable at all.  I attempted to read the drive with a Knoppix cd and was unsuccessful.  Makes me wish I could have RAID on my workstation similar to the servers I manage.  That way I could avoid having to resetup my work environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2009/03/05/hard-drive-failure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring User Agent Strings</title>
		<link>http://frankdzedzy.com/2008/12/09/exploring-user-agent-strings/</link>
		<comments>http://frankdzedzy.com/2008/12/09/exploring-user-agent-strings/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 20:16:14 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=71</guid>
		<description><![CDATA[During a weekend install of new firewalls in my main production datacenter we also had an IBM Proventia Intrusion Prevention System installed.  The device is set for learning mode for a while before it will start blocking nefarious traffic.  I was alerted today by the datacenter which also manages the IPS that we had a [...]]]></description>
			<content:encoded><![CDATA[<p>During a weekend install of new firewalls in my main production datacenter we also had an IBM Proventia Intrusion Prevention System installed.  The device is set for learning mode for a while before it will start blocking nefarious traffic.  I was alerted today by the datacenter which also manages the IPS that we had a large number of events for HTTP_UserAgent_Too_Long.  After requesting more detail on the events I was sent a document with several hundred pages of information.  This info included source IP, http request, User Agent, and more.</p>
<p>The event triggered for User Agents that were longer than 200 characters, which is also Microsoft&#8217;s recommendation for maximum user agent lengths.  The vulnerability is in some http servers that will cause a buffer overflow and thus denial of service when the user agent is too long.Â  I found a tool described <a href="http://searchsoftwarequality.techtarget.com/tip/0,289483,sid92_gci1213336,00.html">here</a> and downloadable <a href="http://www.net-security.org/software.php?id=452">here</a> to generate large http requests.  I ran this against a test web server with IIS and found that it never crashed the server even though I generated user agent string of several million characters.  Java seemed to crash on the client before I ever affected the web server.  (I did find that I received a URI too long when I put about 19,500 characters in the get statement.)  So I determined that my servers were not affected by this vulnerability.</p>
<p>I noticed in the events that were sent to me that the user agents all looked legitimate.  Most were between 200 and 250 characters, so they weren&#8217;t far over the limit.  They were all Internet Explorer strings with many .Net versions displayed.  So I spent some time googling user agent strings and found several good articles and sites that I have linked to below.</p>
<p>The User Agent is a string that is sent during an http request that provides the web server with information on the browser being used and the platform it is running on.  Microsoft provides a good summary <a href="http://msdn.microsoft.com/en-us/library/ms537503.aspx">here</a>. You can see what the user agent of your browser is by going to:  <a href="http://whatsmyuseragent.com/">http://whatsmyuseragent.com/</a> .  When I went to this site using firefox (my default browser) I received this:  <code>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4</code>.  Checking my user agent from IE revealed:  <code>Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)</code> I found a good <a href="http://www.hanselman.com/blog/TheNETFrameworkAndTheBrowsersUserAgentString.aspx">article</a> that discusses .net and the user agent string.  One point that I noticed was that .net truncates the string to 256 characters.</p>
<p>I also found this <a href="http://www.walkernews.net/2007/07/05/how-to-change-user-agent-string/">site</a> that describes how to change the user agent string in various browsers.  <a href="http://www.user-agents.org/index.shtml">This site</a> is a searchable database of user agents.  And <a href="http://www.user-agents.org/index.shtml">this</a> is an interesting article on a string sniffer that collects strings into a database.  Another interesting <a href="http://www.botsvsbrowsers.com/">site</a> lists IP addresses and their known user agents and whether they are a bot or browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/12/09/exploring-user-agent-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Symantec bug</title>
		<link>http://frankdzedzy.com/2008/11/11/another-symantec-bug/</link>
		<comments>http://frankdzedzy.com/2008/11/11/another-symantec-bug/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 20:52:32 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=70</guid>
		<description><![CDATA[Yesterday I found a fix to a problem I have been having with my Symantec antivirus server.Â  For a while now, every time I tried to unlock the server group in System Center I received this message:Â  &#8220;Error: Can&#8217;t communicate with the Server Goup. Verify Network Connectivity and that machines are operating within the Group! [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I found a fix to a problem I have been having with my Symantec antivirus server.Â  For a while now, every time I tried to unlock the server group in System Center I received this message:Â  &#8220;Error: Can&#8217;t communicate with the Server Goup. Verify Network Connectivity and that machines are operating within the Group! If problem persists, try clearing the Server Group cache and re-discovering all Server Groups.&#8221; after a brief timeout.Â  I ignored it for a while since I didn&#8217;t really need to do anything to the group and the server was running fine otherwise.Â  But yesterday I found this <a href="http://www.tek-tips.com/viewthread.cfm?qid=1116899&amp;page=7">forum thread</a> and <a href="http://service1.symantec.com/support/ent-security.nsf/docid/2005082415100448?Open&amp;src=w">this article</a> from Symantec describing a fix to the problem.Â  Apparently there is a registry DWORD value at &#8220;HKEY_LOCAL_MACHINE\SOFTWARE\Intel\LanDesk\VirusProtect6\CurrentVersion\ScSComms\LocalData&#8221; called &#8220;LoginCaCertIssueSerialNum&#8221;.Â  This is a counter that increments each time the group is unlocked.Â  Once the value exceeds 256, the group becomes unable to be unlocked.Â  Setting the value back to 1 fixed the problem immediatly for me.Â  I found this right after I had opened a case with Symantec, and a tech called me right after I fixed the problem on my own.Â  Of course he had the same solution, but I asked him why this is set up like this and he had no answer.Â  According to Symantec&#8217;s article this is fixed in version 10.0.2, and my server is just behind that.Â  It needs to be upgraded anyway.Â  I have seen so many strange bugs in Symantec software, but they aren&#8217;t <a href="http://securityandthe.net/2008/11/10/avg-virus-scanner-removes-critical-windows-file/">the only ones</a> with issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/11/11/another-symantec-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trip To Toronto</title>
		<link>http://frankdzedzy.com/2008/07/14/trip-to-toronto/</link>
		<comments>http://frankdzedzy.com/2008/07/14/trip-to-toronto/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 02:29:54 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[My Life]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=69</guid>
		<description><![CDATA[In the morning I will be flying up to Toronto for my first business trip out of the country.Â  I will be setting up a new datacenter for the company I work for in a Sungard facility in Mississauga, a suburb of Toronto Ontario Canada.Â  Due to Canadian laws, we must keep all our customer&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>In the morning I will be flying up to Toronto for my first business trip out of the country.Â  I will be setting up a new datacenter for the company I work for in a Sungard facility in Mississauga, a suburb of Toronto Ontario Canada.Â  Due to Canadian laws, we must keep all our customer&#8217;s data inÂ Canada in order to do business in there.Â  So we are putting in an exact replica of our production system but with canadian customer data.Â  I will be putting in 6 physical servers and plenty of networking equipment.Â  3 are ESX hosts with 4 virtual servers each.Â  This is gonna be interesting to see how virtualizing our system works out.Â  From my experience setting up the servers in our office, I think it is going to work great giving us enhanced performance and flexibility while lowering our equipment costs.Â </p>
<p>There is one problem with this trip though.Â  We shipped the equipment on the second of July.Â  It cleared customs in the middle of last week, but DHL has no idea where the stuff is now.Â  Hopefully we can find the equipment tomorrow, so that we have time to install before the end of the week.Â  I have another trip planned to our datacenter in Phoenix beginning on Sunday so it is going to be an interesting couple of weeks.Â  Of course my papers and finals for my online classes fall in these two weeks too.Â  But the experience will be good&#8230;as long as we can locate the servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/07/14/trip-to-toronto/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Missing Network</title>
		<link>http://frankdzedzy.com/2008/07/07/the-missing-network/</link>
		<comments>http://frankdzedzy.com/2008/07/07/the-missing-network/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 20:43:17 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=68</guid>
		<description><![CDATA[I had to make a small change to the network of a QA box I manage.Â  So I logged in, via remote desktop using a domain admin account and went to the open the network connection.Â  Which was missing.Â  An ipconfig confirmed that I did haveÂ a network address, and of course it was working since [...]]]></description>
			<content:encoded><![CDATA[<p>I had to make a small change to the network of a QA box I manage.Â  So I logged in, via remote desktop using a domain admin account and went to the open the network connection.Â  Which was missing.Â  An ipconfig confirmed that I did haveÂ a network address, and of course it was working since I was accessing the machine remotely.Â  Very puzzling.Â  A reboot did not solve the problem either.Â  Since it is working, I&#8217;m not gonna mess with it.Â  I took this screenshot to document the problem.</p>
<p><span id="more-68"></span></p>
<p><img src="/images/weirdnetwork2.png" alt="" width="732" height="680" /></p>
<p>Anyone ever come across something like this?Â  It is a Windows 2003 box.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/07/07/the-missing-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theme update</title>
		<link>http://frankdzedzy.com/2008/06/12/theme-update/</link>
		<comments>http://frankdzedzy.com/2008/06/12/theme-update/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 18:35:57 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[frankdzedzy.com]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=67</guid>
		<description><![CDATA[I have updated the theme of the site.Â  The theme is K2, a slick theme/framework.Â  I had been using K2 since the beginning of the site, however I was several versions behind.Â  The theme is a pretty basic theme that is fully customizable with CSS.Â  I am not a very creative designer, so I doubt [...]]]></description>
			<content:encoded><![CDATA[<p>I have updated the theme of the site.Â  The theme is <a href="http://getk2.com/">K2</a>, a slick theme/framework.Â  I had been using K2 since the beginning of the site, however I was several versions behind.Â  The theme is a pretty basic theme that is fully customizable with CSS.Â  I am not a very creative designer, so I doubt I will ever make it look that slick.Â  This theme has an easy option to change the header image, so I&#8217;ll probably start with that eventually.Â  This theme is now wider.Â  The old one was optimized for 800&#215;600 screens, this one is now optimized for 1024&#215;768.Â  Since 97% of the visitors to my blog had at least 1024 or higher this should make it easier for pictures and text to be displayed.Â  Hopefully I will figure out how to customize it more.Â  Any input on the theme is appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/06/12/theme-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Endpoint Issues</title>
		<link>http://frankdzedzy.com/2008/06/11/more-endpoint-issues/</link>
		<comments>http://frankdzedzy.com/2008/06/11/more-endpoint-issues/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 14:38:49 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=65</guid>
		<description><![CDATA[After my previous observation of Endpoint&#8217;s memory usage, I came across a disk space issue.Â  On both test Windows 2003 clients, I found that the space on C: was completely gone.Â  Using some space analysis tools I found that on both servers, c:\program files\common files\Symantec shared\virusdefs contained several gigs of temp files.Â  Some research on [...]]]></description>
			<content:encoded><![CDATA[<p>After my previous observation of <a href="http://frankdzedzy.com/2008/05/30/symantec-endpoint-is-a-memory-pig/">Endpoint&#8217;s memory usage</a>, I came across a disk space issue.Â  On both test Windows 2003 clients, I found that the space on C: was completely gone.Â  Using some space analysis tools I found that on both servers, c:\program files\common files\Symantec shared\virusdefs contained several gigs of temp files.Â  Some research on Symantec&#8217;s forum&#8217;s showed me that this was a <a href="https://forums.symantec.com/syment/board/message?board.id=endpoint_protection11&amp;message.id=7270">common problem</a>.Â  I also found on <a href="http://www.kavinda.net/2008/05/07/VanishingHardDiskSpace.aspx">this blog</a> that this should be fixed in MR2.Â  I have not checked my version number, but I am assuming that I don&#8217;t have MR2 installed.Â  I haven&#8217;t yet had a chance to install and test, but have instead removed Endpoint from one of the test servers, and my own desktop where I was testing.Â  Performance on my machine instantly improved.Â  My machine is a brand new Dell, with dual core and 2gb of ram.Â  If it can slow that down so drastically, I am definitly not going to drag older machine&#8217;s down with Endpoint.Â  Hopefully MR2 improves these <a href="http://service1.symantec.com/SUPPORT/ent-security.nsf/docid_p/2007121216360648">problems</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/06/11/more-endpoint-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check windows uptime stats w/ Uptime.exe</title>
		<link>http://frankdzedzy.com/2008/06/06/check-windows-uptime-stats-w-uptimeexe/</link>
		<comments>http://frankdzedzy.com/2008/06/06/check-windows-uptime-stats-w-uptimeexe/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 18:00:49 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=64</guid>
		<description><![CDATA[There is a very useful Windows command that Microsoft didn&#8217;t include in any version of windows but should have.  This is the uptime command.  There is a knowledge base article here.  It was released back in the Windows NT days, but still works on all current versions of windows.  I have found this to be [...]]]></description>
			<content:encoded><![CDATA[<p>There is a very useful Windows command that Microsoft didn&#8217;t include in any version of windows but should have.  This is the uptime command.  There is a knowledge base article <a href="http://support.microsoft.com/kb/232243">here</a>.  It was released back in the Windows NT days, but still works on all current versions of windows.  I have found this to be an easy way to find out the uptime of the windows servers I maintain without have to log on to the box.</p>
<p><span id="more-64"></span><br />
To install just download <a href="http://download.microsoft.com/download/winntsrv40/install/uptime_1.01/nt4/en-us/uptime.exe">uptime.exe</a> and place it in the windows directory.  Then run it from the command line.</p>
<p><img src="/images/uptime.PNG" alt="" /></p>
<p>uptime /? will give a listing of all the options and uptime /help will give detailed instructions.</p>
<pre style="PADDING-LEFT: 30px">UPTIME, Version 1.01
(C) Copyright 1999, Microsoft Corporation</pre>
<pre style="PADDING-LEFT: 30px">Uptime [server] [/s ] [/a] [/d:mm/dd/yyyy | /p:n] [/heartbeat] [/? | /help]
server  Name or IP address of remote server to process.
/s  Display key system events and statistics.
/a  Display application failure events (assumes /s).
/d:  Only calculate for events after mm/dd/yyyy.
/p:  Only calculate for events in the previous n days.
/heartbeat  Turn on/off the system's heartbeat
/? Basic usage.
/help  Additional usage information.</pre>
<p>Uptime works by checking the windows event logs for startup and shutdown times.  Running uptime with the /s switch will provide more detailed statistics as shown below.  If the event log has been cleared or is corrupted uptime will not show correct stats.</p>
<p>I have found it helpful to set up .bat files with the servers I want to check. This then gives me a quick list of the uptime of various servers.  It is quite a useful command.  I&#8217;m not sure why Microsoft didn&#8217;t just stick it in the directory with all their other commands.</p>
<pre style="PADDING-LEFT: 30px">C:\uptime \\myserver -s</pre>
<pre style="PADDING-LEFT: 30px">Uptime Report for: \\myserver</pre>
<pre style="PADDING-LEFT: 30px">Current OS: Microsoft Windows Server 2003, Service Pack 2, Multiprocessor Free.
Time Zone: Eastern Daylight Time</pre>
<pre style="PADDING-LEFT: 30px">System Events as of 6/6/2008 9:59:47 AM:</pre>
<pre style="PADDING-LEFT: 30px">Date:      Time:        Event:               Comment:
---------- -----------  -------------------  -----------------------------------</pre>
<pre style="PADDING-LEFT: 30px">12/2/2007  1:18:11 PM   Shutdown
12/2/2007  1:20:14 PM   Boot                 Prior downtime:0d 0h:2m:3s
12/4/2007  10:45:19 PM  Shutdown             Prior uptime:2d 9h:25m:5s
12/4/2007  10:47:23 PM  Boot                 Prior downtime:0d 0h:2m:4s
12/16/2007  9:23:16 PM  Shutdown             Prior uptime:11d 22h:35m:53s
12/16/2007  9:25:30 PM  Boot                 Prior downtime:0d 0h:2m:14s
3/1/2008  10:51:12 PM   Shutdown             Prior uptime:76d 1h:25m:42s
3/1/2008  10:54:05 PM   Boot                 Prior downtime:0d 0h:2m:53s
3/16/2008  5:04:48 PM   Shutdown             Prior uptime:14d 17h:10m:43s
3/16/2008  5:07:07 PM   Boot                 Prior downtime:0d 0h:2m:19s
4/9/2008  7:00:38 PM    Shutdown             Prior uptime:24d 1h:53m:31s
4/9/2008  7:02:47 PM    Boot                 Prior downtime:0d 0h:2m:9s
4/9/2008  7:23:35 PM    Shutdown             Prior uptime:0d 0h:20m:48s
4/9/2008  7:25:47 PM    Boot                 Prior downtime:0d 0h:2m:12s</pre>
<pre style="PADDING-LEFT: 30px">Current System Uptime: 57 day(s), 14 hour(s), 34 minute(s), 44 second(s)</pre>
<pre style="PADDING-LEFT: 30px">--------------------------------------------------------------------------------</pre>
<pre style="PADDING-LEFT: 30px">Since 12/2/2007:</pre>
<pre style="PADDING-LEFT: 30px">  System Availability: 99.9941%
  Total Uptime: 186d 19h:25m:42s
  Total Downtime: 0d 0h:15m:54s
  Total Reboots: 7
  Mean Time Between Reboots: 26.69 days
  Total Bluescreens: 0</pre>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/06/06/check-windows-uptime-stats-w-uptimeexe/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>I am watching you</title>
		<link>http://frankdzedzy.com/2008/06/04/i-am-watching-you/</link>
		<comments>http://frankdzedzy.com/2008/06/04/i-am-watching-you/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 20:33:53 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[frankdzedzy.com]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=63</guid>
		<description><![CDATA[Ok, not really, but I do know if somebody is looking at my site.Â  When I stopped keeping my site up to date about a year and a half ago, I let the mint stats that I was keeping break.Â  This past February I connected the site with google analytics.Â  This is the website stats [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, not really, but I do know if somebody is looking at my site.Â  When I stopped keeping my site up to date about a year and a half ago, I let the mint stats that I was keeping break.Â  This past February I connected the site with <a title="google analytics" href="http://google.com/analytics">google analytics</a>.Â  This is the website stats tool that google runs that they bought from Urchin a few years ago.Â  It is a pretty good free stats tool, which seems to integrate well with adwords (which I don&#8217;t use).Â  Now though, I wanted a little more real time stats as well as more flexibility.Â  So I went back to <a href="http://haveamint.com">Mint</a>Â which is a great stats program.Â  It does cost $30, but it is well worth the money.Â  I would highly recommend it to anyone who runs their own website.Â  There are numerous plugins that can be added to enhance the functionality, or you can write your own.Â  My installation can also be hosted on my server, which I like.Â  That gives me more control over the settings and allows me direct access to the database if I want to run queries.Â  I am already getting addicted to watching my stats and seeing when I have visiters.Â  Not that I have a lot of visiters, but I do have a couple of posts that get regular traffic.Â  Watching my stats will probably help push me to post more useful articles.Â  Please note that I do not give out the stats information nor do I have any way of identifying who you are while visiting my site.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/06/04/i-am-watching-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feed Fixed</title>
		<link>http://frankdzedzy.com/2008/06/04/feed-fixed/</link>
		<comments>http://frankdzedzy.com/2008/06/04/feed-fixed/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 20:17:02 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[frankdzedzy.com]]></category>

		<guid isPermaLink="false">http://frankdzedzy.com/?p=62</guid>
		<description><![CDATA[I&#8217;m not sure if anyone really subscribes to and reads my feed (not much new stuff to read) but I noticed today that since upgrading wordpress a week ago, my feed was broken with feedburner.Â  I downloaded the latest version of the feedburner plugin (I didn&#8217;t know google now owned feedburner) and modified the settings [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure if anyone really subscribes to and reads my feed (not much new stuff to read) but I noticed today that since upgrading wordpress a week ago, my feed was broken with feedburner.Â  I downloaded the latest version of the feedburner plugin (I didn&#8217;t know google now owned feedburner) and modified the settings and my feed is back working now.Â  Feel free to check it more often as I am now going to be more actively putting content on the site and interacting with it more.</p>
]]></content:encoded>
			<wfw:commentRss>http://frankdzedzy.com/2008/06/04/feed-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
