<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Ruslan Sivak - Urchin</title>
			<link>http://www.ruslansivak.com</link>
			<description>This is the development blog.</description>
			<language>en-us</language>
			<pubDate>Thu, 09 Sep 2010 14:50:29 -0400</pubDate>
			<lastBuildDate>Wed, 07 Apr 2010 09:34:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>russ@ruslansivak.com</managingEditor>
			<webMaster>russ@ruslansivak.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>russ@ruslansivak.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Urchin 5 on CentOS 5 (RHEL 5) - ERROR: (7066-211-368)</title>
				<link>http://www.ruslansivak.com/2010/4/7/Urchin-5-on-CentOS-5-RHEL-5--ERROR-7066211368</link>
				<description>
				
				After installing Urchin, I got the following error when trying to update _domaindb.

&lt;code&gt;
ERROR: (7066-211-368) Domain DB update failed DETAIL: (6) Couldn&apos;t resolve host &apos;download.urchin.com&apos;
&lt;/code&gt;

Now the DNS was configured properly and download.urchin.com was pinging normally.  

Turns out that urchin needs the nscd service enabled.  

&lt;code&gt;
#yum install nscd
#chkconfig nscd on
#service nscd start
#ln -s /var/run/nscd/socket /var/run/.nscd_socket 
&lt;/code&gt;

After doing this, the update should work fine.
				
				</description>
				
				
				<category>Urchin</category>
				
				<pubDate>Wed, 07 Apr 2010 09:34:00 -0400</pubDate>
				<guid>http://www.ruslansivak.com/2010/4/7/Urchin-5-on-CentOS-5-RHEL-5--ERROR-7066211368</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Urchin 5 - Opening reports in the same window</title>
				<link>http://www.ruslansivak.com/2009/7/15/Urchin-5--Opening-reports-in-the-same-window</link>
				<description>
				
				By default Urchin 5 seems to want to open reports in a new window.  This can be a little annoying.  To change this, we just need to update the javascript function that gets run when you click on the &quot;View Report&quot; link.

&lt;code&gt;
vi /usr/local/urchin/htdocs/ujs/admin.js +434
&lt;/code&gt;

You should see the following code:

&lt;code&gt;
mywin = window.open(&apos;&apos;,myname);

mywin.location.href = url;
mywin.focus();
&lt;/code&gt;

We&apos;re going to comment it out and add our own code:
&lt;code&gt;
//mywin = window.open(&apos;&apos;,myname);

//mywin.location.href = url;

//mywin.focus();

window.location.href=url;
&lt;/code&gt;

After clearing our cache, the reports open in the same window.
				
				</description>
				
				
				<category>Urchin</category>
				
				<pubDate>Wed, 15 Jul 2009 13:54:00 -0400</pubDate>
				<guid>http://www.ruslansivak.com/2009/7/15/Urchin-5--Opening-reports-in-the-same-window</guid>
				
				
			</item>
			
		 	
			</channel></rss>