<?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>Gentoo Blog</title>
	<atom:link href="http://gentoo-blog.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://gentoo-blog.de</link>
	<description>The ultimate Gentoo Blog</description>
	<lastBuildDate>Thu, 05 Apr 2012 16:14:00 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Search and replace in multiple files</title>
		<link>http://gentoo-blog.de/ubuntu/search-and-replace-in-multiple-files/</link>
		<comments>http://gentoo-blog.de/ubuntu/search-and-replace-in-multiple-files/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 16:14:00 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6691</guid>
		<description><![CDATA[To search a directory for files with the extension .conf and replace the IP address 213.161.99.99 with 213.161.91.99. Do the following:
find . -name '*.conf' &#124; xargs perl -pi -e 's/213.161.99.99/213.161.91.99/g'
Thats it have fun.
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>To search a directory for files with the extension .conf and replace the IP address 213.161.99.99 with 213.161.91.99. Do the following:</p>
<p><code>find . -name '*.conf' | xargs perl -pi -e 's/213.161.99.99/213.161.91.99/g'</code></p>
<p>Thats it have fun.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fubuntu%2Fsearch-and-replace-in-multiple-files%2F&amp;t=Search%20and%20replace%20in%20multiple%20files" id="facebook_share_link_6691">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6691') || document.getElementById('facebook_share_icon_6691') || document.getElementById('facebook_share_both_6691') || document.getElementById('facebook_share_button_6691');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6691') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/ubuntu/search-and-replace-in-multiple-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3ware Raid Controller Switch of autoverify</title>
		<link>http://gentoo-blog.de/raid-controllers/3ware-raid-controller-switch-of-autoverify/</link>
		<comments>http://gentoo-blog.de/raid-controllers/3ware-raid-controller-switch-of-autoverify/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 10:11:44 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Raid Controllers]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6581</guid>
		<description><![CDATA[To Switch of the autoverify feature on a 3ware controller which can be a real performance killer do the following:
First check the current status:
tw_cli /c0/u0 show autoverify
/c0/u0 Auto Verify Policy = on

As you can see the autoverify feature is on Auto Verify Policy = on. If your raid controller is also c0 and you unit [...]]]></description>
			<content:encoded><![CDATA[<p>To Switch of the autoverify feature on a 3ware controller which can be a real performance killer do the following:</p>
<p>First check the current status:</p>
<p><code>tw_cli /c0/u0 show autoverify<br />
/c0/u0 Auto Verify Policy = on<br />
</code></p>
<p>As you can see the autoverify feature is on Auto Verify Policy = on. If your raid controller is also c0 and you unit is u0 you may use the following command. Please check this first with the command:</p>
<p><code>tw_cli /c0 show</code></p>
<p>Do not just copy and paste. If c0 doesn&#8217;t work try a higher number it depends on which pci slot your controller is in.</p>
<p><code>tw_cli /c0/u0 set autoverify=off<br />
Setting Auto-Verify Policy on /c0/u0 to [off] ... Done.<br />
</code></p>
<p>Check the autoverify settings:</p>
<p><code>tw_cli /c0/u0 show autoverify<br />
/c0/u0 Auto Verify Policy = off<br />
</code></p>
<p>That&#8217;s it no more autoverify. Please make sure to check you raid status regularly to detect problems.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fraid-controllers%2F3ware-raid-controller-switch-of-autoverify%2F&amp;t=3ware%20Raid%20Controller%20Switch%20of%20autoverify" id="facebook_share_link_6581">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6581') || document.getElementById('facebook_share_icon_6581') || document.getElementById('facebook_share_both_6581') || document.getElementById('facebook_share_button_6581');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6581') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/raid-controllers/3ware-raid-controller-switch-of-autoverify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME Shell Global Menu behind panel after update</title>
		<link>http://gentoo-blog.de/ubuntu/gnome-shell-global-menu-behind-panel-after-update/</link>
		<comments>http://gentoo-blog.de/ubuntu/gnome-shell-global-menu-behind-panel-after-update/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 15:00:18 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6541</guid>
		<description><![CDATA[After updating my ubuntu last week. The gnome shell panel had this overlapping global menu on the panel. Which was not usable and looked ugly. Here is how to remove it:
sudo apt-get remove appmenu-gtk3 appmenu-gtk appmenu-qt
If you switch to unity you can reinstall these packages to get the global menu in unity.
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>After updating my ubuntu last week. The gnome shell panel had this overlapping global menu on the panel. Which was not usable and looked ugly. Here is how to remove it:</p>
<p><code>sudo apt-get remove appmenu-gtk3 appmenu-gtk appmenu-qt</code></p>
<p>If you switch to unity you can reinstall these packages to get the global menu in unity.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fubuntu%2Fgnome-shell-global-menu-behind-panel-after-update%2F&amp;t=GNOME%20Shell%20Global%20Menu%20behind%20panel%20after%20update" id="facebook_share_link_6541">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6541') || document.getElementById('facebook_share_icon_6541') || document.getElementById('facebook_share_both_6541') || document.getElementById('facebook_share_button_6541');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6541') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/ubuntu/gnome-shell-global-menu-behind-panel-after-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Christmas</title>
		<link>http://gentoo-blog.de/fun/happy-christmas/</link>
		<comments>http://gentoo-blog.de/fun/happy-christmas/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 10:41:33 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6421</guid>
		<description><![CDATA[I wish all Linux users our there a happy Christmas have a great one. Keep on using Linux and have a happy new year

Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>I wish all Linux users our there a happy Christmas have a great one. Keep on using Linux and have a happy new year</p>
<p><a href="http://gentoo-blog.de/wp-content/uploads/2011/12/20111225Christmas_Tux.png" rel="lightbox[6421]"><img src="http://gentoo-blog.de/wp-content/uploads/2011/12/20111225Christmas_Tux.png" alt="" title="Christmas_Tux" width="320" height="256" class="aligncenter size-full wp-image-6501" /></a></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Ffun%2Fhappy-christmas%2F&amp;t=Happy%20Christmas" id="facebook_share_link_6421">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6421') || document.getElementById('facebook_share_icon_6421') || document.getElementById('facebook_share_both_6421') || document.getElementById('facebook_share_button_6421');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6421') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/fun/happy-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activate Webdav in Plesk</title>
		<link>http://gentoo-blog.de/confixx-plesk/activate-webdav-in-plesk/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/activate-webdav-in-plesk/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 09:57:58 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6311</guid>
		<description><![CDATA[The Plesk interface does not support the webdav protocol. But Apache does support webdav. Webdav can be used as an iDisk under MacOS X. Webdav can also be used with Linux or Windows. Here are the steps to get webdav up and running. These instructions should work on Debian based system. But similar commands should [...]]]></description>
			<content:encoded><![CDATA[<p>The Plesk interface does not support the webdav protocol. But Apache does support webdav. Webdav can be used as an iDisk under MacOS X. Webdav can also be used with Linux or Windows. Here are the steps to get webdav up and running. These instructions should work on Debian based system. But similar commands should work with all major Linux distributions:</p>
<p>First activate the webdav Apache modules and restart apache:</p>
<p><code>a2enmod dav<br />
a2enmod dav_fs<br />
service apache2 restart</code></p>
<p>Then create a vhost config for the domain you are using adding webdav. Please replace domain.tld with you domain. And check the directory line:</p>
<p><code>vi /var/www/vhosts/domain.tld/conf/vhost.conf</p>
<p>&lt;Directory /var/www/vhosts/domain.tld/httpdocs&gt;<br />
    DAV on<br />
&lt;/Directory&gt;</code></p>
<p>To get Plesk to include our custom configuration we must reconfigure the domain with the httpdmng.</p>
<p><code> /usr/local/psa/admin/sbin/httpdmng --reconfigure-domain domain.tld</code></p>
<p>This will make Plesk include the file vhost.conf in our Apache configuration adding the webdav directive.</p>
<p>You should be able to connect to the web share (webdav) now. Using the user name and password of the domain user in Plesk. You can either use the MacOS X finder (connect to server). Or you can also connect through most Linux desktops using Nautilus for example. If you experience any problems writing  to the share. You may need to change the permissions on the folder so that the Apache user has write permissions:</p>
<p><code>chown -R www-data:www-data /var/www/vhosts/domain.tld/httpdocs/</code></p>
<p>Thats it you have created your own web share. </p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Factivate-webdav-in-plesk%2F&amp;t=Activate%20Webdav%20in%20Plesk" id="facebook_share_link_6311">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6311') || document.getElementById('facebook_share_icon_6311') || document.getElementById('facebook_share_both_6311') || document.getElementById('facebook_share_button_6311');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6311') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/activate-webdav-in-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenDNS Server</title>
		<link>http://gentoo-blog.de/ubuntu/opendns-server/</link>
		<comments>http://gentoo-blog.de/ubuntu/opendns-server/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 13:46:15 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6241</guid>
		<description><![CDATA[Google&#8217;s Public DNS Servers in case you need a public uncensored DNS server you can use these:
8.8.8.8
8.8.4.4
Here is my resolv.conf with the open DNS servers:
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver 94.75.228.2
nameserver 80.237.196.2

The last two are also open DNS Servers but not from Google.
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>Google&#8217;s Public DNS Servers in case you need a public uncensored DNS server you can use these:</p>
<p>8.8.8.8<br />
8.8.4.4</p>
<p>Here is my resolv.conf with the open DNS servers:</p>
<p><code>nameserver 8.8.8.8<br />
nameserver 8.8.4.4<br />
nameserver 94.75.228.2<br />
nameserver 80.237.196.2<br />
</code></p>
<p>The last two are also open DNS Servers but not from Google.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fubuntu%2Fopendns-server%2F&amp;t=OpenDNS%20Server" id="facebook_share_link_6241">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6241') || document.getElementById('facebook_share_icon_6241') || document.getElementById('facebook_share_both_6241') || document.getElementById('facebook_share_button_6241');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6241') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/ubuntu/opendns-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk Change PHP Admin Values and Rebuild Vhost Config</title>
		<link>http://gentoo-blog.de/confixx-plesk/plesk-change-php-admin-values-and-rebuild-vhost-config/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/plesk-change-php-admin-values-and-rebuild-vhost-config/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 16:11:46 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6211</guid>
		<description><![CDATA[Create a file called &#8220;vhost.conf&#8221;  in the directory &#8220;/var/www/vhosts/example.com/conf/&#8221;
&#60;Directory /var/www/vhosts/example.com/httpdocs&#62;
php_admin_value safe_mode off
php_admin_flag register_globals on
&#60;/Directory&#62;
Rebuild the domain config for the particular vhost with:
/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example.com
Or rebuild all vhosts if you changed more than one with:
/usr/local/psa/admin/sbin/httpdmng --reconfigure-all
You can also change other settings this way here are some examples:
php_admin_value post_max_size 20M
php_admin_value upload_max_filesize 20M
php_admin_value open_basedir none
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>Create a file called &#8220;vhost.conf&#8221;  in the directory &#8220;/var/www/vhosts/example.com/conf/&#8221;</p>
<p><code>&lt;Directory /var/www/vhosts/example.com/httpdocs&gt;<br />
php_admin_value safe_mode off<br />
php_admin_flag register_globals on<br />
&lt;/Directory&gt;</code></p>
<p>Rebuild the domain config for the particular vhost with:</p>
<p><code>/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example.com</code></p>
<p>Or rebuild all vhosts if you changed more than one with:</p>
<p><code>/usr/local/psa/admin/sbin/httpdmng --reconfigure-all</code></p>
<p>You can also change other settings this way here are some examples:</p>
<p><code>php_admin_value post_max_size 20M<br />
php_admin_value upload_max_filesize 20M<br />
php_admin_value open_basedir none</code></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fplesk-change-php-admin-values-and-rebuild-vhost-config%2F&amp;t=Plesk%20Change%20PHP%20Admin%20Values%20and%20Rebuild%20Vhost%20Config" id="facebook_share_link_6211">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6211') || document.getElementById('facebook_share_icon_6211') || document.getElementById('facebook_share_both_6211') || document.getElementById('facebook_share_button_6211');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6211') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/plesk-change-php-admin-values-and-rebuild-vhost-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 11.10 Oneiric Ocelot Get your minimize and maximize buttons back</title>
		<link>http://gentoo-blog.de/ubuntu/ubuntu-11-10-oneiric-ocelot-get-your-minimize-and-maximize-buttons-back/</link>
		<comments>http://gentoo-blog.de/ubuntu/ubuntu-11-10-oneiric-ocelot-get-your-minimize-and-maximize-buttons-back/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 09:16:44 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Ubuntu/Debian]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6181</guid>
		<description><![CDATA[Get your minimize and maximize buttons back:
Fire up gconf-editor, then edit the following key: 
desktop  > gnome > shell > windows > button_layout 
Then, in the right pane, edit the button_layout value to something like 
:minimize,maximize,close
Thats it your done you should now see the minimize and maximize buttons again.
Share on Facebook
	
	
	
	]]></description>
			<content:encoded><![CDATA[<p>Get your minimize and maximize buttons back:</p>
<p>Fire up gconf-editor, then edit the following key: </p>
<p><code>desktop  > gnome > shell > windows > button_layout</code> </p>
<p>Then, in the right pane, edit the button_layout value to something like </p>
<p><code>:minimize,maximize,close</code></p>
<p>Thats it your done you should now see the minimize and maximize buttons again.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fubuntu%2Fubuntu-11-10-oneiric-ocelot-get-your-minimize-and-maximize-buttons-back%2F&amp;t=Ubuntu%2011.10%20Oneiric%20Ocelot%20Get%20your%20minimize%20and%20maximize%20buttons%20back" id="facebook_share_link_6181">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6181') || document.getElementById('facebook_share_icon_6181') || document.getElementById('facebook_share_both_6181') || document.getElementById('facebook_share_button_6181');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6181') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/ubuntu/ubuntu-11-10-oneiric-ocelot-get-your-minimize-and-maximize-buttons-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk panel 404 /relay after upgrade</title>
		<link>http://gentoo-blog.de/confixx-plesk/plesk-panel-404-relay-after-upgrade/</link>
		<comments>http://gentoo-blog.de/confixx-plesk/plesk-panel-404-relay-after-upgrade/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 10:34:08 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[confixx/Plesk]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6151</guid>
		<description><![CDATA[After upgrading a plesk install yesterday. From 10.1 to 10.3.1 the admin panel started redirecting me from myserver.com:8443 to myserver.com:8443/relay. Which resulted in a 404 error with no plesk panel. During the upgrade plesk must have activated the sso component which stopped the webinterface from working. To fix this issue do the following:
/usr/local/psa/bin/sso --disable
Share on [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading a plesk install yesterday. From 10.1 to 10.3.1 the admin panel started redirecting me from myserver.com:8443 to myserver.com:8443/relay. Which resulted in a 404 error with no plesk panel. During the upgrade plesk must have activated the sso component which stopped the webinterface from working. To fix this issue do the following:</p>
<p><code>/usr/local/psa/bin/sso --disable</code></p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fconfixx-plesk%2Fplesk-panel-404-relay-after-upgrade%2F&amp;t=Plesk%20panel%20404%20%2Frelay%20after%20upgrade" id="facebook_share_link_6151">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6151') || document.getElementById('facebook_share_icon_6151') || document.getElementById('facebook_share_both_6151') || document.getElementById('facebook_share_button_6151');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6151') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/confixx-plesk/plesk-panel-404-relay-after-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update a Mysql password field with an MD5 string</title>
		<link>http://gentoo-blog.de/mysql/update-a-mysql-password-field-with-an-md5-string/</link>
		<comments>http://gentoo-blog.de/mysql/update-a-mysql-password-field-with-an-md5-string/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 10:02:05 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://gentoo-blog.de/?p=6121</guid>
		<description><![CDATA[One of our servers had a database with quite a lot of ftp users using there username as there password. To get rid of that problem i did the following. Make sure to backup you databases first. Now find out how many users there are with userid=passwd. 
This select will show you which users have [...]]]></description>
			<content:encoded><![CDATA[<p>One of our servers had a database with quite a lot of ftp users using there username as there password. To get rid of that problem i did the following. Make sure to backup you databases first. Now find out how many users there are with userid=passwd. </p>
<p>This select will show you which users have a userid field equal to the passwd field not a good idea.</p>
<p><code>select * from ftpuser where userid=passwd;</code></p>
<p>This update statement will update all of these users and set a random MD5 string as there password.</p>
<p><code>update ftpuser set passwd=MD5(RAND()) where userid=passwd;</code></p>
<p>This will only work with clear text passwords.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fgentoo-blog.de%2Fmysql%2Fupdate-a-mysql-password-field-with-an-md5-string%2F&amp;t=Update%20a%20Mysql%20password%20field%20with%20an%20MD5%20string" id="facebook_share_link_6121">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_6121') || document.getElementById('facebook_share_icon_6121') || document.getElementById('facebook_share_both_6121') || document.getElementById('facebook_share_button_6121');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_6121') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://gentoo-blog.de/mysql/update-a-mysql-password-field-with-an-md5-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

