<?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>apocalypticfail.com</title>
	<atom:link href="http://apocalypticfail.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://apocalypticfail.com</link>
	<description>a blog about stuff and things</description>
	<lastBuildDate>Fri, 10 Jun 2011 20:16:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>bfd script for Kerio Connect</title>
		<link>http://apocalypticfail.com/2011.05.09/bfd-script-for-kerio-connect/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bfd-script-for-kerio-connect</link>
		<comments>http://apocalypticfail.com/2011.05.09/bfd-script-for-kerio-connect/#comments</comments>
		<pubDate>Tue, 10 May 2011 00:00:10 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[installations]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[apf]]></category>
		<category><![CDATA[bfd]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[kerio connect]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://apocalypticfail.com/?p=104</guid>
		<description><![CDATA[Overview It came to my attention recently that a mailserver I manage for a client was having an unusually high number of login attempts. Since the server runs Kerio Connect rather than exim or sendmail, I normally deal with these manually using a for loop and apf. I did, at one point, take notes with [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Overview</strong></p>
<p>It came to my attention recently that a mailserver I manage for a client was having an unusually high number of login attempts.  Since the server runs <a href="http://www.kerio.com/connect">Kerio Connect</a> rather than exim or sendmail, I normally deal with these manually using a <em>for</em> loop and <em><strong><a href="http://www.rfxn.com/projects/advanced-policy-firewall/">apf</a></strong></em>.  I did, at one point, take notes with the intention of working this into <strong><em><a href="http://www.rfxn.com/projects/brute-force-detection/">bfd</a></strong></em>, however the project never came to fruition.</p>
<p>Today is the day I finally put the work into incorporating this into <strong><em>bfd</em></strong></p>
<p><strong>Details</strong></p>
<p>This was a fairly straightforward process, adapting one of the existing rules files to work with Kerio.  Kerio stores it&#8217;s &#8216;<em>failed login</em>&#8216; information in</p>
<ol><code>/opt/kerio/mailserver/store/logs/warning.log</code></ol>
<p>Generally you will see either:</p>
<ol><code>User user@domain.com doesn't exist. Attempt from IP address 1.2.3.4</code></ol>
<p>or</p>
<ol><code>Invalid password for user user@domain.com.  Attempt from IP address 1.2.3.4</code></ol>
<p><strong>Code</strong></p>
<p>The regex for detecting these patterns was simple and is quite effective.  Simply place the following code in <strong><em>/usr/local/bfd/rules/kerio_connect</em></strong> or capture using wget</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;"><span style="color: #c20cb9; font-weight: bold;color: #577A61;">wget</span> <span style="color: #660033;">-O</span> <span style="color: #000000; font-weight: bold;color: #CCC;">/</span>usr<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>local<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>bfd<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>rules<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>kerio_connect http:<span style="color: #000000; font-weight: bold;color: #CCC;">//</span>scripts.apocalypticfail.com<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>bfd.kerio_connect</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;"><span style="color: #666666; font-style: italic;"># failed logins from a single address before ban</span>
<span style="color: #666666; font-style: italic;"># uncomment to override conf.bfd trig value</span>
<span style="color: #007800;">TRIG</span>=<span style="color: #ff0000;color: #666666;">&quot;20&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># file must exist for rule to be active</span>
<span style="color: #007800;">REQ</span>=<span style="color: #ff0000;color: #666666;">&quot;/opt/kerio/mailserver/store/logs/warning.log&quot;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;color: #B83A24;">if</span> <span style="color: #7a0874; font-weight: bold;color: #CCC;">&#91;</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;color: #666666;">&quot;<span style="color: #007800;">$REQ</span>&quot;</span> <span style="color: #7a0874; font-weight: bold;color: #CCC;">&#93;</span>; <span style="color: #000000; font-weight: bold;color: #B83A24;">then</span>
 <span style="color: #007800;">LP</span>=<span style="color: #ff0000;color: #666666;">&quot;/opt/kerio/mailserver/store/logs/warning.log&quot;</span>
 <span style="color: #007800;">TLOG_TF</span>=<span style="color: #ff0000;color: #666666;">&quot;kerio_connect&quot;</span>
&nbsp;
 <span style="color: #666666; font-style: italic;">## kerio failed passwords and users that do not exist</span>
 <span style="color: #007800;">ARG_VAL</span>=<span style="color: #000000; font-weight: bold;color: #CCC;">`</span><span style="color: #007800;color: blue;">$TLOG_PATH</span> <span style="color: #007800;color: blue;">$LP</span> <span style="color: #007800;color: blue;">$TLOG_TF</span> <span style="color: #000000; font-weight: bold;color: #CCC;">|</span> <span style="color: #c20cb9; font-weight: bold;color: #577A61;">grep</span> <span style="color: #ff0000;color: #666666;">&quot;Attempt from IP&quot;</span> <span style="color: #000000; font-weight: bold;color: #CCC;">|</span> <span style="color: #c20cb9; font-weight: bold;color: #577A61;">sed</span> <span style="color: #660033;">-n</span> <span style="color: #ff0000;">'s/.*[Uu]ser\ \([^\ ]*\)\ .*Attempt\ from\ IP\ address\ \(.*\)/\2:\1/p'</span><span style="color: #000000; font-weight: bold;color: #CCC;">`</span>
<span style="color: #000000; font-weight: bold;color: #B83A24;">fi</span></pre></div></div>

<p><strong>Testing</strong></p>
<p>If you wish to test this out, you can use the following loops.  Make <strong>certain</strong> that you will still have access to the server once the machine you are testing from is locked out.  For my own testing, I simply tested from another server &#8211; leaving my workstation with access.</p>
<p>Testing <em>failed password</em> attempts, use the following code.  Be sure to replace &#8216;user&#8217; with a username that exists for the <em>kerio_username</em> post variable and your hostname in place of webmail.domain.com:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;"><span style="color: #000000; font-weight: bold;color: #B83A24;">for</span> i <span style="color: #000000; font-weight: bold;color: #B83A24;">in</span> $<span style="color: #7a0874; font-weight: bold;color: #CCC;">&#40;</span><span style="color: #c20cb9; font-weight: bold;color: #577A61;">seq</span> <span style="color: #000000;color: #DDD;">1</span> <span style="color: #000000;color: #DDD;">100</span><span style="color: #7a0874; font-weight: bold;color: #CCC;">&#41;</span>; <span style="color: #000000; font-weight: bold;color: #B83A24;">do</span> <span style="color: #7a0874; font-weight: bold;color: #8FB394;">echo</span> <span style="color: #ff0000;color: #666666;">&quot;Attempt <span style="color: #007800;">$i</span>&quot;</span>; <span style="color: #c20cb9; font-weight: bold;color: #577A61;">wget</span> <span style="color: #660033;">-O</span> - <span style="color: #660033;">-q</span> <span style="color: #660033;">--post-data</span> <span style="color: #ff0000;">'kerio_username=user&amp;kerio_password=anything'</span> https:<span style="color: #000000; font-weight: bold;color: #CCC;">//</span>webmail.domain.com<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>webmail<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>dologin.php <span style="color: #000000; font-weight: bold;color: #CCC;">&gt;</span> <span style="color: #000000; font-weight: bold;color: #CCC;">/</span>dev<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>null ;<span style="color: #000000; font-weight: bold;color: #B83A24;">done</span></pre></div></div>

<p>Testing <em>invalid user</em> attempts, use the following code &#8211; again replacing webmail.domain.com with your hostname:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;"><span style="color: #000000; font-weight: bold;color: #B83A24;">for</span> i <span style="color: #000000; font-weight: bold;color: #B83A24;">in</span> $<span style="color: #7a0874; font-weight: bold;color: #CCC;">&#40;</span><span style="color: #c20cb9; font-weight: bold;color: #577A61;">seq</span> <span style="color: #000000;color: #DDD;">1</span> <span style="color: #000000;color: #DDD;">100</span><span style="color: #7a0874; font-weight: bold;color: #CCC;">&#41;</span>; <span style="color: #000000; font-weight: bold;color: #B83A24;">do</span> <span style="color: #7a0874; font-weight: bold;color: #8FB394;">echo</span> <span style="color: #ff0000;color: #666666;">&quot;Attempt <span style="color: #007800;">$i</span>&quot;</span>; <span style="color: #c20cb9; font-weight: bold;color: #577A61;">wget</span> <span style="color: #660033;">-O</span> - <span style="color: #660033;">-q</span> <span style="color: #660033;">--post-data</span> <span style="color: #ff0000;">'kerio_username=anybody&amp;kerio_password=anything'</span> https:<span style="color: #000000; font-weight: bold;color: #CCC;">//</span>webmail.domain.com<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>webmail<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>dologin.php <span style="color: #000000; font-weight: bold;color: #CCC;">&gt;</span> <span style="color: #000000; font-weight: bold;color: #CCC;">/</span>dev<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>null ;<span style="color: #000000; font-weight: bold;color: #B83A24;">done</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://apocalypticfail.com/2011.05.09/bfd-script-for-kerio-connect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handbrake Installation on Ubuntu 9.04 (Jaunty)</title>
		<link>http://apocalypticfail.com/2009.11.27/handbrake-installation-on-ubuntu-9-04-jaunty/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=handbrake-installation-on-ubuntu-9-04-jaunty</link>
		<comments>http://apocalypticfail.com/2009.11.27/handbrake-installation-on-ubuntu-9-04-jaunty/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 22:53:47 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[installations]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[installation]]></category>

		<guid isPermaLink="false">http://apocalypticfail.com/?p=45</guid>
		<description><![CDATA[Overview I read an interesting review today on the software HandBrake. I had not heard of this package before but had recently been researching similar items. Personally, I always used k9copy to make copies of DVDs and to rip to local video files for use on my devices. However, recently I was asked for advice [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Overview</strong></p>
<p>I read an interesting <a href="http://ostatic.com/blog/handbrake-0-9-4-released-with-a-whopping-1-000-changes">review</a> today on the software <a href="http://handbrake.fr/">HandBrake</a>.  I had not heard of this package before but had recently been researching similar items.</p>
<p>Personally, I always used k9copy to make copies of DVDs and to rip to local video files for use on my devices.  However, recently I was asked for advice on a Windows solution.  It seems that HandBrake fits that bill as it is cross-platform between Mac, Windows and Linux.  Of course it states quite specifically that it does not help to crack copyrights.  In my experience, k9copy does this almost without error 99% of the time.</p>
<p>So why would I, a Linux user, use HandBrake rather than k9copy?  Quite simply, I am not a video guru and, while I normally like having many options, sometimes it is frustrating to have to tweak and retweak and re-rip to solve resolution and smoothness issues.  HandBrake seems to have a fine assortment of presets (various qualities for various devices) and also offers a live preview function.</p>
<p>So I decided to give the installation a whirl.  The site offers a download for Ubuntu, however this is for Karmic.  I have not yet switched most of my computers to Karmic (that is a whole article unto itself).  Grabbing the source I proceeded to hack away at it and did finally manage to get the installation completed and running.</p>
<p><strong>Installation</strong></p>
<p>First let&#8217;s install the required packages.  This took a bit of trial and error to figure out completely, but here is is:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;"><span style="color: #c20cb9; font-weight: bold;color: #577A61;">sudo</span> <span style="color: #c20cb9; font-weight: bold;color: #577A61;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;color: #577A61;">install</span> build-essential <span style="color: #c20cb9; font-weight: bold;color: #577A61;">autoconf</span> libtool zlib1g-dev \
libbz2-dev intltool libglib2.0-dev libdbus-glib-<span style="color: #000000;color: #DDD;">1</span>-dev libgtk2.0-dev \
libhal-dev libhal-storage-dev libwebkit-dev libnotify-dev \
libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev yasm</pre></div></div>

<p>Now to get the tar ball, untar, configure and install:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;"><span style="color: #c20cb9; font-weight: bold;color: #577A61;">wget</span> http:<span style="color: #000000; font-weight: bold;color: #CCC;">//</span>dl.dropbox.com<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>u<span style="color: #000000; font-weight: bold;color: #CCC;">/</span><span style="color: #000000;color: #DDD;">56460</span><span style="color: #000000; font-weight: bold;color: #CCC;">/</span>Handbrake<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>HandBrake-0.9.4.tar.bz2
<span style="color: #c20cb9; font-weight: bold;color: #577A61;">tar</span> <span style="color: #660033;">-jxvf</span> HandBrake-0.9.4.tar.bz2
<span style="color: #7a0874; font-weight: bold;color: #8FB394;">cd</span> HandBrake-0.9.4
.<span style="color: #000000; font-weight: bold;color: #CCC;">/</span>configure
<span style="color: #c20cb9; font-weight: bold;color: #577A61;">make</span>
<span style="color: #c20cb9; font-weight: bold;color: #577A61;">sudo</span> <span style="color: #c20cb9; font-weight: bold;color: #577A61;">make</span> <span style="color: #c20cb9; font-weight: bold;color: #577A61;">install</span></pre></div></div>

<p>Looking at that now, it seems much easier.  Figuring out all the dependencies took some time.</p>
<p>Now to run the application simply run the command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;">ghb</pre></div></div>

<p>Or the command line client:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;color: #FCFFBA;">HandBrakeCLI</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://apocalypticfail.com/2009.11.27/handbrake-installation-on-ubuntu-9-04-jaunty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So it has come to this . . .</title>
		<link>http://apocalypticfail.com/2008.11.09/so-it-has-come-to-this/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=so-it-has-come-to-this</link>
		<comments>http://apocalypticfail.com/2008.11.09/so-it-has-come-to-this/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 18:52:04 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[fail]]></category>
		<category><![CDATA[uncertainty]]></category>

		<guid isPermaLink="false">http://apocalypticfail.com/?p=7</guid>
		<description><![CDATA[Having no idea where to begin.  Thoughts have been laboriously spinning yarns of possibilities.  The original idea behind this was so much more than I feel it will be now.  Conceptually it was to be a forum of fail, for your amusement.  Let&#8217;s face it, as sad as it is, some fail can be humorous. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://apocalypticfail.com/wp-content/uploads/2008/11/be960773e81.jpg"><img class="alignnone size-full wp-image-23" title="help desk" src="http://apocalypticfail.com/wp-content/uploads/2008/11/be960773e81.jpg" alt="" width="500" height="390" /></a></p>
<p>Having no idea where to begin.  Thoughts have been laboriously spinning yarns of possibilities.  The original idea behind this was so much more than I feel it will be now.  Conceptually it was to be a forum of fail, for your amusement.  Let&#8217;s face it, as sad as it is, some fail can be humorous.</p>
<p>At this time, in this society, surely there is no lack of fail.</p>
<p>All that aside, this was going to be my own software, designed from the ground up, to be clean and effiecient.  A mostly flat-file system.  Free time has fallen away so I thought I would try something premade just to see.  Who knows what strange directions this may take.</p>
]]></content:encoded>
			<wfw:commentRss>http://apocalypticfail.com/2008.11.09/so-it-has-come-to-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


<!-- W3 Total Cache: Minify debug info:
Engine:             memcached
Theme:              61eaa
Template:           index
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: apocalypticfail.com @ 2012-05-20 17:58:29 -->

<!-- W3 Total Cache: Object Cache debug info:
Engine:             memcached
Caching:            enabled
Total calls:        343
Cache hits:         295
Cache misses:       48
Total time:         0.0220
W3TC Object Cache info:
    # |     Status      |     Source      | Data size (b) | Query time (s) | ID:Group
    1 |     cached      |   persistent    |             8 |         0.0005 | is_blog_installed:default
    2 |     cached      |   persistent    |           100 |          0.001 | notoptions:options
    3 |     cached      |   persistent    |         85112 |         0.0015 | alloptions:options
    4 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
    5 |     cached      |    internal     |         85112 |              0 | alloptions:options
    6 |     cached      |    internal     |           100 |              0 | notoptions:options
    7 |     cached      |    internal     |         85112 |              0 | alloptions:options
    8 |     cached      |    internal     |           100 |              0 | notoptions:options
    9 |     cached      |    internal     |         85112 |              0 | alloptions:options
   10 |     cached      |    internal     |           100 |              0 | notoptions:options
   11 |     cached      |    internal     |         85112 |              0 | alloptions:options
   12 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   13 |     cached      |    internal     |         85112 |              0 | alloptions:options
   14 |     cached      |    internal     |           100 |              0 | notoptions:options
   15 |     cached      |    internal     |         85112 |              0 | alloptions:options
   16 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   17 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   18 |     cached      |    internal     |         85112 |              0 | alloptions:options
   19 |     cached      |    internal     |           100 |              0 | notoptions:options
   20 |     cached      |    internal     |           100 |              0 | notoptions:options
   21 |     cached      |    internal     |         85112 |              0 | alloptions:options
   22 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   23 |     cached      |    internal     |         85112 |              0 | alloptions:options
   24 |     cached      |    internal     |           100 |              0 | notoptions:options
   25 |     cached      |    internal     |         85112 |              0 | alloptions:options
   26 |     cached      |    internal     |           100 |              0 | notoptions:options
   27 |     cached      |    internal     |         85112 |              0 | alloptions:options
   28 |     cached      |    internal     |           100 |              0 | notoptions:options
   29 |     cached      |    internal     |         85112 |              0 | alloptions:options
   30 |     cached      |    internal     |           100 |              0 | notoptions:options
   31 |     cached      |    internal     |         85112 |              0 | alloptions:options
   32 |     cached      |    internal     |           100 |              0 | notoptions:options
   33 |     cached      |    internal     |         85112 |              0 | alloptions:options
   34 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   35 |     cached      |    internal     |         85112 |              0 | alloptions:options
   36 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   37 |     cached      |    internal     |         85112 |              0 | alloptions:options
   38 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   39 |     cached      |    internal     |         85112 |              0 | alloptions:options
   40 |     cached      |    internal     |           100 |              0 | notoptions:options
   41 |     cached      |    internal     |         85112 |              0 | alloptions:options
   42 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   43 |     cached      |    internal     |         85112 |              0 | alloptions:options
   44 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   45 |     cached      |    internal     |         85112 |              0 | alloptions:options
   46 |     cached      |    internal     |           100 |              0 | notoptions:options
   47 |     cached      |    internal     |         85112 |              0 | alloptions:options
   48 |     cached      |    internal     |           100 |              0 | notoptions:options
   49 |     cached      |    internal     |         85112 |              0 | alloptions:options
   50 |     cached      |    internal     |           100 |              0 | notoptions:options
   51 |     cached      |    internal     |         85112 |              0 | alloptions:options
   52 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   53 |     cached      |    internal     |         85112 |              0 | alloptions:options
   54 |     cached      |    internal     |           100 |              0 | notoptions:options
   55 |     cached      |    internal     |         85112 |              0 | alloptions:options
   56 |     cached      |    internal     |           100 |              0 | notoptions:options
   57 |     cached      |    internal     |         85112 |              0 | alloptions:options
   58 |     cached      |    internal     |           100 |              0 | notoptions:options
   59 |     cached      |    internal     |         85112 |              0 | alloptions:options
   60 |     cached      |    internal     |           100 |              0 | notoptions:options
   61 |     cached      |    internal     |         85112 |              0 | alloptions:options
   62 |     cached      |    internal     |           100 |              0 | notoptions:options
   63 |     cached      |    internal     |         85112 |              0 | alloptions:options
   64 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   65 |     cached      |    internal     |         85112 |              0 | alloptions:options
   66 |     cached      |    internal     |             8 |              0 | is_blog_installed:default
   67 |     cached      |    internal     |           100 |              0 | notoptions:options
   68 |     cached      |    internal     |         85112 |              0 | alloptions:options
   69 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
   70 |     cached      |    internal     |         85112 |              0 | alloptions:options
   71 |     cached      |    internal     |           100 |              0 | notoptions:options
   72 |     cached      |    internal     |         85112 |              0 | alloptions:options
   73 |     cached      |    internal     |           100 |              0 | notoptions:options
   74 |     cached      |    internal     |         85112 |              0 | alloptions:options
   75 |     cached      |    internal     |           100 |              0 | notoptions:options
   76 |     cached      |    internal     |         85112 |              0 | alloptions:options
   77 |     cached      |    internal     |           100 |              0 | notoptions:options
   78 |     cached      |    internal     |         85112 |              0 | alloptions:options
   79 |     cached      |    internal     |           100 |              0 | notoptions:options
   80 |     cached      |    internal     |         85112 |              0 | alloptions:options
   81 |     cached      |    internal     |           100 |              0 | notoptions:options
   82 |     cached      |    internal     |         85112 |              0 | alloptions:options
   83 |     cached      |    internal     |           100 |              0 | notoptions:options
   84 |     cached      |    internal     |         85112 |              0 | alloptions:options
   85 |     cached      |    internal     |           100 |              0 | notoptions:options
   86 |     cached      |    internal     |         85112 |              0 | alloptions:options
   87 |     cached      |    internal     |           100 |              0 | notoptions:options
   88 |     cached      |    internal     |         85112 |              0 | alloptions:options
   89 |     cached      |    internal     |           100 |              0 | notoptions:options
   90 |     cached      |    internal     |         85112 |              0 | alloptions:options
   91 |     cached      |    internal     |           100 |              0 | notoptions:options
   92 |     cached      |    internal     |         85112 |              0 | alloptions:options
   93 |     cached      |    internal     |           100 |              0 | notoptions:options
   94 |     cached      |    internal     |         85112 |              0 | alloptions:options
   95 |     cached      |    internal     |           100 |              0 | notoptions:options
   96 |     cached      |    internal     |         85112 |              0 | alloptions:options
   97 |     cached      |    internal     |           100 |              0 | notoptions:options
   98 |     cached      |    internal     |         85112 |              0 | alloptions:options
   99 |     cached      |    internal     |           100 |              0 | notoptions:options
  100 |     cached      |    internal     |         85112 |              0 | alloptions:options
  101 |     cached      |    internal     |           100 |              0 | notoptions:options
  102 |     cached      |    internal     |         85112 |              0 | alloptions:options
  103 |     cached      |    internal     |           100 |              0 | notoptions:options
  104 |     cached      |    internal     |         85112 |              0 | alloptions:options
  105 |     cached      |    internal     |           100 |              0 | notoptions:options
  106 |     cached      |    internal     |         85112 |              0 | alloptions:options
  107 |     cached      |    internal     |           100 |              0 | notoptions:options
  108 |     cached      |    internal     |         85112 |         0.0001 | alloptions:options
  109 |     cached      |    internal     |           100 |              0 | notoptions:options
  110 |     cached      |    internal     |         85112 |              0 | alloptions:options
  111 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  112 |     cached      |    internal     |         85112 |              0 | alloptions:options
  113 |     cached      |    internal     |           100 |              0 | notoptions:options
  114 |     cached      |    internal     |         85112 |              0 | alloptions:options
  115 |     cached      |    internal     |           100 |              0 | notoptions:options
  116 |     cached      |    internal     |         85112 |              0 | alloptions:options
  117 |     cached      |    internal     |           100 |              0 | notoptions:options
  118 |     cached      |    internal     |         85112 |              0 | alloptions:options
  119 |     cached      |    internal     |           100 |              0 | notoptions:options
  120 |     cached      |    internal     |         85112 |              0 | alloptions:options
  121 |     cached      |    internal     |           100 |              0 | notoptions:options
  122 |     cached      |    internal     |           100 |              0 | notoptions:options
  123 |     cached      |    internal     |         85112 |              0 | alloptions:options
  124 |     cached      |    internal     |           100 |              0 | notoptions:options
  125 |     cached      |    internal     |         85112 |              0 | alloptions:options
  126 |     cached      |    internal     |           100 |              0 | notoptions:options
  127 |     cached      |    internal     |         85112 |              0 | alloptions:options
  128 |   not cached    |   persistent    |             0 |         0.0003 | lastpostmodified:gmt:timeinfo
  129 |   not cached    |   persistent    |             0 |         0.0002 | lastpostdate:gmt:timeinfo
  130 |     cached      |    internal     |           100 |              0 | notoptions:options
  131 |     cached      |    internal     |         85112 |              0 | alloptions:options
  132 |     cached      |    internal     |           100 |              0 | notoptions:options
  133 |     cached      |    internal     |         85112 |              0 | alloptions:options
  134 |     cached      |    internal     |           100 |              0 | notoptions:options
  135 |     cached      |    internal     |         85112 |              0 | alloptions:options
  136 |     cached      |    internal     |           100 |              0 | notoptions:options
  137 |     cached      |    internal     |         85112 |              0 | alloptions:options
  138 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  139 |     cached      |    internal     |         85112 |              0 | alloptions:options
  140 |     cached      |    internal     |           100 |              0 | notoptions:options
  141 |     cached      |    internal     |         85112 |              0 | alloptions:options
  142 |     cached      |    internal     |           100 |              0 | notoptions:options
  143 |     cached      |    internal     |         85112 |              0 | alloptions:options
  144 |     cached      |    internal     |           100 |              0 | notoptions:options
  145 |     cached      |    internal     |         85112 |              0 | alloptions:options
  146 |     cached      |    internal     |           100 |              0 | notoptions:options
  147 |     cached      |    internal     |         85112 |              0 | alloptions:options
  148 |     cached      |    internal     |           100 |              0 | notoptions:options
  149 |     cached      |    internal     |         85112 |              0 | alloptions:options
  150 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  151 |     cached      |    internal     |         85112 |              0 | alloptions:options
  152 |     cached      |    internal     |           100 |              0 | notoptions:options
  153 |     cached      |    internal     |         85112 |              0 | alloptions:options
  154 |     cached      |    internal     |           100 |              0 | notoptions:options
  155 |     cached      |    internal     |         85112 |              0 | alloptions:options
  156 |     cached      |    internal     |           100 |              0 | notoptions:options
  157 |     cached      |    internal     |         85112 |              0 | alloptions:options
  158 |     cached      |    internal     |           100 |              0 | notoptions:options
  159 |     cached      |    internal     |         85112 |              0 | alloptions:options
  160 |     cached      |    internal     |           100 |              0 | notoptions:options
  161 |     cached      |    internal     |         85112 |              0 | alloptions:options
  162 |     cached      |    internal     |            27 |              0 | lastpostmodified:gmt:timeinfo
  163 |     cached      |    internal     |            27 |              0 | lastpostdate:gmt:timeinfo
  164 |     cached      |    internal     |           100 |              0 | notoptions:options
  165 |     cached      |    internal     |         85112 |              0 | alloptions:options
  166 |   not cached    |   persistent    |             0 |         0.0003 | 1:users
  167 |   not cached    |    internal     |             0 |              0 | 1:users
  168 |   not cached    |   persistent    |             0 |         0.0002 | becatlibra:userlogins
  169 |   not cached    |   persistent    |             0 |         0.0002 | benjamin@apocalypticfail.com:useremail
  170 |   not cached    |   persistent    |             0 |         0.0002 | Benjamin:userslugs
  171 |   not cached    |   persistent    |             0 |         0.0002 | 1:user_meta
  172 |   not cached    |    internal     |             0 |              0 | 1:user_meta
  173 |   not cached    |    internal     |             0 |              0 | 1:user_meta
  174 |     cached      |    internal     |           100 |              0 | notoptions:options
  175 |     cached      |    internal     |         85112 |              0 | alloptions:options
  176 |     cached      |    internal     |           100 |              0 | notoptions:options
  177 |     cached      |    internal     |         85112 |              0 | alloptions:options
  178 |     cached      |    internal     |           100 |              0 | notoptions:options
  179 |     cached      |    internal     |         85112 |              0 | alloptions:options
  180 |     cached      |    internal     |           100 |              0 | notoptions:options
  181 |     cached      |    internal     |         85112 |              0 | alloptions:options
  182 |     cached      |    internal     |           100 |              0 | notoptions:options
  183 |     cached      |    internal     |         85112 |              0 | alloptions:options
  184 |     cached      |    internal     |           100 |              0 | notoptions:options
  185 |     cached      |    internal     |         85112 |              0 | alloptions:options
  186 |   not cached    |   persistent    |             0 |         0.0003 | 104:category_relationships
  187 |   not cached    |   persistent    |             0 |         0.0002 | 7:category
  188 |   not cached    |   persistent    |             0 |         0.0002 | 12:category
  189 |   not cached    |    internal     |             0 |              0 | 104:category_relationships
  190 |   not cached    |   persistent    |             0 |         0.0002 | 104:post_tag_relationships
  191 |   not cached    |   persistent    |             0 |         0.0002 | 15:post_tag
  192 |   not cached    |   persistent    |             0 |         0.0002 | 14:post_tag
  193 |   not cached    |   persistent    |             0 |         0.0002 | 8:post_tag
  194 |   not cached    |   persistent    |             0 |         0.0002 | 13:post_tag
  195 |   not cached    |   persistent    |             0 |         0.0002 | 16:post_tag
  196 |   not cached    |    internal     |             0 |              0 | 104:post_tag_relationships
  197 |     cached      |    internal     |           100 |              0 | notoptions:options
  198 |     cached      |    internal     |         85112 |              0 | alloptions:options
  199 |     cached      |    internal     |           100 |              0 | notoptions:options
  200 |     cached      |    internal     |         85112 |              0 | alloptions:options
  201 |     cached      |    internal     |           100 |              0 | notoptions:options
  202 |     cached      |    internal     |         85112 |              0 | alloptions:options
  203 |     cached      |    internal     |           100 |              0 | notoptions:options
  204 |     cached      |    internal     |         85112 |              0 | alloptions:options
  205 |     cached      |    internal     |           100 |              0 | notoptions:options
  206 |     cached      |    internal     |         85112 |              0 | alloptions:options
  207 |     cached      |    internal     |           100 |              0 | notoptions:options
  208 |     cached      |    internal     |         85112 |              0 | alloptions:options
  209 |     cached      |    internal     |           100 |              0 | notoptions:options
  210 |     cached      |    internal     |         85112 |              0 | alloptions:options
  211 |     cached      |    internal     |           100 |              0 | notoptions:options
  212 |     cached      |    internal     |         85112 |              0 | alloptions:options
  213 |     cached      |    internal     |           100 |              0 | notoptions:options
  214 |     cached      |    internal     |         85112 |              0 | alloptions:options
  215 |     cached      |    internal     |           100 |              0 | notoptions:options
  216 |     cached      |    internal     |         85112 |              0 | alloptions:options
  217 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  218 |     cached      |    internal     |         85112 |              0 | alloptions:options
  219 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  220 |     cached      |    internal     |         85112 |              0 | alloptions:options
  221 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  222 |     cached      |    internal     |         85112 |              0 | alloptions:options
  223 |     cached      |    internal     |           100 |              0 | notoptions:options
  224 |     cached      |    internal     |         85112 |              0 | alloptions:options
  225 |   not cached    |   persistent    |             0 |         0.0003 | 104:posts
  226 |   not cached    |    internal     |             0 |         0.0001 | 104:posts
  227 |     cached      |    internal     |           100 |              0 | notoptions:options
  228 |     cached      |    internal     |         85112 |              0 | alloptions:options
  229 |     cached      |    internal     |           100 |              0 | notoptions:options
  230 |     cached      |    internal     |         85112 |              0 | alloptions:options
  231 |     cached      |    internal     |          4203 |         0.0001 | 104:posts
  232 |   not cached    |   persistent    |             0 |         0.0002 | 104:post_meta
  233 |   not cached    |    internal     |             0 |              0 | 104:post_meta
  234 |   not cached    |    internal     |             0 |         0.0001 | 104:post_meta
  235 |     cached      |    internal     |            88 |              0 | 104:post_meta
  236 |     cached      |    internal     |           396 |              0 | 1:users
  237 |     cached      |    internal     |          1696 |              0 | 1:user_meta
  238 |     cached      |    internal     |           100 |              0 | notoptions:options
  239 |     cached      |    internal     |         85112 |              0 | alloptions:options
  240 |     cached      |    internal     |           100 |              0 | notoptions:options
  241 |     cached      |    internal     |         85112 |              0 | alloptions:options
  242 |     cached      |    internal     |           100 |              0 | notoptions:options
  243 |     cached      |    internal     |         85112 |              0 | alloptions:options
  244 |     cached      |    internal     |           100 |              0 | notoptions:options
  245 |     cached      |    internal     |         85112 |              0 | alloptions:options
  246 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  247 |     cached      |    internal     |         85112 |              0 | alloptions:options
  248 |   not cached    |   persistent    |             0 |         0.0003 | 45:category_relationships
  249 |     cached      |    internal     |           260 |         0.0001 | 7:category
  250 |   not cached    |    internal     |             0 |              0 | 45:category_relationships
  251 |   not cached    |   persistent    |             0 |         0.0002 | 45:post_tag_relationships
  252 |   not cached    |   persistent    |             0 |         0.0002 | 9:post_tag
  253 |     cached      |    internal     |           258 |              0 | 8:post_tag
  254 |   not cached    |    internal     |             0 |              0 | 45:post_tag_relationships
  255 |     cached      |    internal     |           100 |              0 | notoptions:options
  256 |     cached      |    internal     |         85112 |              0 | alloptions:options
  257 |     cached      |    internal     |           100 |              0 | notoptions:options
  258 |     cached      |    internal     |         85112 |              0 | alloptions:options
  259 |     cached      |    internal     |           100 |              0 | notoptions:options
  260 |     cached      |    internal     |         85112 |              0 | alloptions:options
  261 |     cached      |    internal     |           100 |              0 | notoptions:options
  262 |     cached      |    internal     |         85112 |              0 | alloptions:options
  263 |     cached      |    internal     |           100 |              0 | notoptions:options
  264 |     cached      |    internal     |         85112 |              0 | alloptions:options
  265 |     cached      |    internal     |           100 |              0 | notoptions:options
  266 |     cached      |    internal     |         85112 |              0 | alloptions:options
  267 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  268 |     cached      |    internal     |         85112 |              0 | alloptions:options
  269 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  270 |     cached      |    internal     |         85112 |              0 | alloptions:options
  271 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  272 |     cached      |    internal     |         85112 |              0 | alloptions:options
  273 |     cached      |    internal     |           100 |              0 | notoptions:options
  274 |     cached      |    internal     |         85112 |              0 | alloptions:options
  275 |   not cached    |   persistent    |             0 |         0.0003 | 45:posts
  276 |   not cached    |    internal     |             0 |         0.0001 | 45:posts
  277 |     cached      |    internal     |           100 |              0 | notoptions:options
  278 |     cached      |    internal     |         85112 |              0 | alloptions:options
  279 |     cached      |    internal     |           100 |              0 | notoptions:options
  280 |     cached      |    internal     |         85112 |              0 | alloptions:options
  281 |     cached      |    internal     |          3335 |         0.0001 | 45:posts
  282 |   not cached    |   persistent    |             0 |         0.0003 | 45:post_meta
  283 |   not cached    |    internal     |             0 |              0 | 45:post_meta
  284 |   not cached    |    internal     |             0 |              0 | 45:post_meta
  285 |     cached      |    internal     |            88 |              0 | 45:post_meta
  286 |     cached      |    internal     |           396 |              0 | 1:users
  287 |     cached      |    internal     |          1696 |              0 | 1:user_meta
  288 |     cached      |    internal     |           100 |              0 | notoptions:options
  289 |     cached      |    internal     |         85112 |              0 | alloptions:options
  290 |     cached      |    internal     |           100 |              0 | notoptions:options
  291 |     cached      |    internal     |         85112 |              0 | alloptions:options
  292 |     cached      |    internal     |           100 |              0 | notoptions:options
  293 |     cached      |    internal     |         85112 |              0 | alloptions:options
  294 |     cached      |    internal     |           100 |              0 | notoptions:options
  295 |     cached      |    internal     |         85112 |              0 | alloptions:options
  296 |     cached      |    internal     |           100 |              0 | notoptions:options
  297 |     cached      |    internal     |         85112 |              0 | alloptions:options
  298 |   not cached    |   persistent    |             0 |         0.0003 | 7:category_relationships
  299 |   not cached    |   persistent    |             0 |         0.0002 | 3:category
  300 |   not cached    |    internal     |             0 |         0.0001 | 7:category_relationships
  301 |   not cached    |   persistent    |             0 |         0.0002 | 7:post_tag_relationships
  302 |   not cached    |   persistent    |             0 |         0.0002 | 3:post_tag
  303 |   not cached    |   persistent    |             0 |         0.0002 | 4:post_tag
  304 |   not cached    |    internal     |             0 |              0 | 7:post_tag_relationships
  305 |     cached      |    internal     |           100 |              0 | notoptions:options
  306 |     cached      |    internal     |         85112 |              0 | alloptions:options
  307 |     cached      |    internal     |           100 |              0 | notoptions:options
  308 |     cached      |    internal     |         85112 |              0 | alloptions:options
  309 |     cached      |    internal     |           100 |              0 | notoptions:options
  310 |     cached      |    internal     |         85112 |              0 | alloptions:options
  311 |     cached      |    internal     |           100 |              0 | notoptions:options
  312 |     cached      |    internal     |         85112 |              0 | alloptions:options
  313 |     cached      |    internal     |           100 |              0 | notoptions:options
  314 |     cached      |    internal     |         85112 |              0 | alloptions:options
  315 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  316 |     cached      |    internal     |         85112 |              0 | alloptions:options
  317 |     cached      |    internal     |           100 |              0 | notoptions:options
  318 |     cached      |    internal     |         85112 |              0 | alloptions:options
  319 |     cached      |    internal     |           100 |              0 | notoptions:options
  320 |     cached      |    internal     |         85112 |              0 | alloptions:options
  321 |     cached      |    internal     |           100 |              0 | notoptions:options
  322 |     cached      |    internal     |         85112 |              0 | alloptions:options
  323 |   not cached    |   persistent    |             0 |         0.0003 | 7:posts
  324 |   not cached    |    internal     |             0 |         0.0001 | 7:posts
  325 |     cached      |    internal     |           100 |              0 | notoptions:options
  326 |     cached      |    internal     |         85112 |              0 | alloptions:options
  327 |     cached      |    internal     |           100 |              0 | notoptions:options
  328 |     cached      |    internal     |         85112 |              0 | alloptions:options
  329 |     cached      |    internal     |          1805 |         0.0001 | 7:posts
  330 |   not cached    |   persistent    |             0 |         0.0002 | 7:post_meta
  331 |   not cached    |    internal     |             0 |              0 | 7:post_meta
  332 |   not cached    |    internal     |             0 |         0.0001 | 7:post_meta
  333 |     cached      |    internal     |            88 |              0 | 7:post_meta
  334 |     cached      |    internal     |           100 |              0 | notoptions:options
  335 |     cached      |    internal     |         85112 |              0 | alloptions:options
  336 |     cached      |    internal     |           100 |              0 | notoptions:options
  337 |     cached      |    internal     |         85112 |              0 | alloptions:options
  338 |     cached      |    internal     |           100 |              0 | notoptions:options
  339 |     cached      |    internal     |         85112 |              0 | alloptions:options
  340 |     cached      |    internal     |           100 |              0 | notoptions:options
  341 |     cached      |    internal     |         85112 |              0 | alloptions:options
  342 |     cached      |    internal     |           100 |         0.0001 | notoptions:options
  343 |     cached      |    internal     |         85112 |              0 | alloptions:options
-->

<!-- W3 Total Cache: Db cache debug info:
Engine:             memcached
Total queries:      21
Cached queries:     0
Total query time:   0.0229
SQL info:
    # | Time (s) |    Caching (Reject reason)     |   Status   | Data size (b) | Query
    1 |   0.0008 |  disabled (Query is rejected)  | not cached |             0 | select count(*) from wp_gdsr_ips where `status` = 'B' and `mode` = 'S' and `ip` = '38.107.179.227'
    2 |   0.0003 |  disabled (Query is rejected)  | not cached |             0 | select count(*) from wp_gdsr_ips where `status` = 'B' and `mode` = 'R' and inet_aton(substring_index(ip, '|', 1)) <= inet_aton('38.107.179.227') and inet_aton(substring_index(ip, '|', -1)) >= inet_aton('38.107.179.227')
    3 |   0.0002 |  disabled (Query is rejected)  | not cached |             0 | select ip from wp_gdsr_ips where `status` = 'B' and `mode` = 'M'
    4 |   0.0008 |            enabled             | not cached |           688 | SELECT post_modified_gmt FROM wp_posts WHERE post_status = 'publish' AND post_type IN ('post', 'page', 'attachment') ORDER BY post_modified_gmt DESC LIMIT 1
    5 |   0.0017 |            enabled             | not cached |           672 | SELECT post_date_gmt FROM wp_posts WHERE post_status = 'publish' AND post_type IN ('post', 'page', 'attachment') ORDER BY post_date_gmt DESC LIMIT 1
    6 |   0.0017 |  disabled (Query is rejected)  | not cached |             0 | SELECT SQL_CALC_FOUND_ROWS  wp_posts.* FROM wp_posts  WHERE 1=1  AND wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish')  ORDER BY wp_posts.post_date DESC LIMIT 0, 10
    7 |   0.0002 |  disabled (Query is rejected)  | not cached |             0 | SELECT FOUND_ROWS()
    8 |   0.0005 |            enabled             | not cached |          3608 | SELECT * FROM wp_users WHERE ID = '1'
    9 |   0.0008 |            enabled             | not cached |          4258 | SELECT user_id, meta_key, meta_value FROM wp_usermeta WHERE user_id IN (1)
   10 |   0.0014 |            enabled             | not cached |          3830 | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('category') AND tr.object_id IN (104) ORDER BY t.name ASC
   11 |   0.0014 |            enabled             | not cached |          4578 | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('post_tag') AND tr.object_id IN (104) ORDER BY t.name ASC
   12 |   0.0017 |            enabled             | not cached |         11634 | SELECT * FROM wp_posts WHERE ID = 104 LIMIT 1
   13 |   0.0012 |            enabled             | not cached |          1350 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (104)
   14 |   0.0017 |            enabled             | not cached |          3577 | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('category') AND tr.object_id IN (45) ORDER BY t.name ASC
   15 |   0.0011 |            enabled             | not cached |          3822 | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('post_tag') AND tr.object_id IN (45) ORDER BY t.name ASC
   16 |   0.0014 |            enabled             | not cached |         10763 | SELECT * FROM wp_posts WHERE ID = 45 LIMIT 1
   17 |   0.0008 |            enabled             | not cached |          1347 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (45)
   18 |   0.0012 |            enabled             | not cached |          3603 | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('category') AND tr.object_id IN (7) ORDER BY t.name ASC
   19 |   0.0015 |            enabled             | not cached |          3816 | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('post_tag') AND tr.object_id IN (7) ORDER BY t.name ASC
   20 |   0.0011 |            enabled             | not cached |          9231 | SELECT * FROM wp_posts WHERE ID = 7 LIMIT 1
   21 |   0.0013 |            enabled             | not cached |          1344 | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (7)
-->

<!-- W3 Total Cache: Page cache debug info:
Engine:             memcached
Cache key:          w3tc_apocalypticfail.com_1_page_750978a6610fa2b4f8e13fb3a731f1b6
Caching:            disabled
Reject reason:      Page is feed
Status:             not cached
Creation Time:      1.554s
Header info:
X-Pingback:         http://apocalypticfail.com/xmlrpc.php
Last-Modified:      Fri, 10 Jun 2011 20:16:27 GMT
ETag:               "33b0ff15613849b06052a5bbc54842cd"
X-Powered-By:       W3 Total Cache/0.9.2.4
Content-Type:       text/xml; charset=UTF-8
-->
