<?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>gog&#039;s info &#187; Uncategorized</title>
	<atom:link href="http://gogs.info/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://gogs.info</link>
	<description></description>
	<lastBuildDate>Wed, 27 Apr 2011 15:02:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Free eBook on configuring a mail server with Postfix</title>
		<link>http://gogs.info/2011/04/free-ebook-on-configuring-a-mail-server-with-postfix/</link>
		<comments>http://gogs.info/2011/04/free-ebook-on-configuring-a-mail-server-with-postfix/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 13:06:11 +0000</pubDate>
		<dc:creator>Goran Jurić</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gogs.info/?p=197</guid>
		<description><![CDATA[Today I finally managed to release a first public version of a book I have been working on for a while. If you ever wanted to build a mail server but all the tutorials and howtos on the internet where too vague or old, this is a book for you.  It will guide you through [...]]]></description>
			<content:encoded><![CDATA[<p>Today I finally managed to release a first public version of a book I have been working on for a while.</p>
<p>If you ever wanted to build a mail server but all the tutorials and howtos on the internet where too vague or old, <a href="http://gogs.info/books/debian-mail/">this is a book for you</a>.  It will guide you through the setup of a complete email server on a latest Debian 6.0 (Squeeze) distribution. I tried to go beyond just listing steps needed to get a working email server online. Hopefully this book explains a little bit more about the <strong>why</strong> and not just <strong>how</strong>.</p>
<p>As everything else in life, this book is a work in progress and I would really appreciate all the feedback I could get. Both positive and negative. I have tried to give credit, where credit is due, but there is always a chance I missed to attribute somebody for the work they did. Don&#8217;t hesitate to point that out.</p>
<p>The book was written in Docbook 5.0 format and when my free time allows it I will try to explain a little bit more about the whole process because finding tried and tested information about myriad of choices and tools in the Docbook publishing chain proved to be a not so easy task.</p>
<p>I hope you will enjoy reading <a href="http://gogs.info/books/debian-mail/">Building a mail server on Debian 6.0</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gogs.info/2011/04/free-ebook-on-configuring-a-mail-server-with-postfix/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Blank page after a quick reply (vBulletin)</title>
		<link>http://gogs.info/2010/03/blank-page-after-a-quick-reply-vbulletin/</link>
		<comments>http://gogs.info/2010/03/blank-page-after-a-quick-reply-vbulletin/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 19:02:00 +0000</pubDate>
		<dc:creator>Goran Jurić</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[vbulletin]]></category>

		<guid isPermaLink="false">http://gogs.info/?p=128</guid>
		<description><![CDATA[While launching the Google Adsense on Gameplay and its forum (vBulletin 3.8) we ran into a strange issue while posting quick reply messages to the forum with Firefox. After hitting submit the page turned blank although the comment was apparently posted. We have integrated our Adsense code into the postbit vBulletin template after the last [...]]]></description>
			<content:encoded><![CDATA[<p>While launching the Google Adsense on <a href="http://www.gameplay.hr/">Gameplay</a> and its forum (vBulletin 3.8) we ran into a strange issue while posting quick reply messages to the forum with Firefox. After hitting submit the page turned blank although the comment was apparently posted.</p>
<p>We have integrated our Adsense code into the postbit vBulletin template after the last post on the page using this syntax:</p>
<pre class="xml"><span class="sc3"><span class="re1">&lt;if</span> <span class="re0">condition</span>=<span class="st0">&quot;$post['islastshown']&quot;</span><span class="re2">&gt;</span></span>
     Adsense code here.
<span class="sc3"><span class="re1">&lt;/if<span class="re2">&gt;</span></span></span></pre>
<p>The problem happend because Quick Reply uses asynchronous javascript to submit the reply and render the new reply at the and of the page. Since we are embedding the Adsense code if the post is &#8220;last shown&#8221; this renderd the Google Adsense code twice and FF &#8220;broke&#8221;.</p>
<p>The fix is quite simple, you just have to check if the post is being sent as a response to the asynchronous request, so the new and working code looks like this:</p>
<pre class="xml">
<span class="sc3"><span class="re1">&lt;if</span> <span class="re0">condition</span>=<span class="st0">&quot;$post['islastshown'] AND !$GLOBALS['vbulletin']-&gt;</span></span>GPC['ajax']&quot;&gt;
    Adsense code here.
<span class="sc3"><span class="re1">&lt;/if<span class="re2">&gt;</span></span></span></pre>
<p>Of course this is not the only case which causes vBulletin forum to render a blank page. For a list of other possible reasons take a look at <a href="http://www.vbulletin.com/docs/html/blank_pages">this chapter in the  official documentation</a>.</p>
<p>If you are interested you can also take a look at this exhaustive <a href="http://forum.vbulletinsetup.com/f18/vbulletin-template-conditionals-list-2185.html">list of conditionals</a> which you can use in your vBulletin templates.</p>
]]></content:encoded>
			<wfw:commentRss>http://gogs.info/2010/03/blank-page-after-a-quick-reply-vbulletin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google confused with 301 redirects</title>
		<link>http://gogs.info/2009/11/google-confused-with-301-redirects/</link>
		<comments>http://gogs.info/2009/11/google-confused-with-301-redirects/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 11:30:23 +0000</pubDate>
		<dc:creator>Goran Jurić</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Googlebot]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[URI]]></category>

		<guid isPermaLink="false">http://gogs.info/?p=99</guid>
		<description><![CDATA[It has been almost I year since we launched nacional.hr. During the migration from the old content management we thoroughly went through the whole system and made sure that all the old URIs are still working. Although cool URIs don&#8217;t change sometimes you have no choice and that was the case with this site. We [...]]]></description>
			<content:encoded><![CDATA[<p>It has been almost I year since we launched <a href="http://www.nacional.hr/">nacional.hr</a>. During the migration from the old content management we thoroughly went through the whole system and made sure that all the old URIs are still working. Although <a href="http://www.w3.org/Provider/Style/URI">cool URIs don&#8217;t change</a> sometimes you have no choice and that was the case with this site. We had to enhance some of the URIs for SEO purpose and some of them were just clashing with our URI scheme it we did not want to maintain a large list of legacy URIs in our rewrite rules.</p>
<p>We hooked a legacy URI &#8220;plugin&#8221; in our error controller so that checking for old URIs does not interfere with the loading times of our system unless really necessary and created 301 (permanent) redirects to our new URI scheme patted ourselves on the back an forgot all about it until recently.</p>
<p>While checking the access logs for some unusual traffic spikes we where getting we noticed that Google stills checks our old category URIs and follows the redirects that we have created. The most unusual things was that the URIs where checked very often. Links to our news category pages where crawled by Google a couple of times a minute during the course of couple of days. To add to the confusion the categories that are most often crawled our the ones that list articles from our print issue which get updated once a week, the ones that are updated many times a day get crawled at a regular pace.</p>
<p>Any ideas what could cause something like this?</p>
]]></content:encoded>
			<wfw:commentRss>http://gogs.info/2009/11/google-confused-with-301-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World!</title>
		<link>http://gogs.info/2008/08/hello-world/</link>
		<comments>http://gogs.info/2008/08/hello-world/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 10:46:27 +0000</pubDate>
		<dc:creator>Goran Jurić</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gogs.info/?p=4</guid>
		<description><![CDATA[Every nice blog should start with a &#8220;Hello World!&#8221;. Right?]]></description>
			<content:encoded><![CDATA[<p>Every nice blog should start with a &#8220;Hello World!&#8221;. Right? <img src='http://gogs.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://gogs.info/2008/08/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

