<?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>LissProductions.org</title>
	<atom:link href="http://www.lissproductions.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lissproductions.org</link>
	<description>the truth is always more important than the facts</description>
	<lastBuildDate>Sat, 19 May 2012 06:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Microsoft Performance Dashboard for SQL Server 2008</title>
		<link>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008/</link>
		<comments>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 19:35:19 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=27626</guid>
		<description><![CDATA[Microsoft&#8217;s SQL Server Performance Dashboard for SSRS 2005 is still an excellent bit of kit for checking the status of your SQL Server (Microsoft Download page). However this is a slight coding issues when trying to install the setup.sql in SQL Server 2008 r2:- This is due to a line in the code:- Which needs [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s SQL Server Performance Dashboard for SSRS 2005 is still an excellent bit of kit for checking the status of your SQL Server (<a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=1D3A4A0D-7E0C-4730-8204-E419218C1EFC&amp;displaylang=en">Microsoft Download page</a>).</p>
<p>However this is a slight coding issues when trying to install the setup.sql in SQL Server 2008 r2:-</p>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/04/image1.jpg" rel="lightbox"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.lissproductions.org/wp-content/uploads/2012/04/image_thumb1.jpg" width="244" height="35" /></a></p>
<p>This is due to a line in the code:-</p>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/04/image21.jpg" rel="lightbox"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image2" border="0" alt="image2" src="http://www.lissproductions.org/wp-content/uploads/2012/04/image2_thumb1.jpg" width="244" height="35" /></a></p>
<p>Which needs to be changed to the following:-</p>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/04/image31.jpg" rel="lightbox"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="image3" border="0" alt="image3" src="http://www.lissproductions.org/wp-content/uploads/2012/04/image3_thumb1.jpg" width="244" height="37" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Performance Dashboard for SQL Server 2008 &#8211; Issue 2</title>
		<link>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008-issue-2/</link>
		<comments>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008-issue-2/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 19:30:55 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=27618</guid>
		<description><![CDATA[Microsoft&#8217;s SQL Server Performance Dashboard for SSRS 2005 is still an excellent bit of kit for checking the status of your SQL Server (Microsoft Download page). An Error has occured during report processing. (rsProcessingAborted). Cannot read the next data row for the dataset SESSION_CPU_WAIT_INFO (rsErrorReadingNextDataRow) The datediff function resulted in an overflow. The number of [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s SQL Server Performance Dashboard for SSRS 2005 is still an excellent bit of kit for checking the status of your SQL Server (<a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=1D3A4A0D-7E0C-4730-8204-E419218C1EFC&amp;displaylang=en">Microsoft Download page</a>).</p>
<p>An Error has occured during report processing. (rsProcessingAborted). Cannot read the next data row for the dataset SESSION_CPU_WAIT_INFO (rsErrorReadingNextDataRow)</p>
<p>The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.</p>
<p>Again this is a simple fix. Either amend the following code in setup.sql or look for the SP [MS_PerfDashboard].[usp_Main_GetSessionInfo] in the msdb database.</p>
<p>The line to change is:-</p>
<p>sum(convert(bigint, datediff(ms, login_time, getdate()))) &#8211; sum(convert(bigint, s.total_elapsed_time)) as idle_connection_time,</p>
<p>to</p>
<p>sum(convert(bigint, CAST( DATEDIFF(minute, login_time, getdate()) as bigint)*60000   <br />+DATEDIFF(millisecond, DATEADD(minute, DATEDIFF(minute, login_time, getdate()), login_time), getdate() )))    <br />-SUM(CONVERT(bigint, s.total_elapsed_time)) as idle_connection_time,</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008-issue-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Performance Dashboard for SQL Server 2008 &#8211; Issue 3</title>
		<link>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008-issue-3/</link>
		<comments>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008-issue-3/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 19:26:53 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=27615</guid>
		<description><![CDATA[Microsoft&#8217;s SQL Server Performance Dashboard for SSRS 2005 is still an excellent bit of kit for checking the status of your SQL Server (Microsoft Download page). An Error has occured during report processing (rsProcessingAborted). Cannot read the next data row for the dataset CPU_UTILIZATION_HISTORY. (rsErrorReadingNextDataRow). Arithmetic overflow error converting expression to data type int. Again [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s SQL Server Performance Dashboard for SSRS 2005 is still an excellent bit of kit for checking the status of your SQL Server (<a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=1D3A4A0D-7E0C-4730-8204-E419218C1EFC&amp;displaylang=en">Microsoft Download page</a>).</p>
<p>An Error has occured during report processing (rsProcessingAborted). Cannot read the next data row for the dataset CPU_UTILIZATION_HISTORY. (rsErrorReadingNextDataRow).</p>
<p>Arithmetic overflow error converting expression to data type int.</p>
<p>Again this is another simple fix. Either amend the following code in setup.sql or look for the SP [MS_PerfDashboard].[usp_Main_GetCPUHistory] in the msdb database.</p>
<p>The line to change is:-</p>
<p><font face="Courier New">dateadd(ms, -1 * (@ts_now &#8211; [timestamp]), GetDate()) as EventTime,</font></p>
<p>to</p>
<p><font face="Courier New">dateadd(ms, -1 * (@ts_now &#8211; [timestamp])/1000, GetDate()) as EventTime,</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/04/09/microsoft-performance-dashboard-for-sql-server-2008-issue-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launch PuTTY from your browser – Adding Procotols to Windows</title>
		<link>http://www.lissproductions.org/2012/03/07/launch-putty-from-your-browser-adding-procotols-to-windows/</link>
		<comments>http://www.lissproductions.org/2012/03/07/launch-putty-from-your-browser-adding-procotols-to-windows/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 19:51:27 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=17325</guid>
		<description><![CDATA[For awhile now, I have wanted the ability to launch putty from a simple hyperlink. PuTTY enables Windows users to access *nix machines through SSH. For many in the tech industry this tool is absolutely crucial. While it is fairly full featured, it is quite cumbersome for generic SSH use. One may say “Jon, all [...]]]></description>
			<content:encoded><![CDATA[<p>For awhile now, I have wanted the ability to launch putty from a simple hyperlink.</p>
<p><strong>PuTTY</strong> enables Windows users to access *nix machines through SSH. For many in the tech industry this tool is absolutely crucial. While it is fairly full featured, it is quite cumbersome for generic SSH use. One may say “Jon, all you need to do is run <strong>PuTTY</strong>, enter the host name you wish to connect to and provide a user name and password.” This process is certainly fine for a single SSH operation. This becomes quite a pain with multiple hosts at once.</p>
<p>What if there was a way to create a hyperlink which launches <strong>PuTTY</strong>? One would be able to launch <strong>PuTTY</strong> from email clients, browsers, spreadsheets, etc… An example link would be: <a href="//google.com/">ssh://google.com</a></p>
<p>What do we need to do?</p>
<ol>
<li>Register a new protocol (in our case, let’s call it “ssh”) to Windows’s registry.</li>
<li>Create a batch file that can take in strings such as “ssh://google.com” and massage them and pass them on to putty.exe</li>
<li>Point the registry modification to that batch file.</li>
</ol>
<p>One method of editing the registry is to create a .reg file, save it, right click it and select merge. The .reg file will then be merged with the registry. We will use this method. The key created can always be deleted by later from <a href="http://en.wikipedia.org/wiki/Windows_Registry#Editing">regedit</a>.</p>
<p>Here is an example .reg file which points the protocol “ssh” to a batch file located at “C:/putty_util.bat” :</p>
<pre class="brush: bash; gutter: false">REGEDIT4
[HKEY_CLASSES_ROOT\ssh]
@=&quot;URL:ssh Protocol&quot;
&quot;URL Protocol&quot;=&quot;&quot;
[HKEY_CLASSES_ROOT\ssh\shell]
[HKEY_CLASSES_ROOT\ssh\shell\open]
[HKEY_CLASSES_ROOT\ssh\shell\open\command]
@=&quot;\&quot;C:\\putty_util.bat\&quot; %1&quot;</pre>
<p>Now save ssh.reg locally, right click it, and select merge.</p>
<p><strong>Note:</strong> You can create any new protocol by changing each “ssh” in this .reg file to whatever abbreviation you wish to use for your protocol. You will likewise want to change the string @=”\”C:\\putty_util.bat\” %1″ to point at whatever application you wish to use. In this case, we are using the application C:\putty_util.bat and passing in the first argument we receive to it. In the example of ssh://google.com, we will be passing in the string “ssh://google.com”</p>
<p>Unfortunately, <strong>PuTTY</strong> does not understand arguments which start off with “ssh://” . As a result, we must use a batch file (C:\putty_util.bat) to remove the “ssh://” and any other oddities. Here is the batch file for my box:</p>
<pre class="brush: bash; gutter: false">@echo off
set var=%1
set extract=%var:~6,-1%
&quot;C:\Program Files\PuTTY\putty.exe&quot; %extract%</pre>
<p>set extract=%var:~6,-1% is telling us to remove the first 6 characters and the last character from var and place that value in extract. The removal of the first 6 characters is the removal of “ssh://”. We remove the last character as there seems to be a trailing slash present in the input to our batch file.</p>
<p>With extract holding just the hostname, we now execute putty.exe and pass in extract as an argument. In this case, putty.exe is located at C:\Program Files\PuTTY\putty.exe. Please change this to the location of your putty.exe. Save this batch file to C:\putty_util.bat</p>
<p>Once this is done, anytime you have a link such as <a href="//google.com/">ssh://google.com</a> you should be able to simply click it and launch <strong>PuTTY</strong>.</p>
<p>I will have a followup post with instructions on how to accomplish the same with ssh in other operating systems.</p>
<p>Sources:</p>
<p><a href="http://kb.mozillazine.org/Register_protocol">http://kb.mozillazine.org/Register_protocol</a></p>
<p>External Links:</p>
<p><a href="http://www.putty.org/">http://www.putty.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/03/07/launch-putty-from-your-browser-adding-procotols-to-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best WordPress Plugins</title>
		<link>http://www.lissproductions.org/2012/03/06/best-wordpress-plugins/</link>
		<comments>http://www.lissproductions.org/2012/03/06/best-wordpress-plugins/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 22:45:41 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=16981</guid>
		<description><![CDATA[W3 Total Cache The ultimate swiss-army knife of caching, from the basic page caching (keeping a static copy of the page), to CSS/JS/HTML minification (making your files smaller), as well as handling uploads to a Content Delivery Network. Download &#124; Plugin Site WP-SuperCache If W3TC is too much for you, SuperCache is the answer. Very [...]]]></description>
			<content:encoded><![CDATA[<h2>W3 Total Cache</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/w3tc.jpg"><img class="alignnone size-full wp-image-16982" title="w3tc" src="http://www.lissproductions.org/wp-content/uploads/2012/03/w3tc.jpg" alt="" width="420" height="200" /></a></p>
<p>The ultimate swiss-army knife of caching, from the basic page caching (keeping a static copy of the page), to CSS/JS/HTML minification (making your files smaller), as well as handling uploads to a Content Delivery Network.</p>
<p><a href="http://wordpress.org/extend/plugins/w3-total-cache/" rel="nofollow">Download</a> | <a href="http://www.w3-edge.com/wordpress-plugins/w3-total-cache/" rel="nofollow">Plugin Site</a></p>
<h2>WP-SuperCache</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/supercache.jpg"><img class="alignnone size-full wp-image-16983" title="supercache" src="http://www.lissproductions.org/wp-content/uploads/2012/03/supercache.jpg" alt="" width="420" height="200" /></a></p>
<p>If W3TC is too much for you, SuperCache is the answer. Very simply, it makes static HTML files to serve users, and much fewer settings to break.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-super-cache/" rel="nofollow">Download</a> | <a href="http://ocaoimh.ie/wp-super-cache/" rel="nofollow">Plugin Site</a></p>
<h2>WP-DB Backup</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/wp-db-backup.jpg"><img class="alignnone size-full wp-image-16984" title="wp-db-backup" src="http://www.lissproductions.org/wp-content/uploads/2012/03/wp-db-backup.jpg" alt="" width="420" height="200" /></a></p>
<p>Does what it says on the tin – backs up your database. However, certainly not an easy solution and only works with core tables – so plugin data is lost.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-db-backup/" rel="nofollow">Download</a></p>
<h2>WP-Optimize</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/wp-optimize.jpg"><img class="alignnone size-full wp-image-16985" title="wp-optimize" src="http://www.lissproductions.org/wp-content/uploads/2012/03/wp-optimize.jpg" alt="" width="420" height="200" /></a></p>
<p>For those of you that don&#8217;t have direct access to the SQL Server, WP-Optimize optimizes the database by running the <em>optimize SQL</em> command, removing post revisions, spam and unapproved comments. It’s essential if you don’t manually manage your database or run your own optimization scripts. Also includes functionality to rename users, useful for changing the default admin user.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-optimize/" rel="nofollow">Download</a> | <a href="http://www.ruhanirabin.com/wp-optimize/" rel="nofollow">Plugin Site</a></p>
<h2>Secure WP</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/secure-wp1.png"><img class="alignnone size-full wp-image-16986" title="secure-wp1" src="http://www.lissproductions.org/wp-content/uploads/2012/03/secure-wp1.png" alt="" width="420" height="200" /></a></p>
<p>From the WebSite Defender guys, this gives you a thorough security check and make a number of small adjustments to harden your Wp install, such as hiding the version number. Also available as an <a href="http://www.makeuseof.com/tag/security-makeover-wordpress-site-websitedefender/">online service</a>. <a href="http://wordpress.org/extend/plugins/wp-optimize/" rel="nofollow">Download</a> | <a href="http://www.ruhanirabin.com/wp-optimize/" rel="nofollow">Plugin Site</a></p>
<h2>Redirection</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/redirection.png"><img class="alignnone size-full wp-image-16987" title="redirection" src="http://www.lissproductions.org/wp-content/uploads/2012/03/redirection.png" alt="" width="420" height="200" /></a></p>
<p>Monitor your site 404 errors and create simple 301 redirects easy to keep the Google link juice flowing and your readers free from 404 pages. Find what’s 404ing, redirect it, easy.  Very useful durring site migrations.</p>
<p><a href="http://wordpress.org/extend/plugins/redirection/" rel="nofollow">Download</a></p>
<h2>WordPress SEO by Yoast</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/WORDPRESSS-SEO.jpg"><img class="alignnone size-full wp-image-16988" title="WORDPRESSS-SEO" src="http://www.lissproductions.org/wp-content/uploads/2012/03/WORDPRESSS-SEO.jpg" alt="" width="420" height="200" /></a></p>
<p>Widely regarded as <em><strong>the</strong></em> SEO plugin for WordPress. It has an extensive feature set and rave reviews. Give it a whirl, there are alternatives though. Includes XML sitemap features.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-seo/" rel="nofollow">Download</a> | <a href="http://yoast.com/articles/wordpress-seo/" rel="nofollow">Plugin Site</a></p>
<h2>Google XML Sitemaps</h2>
<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/03/XML-SITEMAP.jpg"><img class="alignnone size-full wp-image-16989" title="XML-SITEMAP" src="http://www.lissproductions.org/wp-content/uploads/2012/03/XML-SITEMAP.jpg" alt="" width="420" height="200" /></a></p>
<p>Creates a site map for you to submit to Google and automatically updates it when you post new content. Essential for getting indexed quickly and accurately.</p>
<p><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" rel="nofollow">Download</a> | <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" rel="nofollow">Plugin Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/03/06/best-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Batman</title>
		<link>http://www.lissproductions.org/2012/03/06/just-batman/</link>
		<comments>http://www.lissproductions.org/2012/03/06/just-batman/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 22:35:36 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=16978</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.lissproductions.org/wp-content/uploads/2012/03/dar-tuesdays-2.jpg" alt="" title="just batman" width="499" height="517" class="alignnone size-full wp-image-16979" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/03/06/just-batman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A simple and easy way to copy a file system between two Linux servers</title>
		<link>http://www.lissproductions.org/2012/02/29/a-simple-and-easy-way-to-copy-a-file-system-between-two-linux-servers/</link>
		<comments>http://www.lissproductions.org/2012/02/29/a-simple-and-easy-way-to-copy-a-file-system-between-two-linux-servers/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 19:53:08 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=14901</guid>
		<description><![CDATA[I&#8217;ve been an Engineer for about 20 years now and I couldn&#8217;t tell you the amount of times I have had to copy data between systesm I&#8217;ve used all sorts of tools to duplicate data. Database replication, Array-based replication, rsync + tar piped to tar over SSH. On the Windows side: good old teracopy and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been an Engineer for about 20 years now and I couldn&#8217;t tell you the amount of times I have had to copy data between systesm</p>
<p>I&#8217;ve used all sorts of tools to duplicate data.</p>
<p>Database replication, Array-based replication, rsync + tar piped to tar over SSH.<br />
On the Windows side: good old teracopy and robocopy. </p>
<p>When rsync and tar where the right tool, I often asked myself why there wasn’t a generic file system replication tool when I completed my work. Well, it appears there is. The cpdup utility provides an easy to use interface to copy a file system from one system to another. In it’s most basic form you can call cpdup with a source and destination file system:</p>
<p>$ <strong>cpdup -C -vv -d -I /data 192.168.0.1:/data</strong></p>
<pre>root@192.168.0.1&#039;s password:
Handshaked with ftp
/data
Scanning /data ...
Scanning /data/conf ...
/data/conf/main.cf.conf          copy-ok
/data/conf/smb.conf              copy-ok
/data/conf/named.conf            copy-ok
Scanning /data/www ...
Scanning /data/www/content ...
Scanning /data/www/cgi-bin ...
Scanning /data/dns ...
/data/lost+found
Scanning /data/lost+found ...
cpdup completed successfully
1955847 bytes source, 1955847 src bytes read, 0 tgt bytes read
1955847 bytes written (1.0X speedup)
3 source items, 8 items copied, 0 items linked, 0 things deleted
3.8 seconds  1007 Kbytes/sec synced   503 Kbytes/sec scanned</pre>
<p>This will cause the entire contents of /data to be migrated through SSH to /data on the remote server. It appears cpdup picks up everything including devices and special files, so this would be a great utility to clone systems. There are also options to replace files that are on the remote end, remove files that are no longer on the source, and various others that can be used to customize the copy operation. Nifty utility, and definitely one I’ll be adding to my utility belt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/02/29/a-simple-and-easy-way-to-copy-a-file-system-between-two-linux-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling MySQL query logging</title>
		<link>http://www.lissproductions.org/2012/02/29/enabling-mysql-query-logging/</link>
		<comments>http://www.lissproductions.org/2012/02/29/enabling-mysql-query-logging/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 19:36:30 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=14897</guid>
		<description><![CDATA[I recently ran into the need to see what was being queried against a MySQL server. I enabled query logging by adding the following two statements to the [mysqld] block in the /etc/my.cnf configuration file: general_log=1 general_log_file=/var/log/query.log The first line enables logging, and the second line tells MySQL were to write the logs. Once enabled [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ran into the need to see what was being queried against a MySQL server.</p>
<p>I enabled query logging by adding the following two statements to the [mysqld] block in the /etc/my.cnf configuration file:</p>
<pre class="brush: bash; gutter: false">general_log=1
general_log_file=/var/log/query.log</pre>
<p>The first line enables logging, and the second line tells MySQL were to write the logs. Once enabled you can see the queries executed against your server by paging out the contents of /var/log/query.log. This will have one or more entries similar to the following:</p>
<pre class="brush: bash; gutter: false">233 Query     Select FOUND_ROWS()
120212 13:15:07   233 Quit
120212 13:15:12   234 Connect   rsyslog@localhost on
                  234 Init DB   syslog
                  234 Query     SHOW TABLES LIKE &#039;%SystemEvents%&#039;
                  234 Query     SELECT SQL_CALC_FOUND_ROWS id, devicereportedtime, facility, priority, fromhost, syslogtag, processid, infounitid, message FROM SystemEvents ORDER BY id DESC LIMIT 100</pre>
<p>Pretty cool, and definitely super useful for debugging problems and figuring out how restrictive you can be with your GRANT statements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/02/29/enabling-mysql-query-logging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Must be Internet Explorer</title>
		<link>http://www.lissproductions.org/2012/02/07/must-be-internet-explorer/</link>
		<comments>http://www.lissproductions.org/2012/02/07/must-be-internet-explorer/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 23:09:17 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=180</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lissproductions.org/wp-content/uploads/2012/02/CH2.png" rel="lightbox"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="CH" border="0" alt="CH" src="http://www.lissproductions.org/wp-content/uploads/2012/02/CH_thumb2.png" width="502" height="1465" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/02/07/must-be-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Rating Counter :: AJAX based star rating system</title>
		<link>http://www.lissproductions.org/2012/02/07/ajax-rating-counter-ajax-based-star-rating-system/</link>
		<comments>http://www.lissproductions.org/2012/02/07/ajax-rating-counter-ajax-based-star-rating-system/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 18:15:56 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.lissproductions.org/?p=61</guid>
		<description><![CDATA[This package can be used to implement a star rating system that uses AJAX to update the average rate without reloading the rate page after a user has voted.&#160; It can display the current average rating between 1 to 10 using star icon images. A new rating submitted by an user is sent to the [...]]]></description>
			<content:encoded><![CDATA[<p>This package can be used to implement a star rating system that uses AJAX to update the average rate without reloading the rate page after a user has voted.&#160; It can display the current average rating between 1 to 10 using star icon images.   <br />A new rating submitted by an user is sent to the server using an AJAX request. The server returns the updated rating average and the star icon images change to the new rating value.</p>
<p>    Download:</p>
<p><a href="http://www.phpclasses.org/browse/package/2838.html">http://www.phpclasses.org/browse/package/2838.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lissproductions.org/2012/02/07/ajax-rating-counter-ajax-based-star-rating-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

