<?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>Blogprojekt &#187; Technik</title>
	<atom:link href="http://www.blogprojekt.de/category/technik/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogprojekt.de</link>
	<description>Tipps und News für neue und professionelle Blogger. Blogtipps, Hilfe beim Blog Start, Blog-Check und mehr.</description>
	<lastBuildDate>Thu, 09 Feb 2012 09:10:15 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>G+ Button selber bauen</title>
		<link>http://www.blogprojekt.de/2011/12/16/wordpress-plugins/g-button-selber-bauen/</link>
		<comments>http://www.blogprojekt.de/2011/12/16/wordpress-plugins/g-button-selber-bauen/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 09:35:20 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Social Web]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[WordPress-Plugins]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1882</guid>
		<description><![CDATA[Vor ein paar Tagen habe ich im Artikel &#8220;Social Network Buttons im Eigenbau&#8221; erkl&#228;rt, wie ich einen Twitter- und einen Facebook-Share-Button selber gebaut habe. Diese funktionieren genauso wie die hauseigenen Buttons dieser Netzwerke, au&#223;er dass keine Daten ungefragt &#252;bermittelt werden. Ein Leser hat mir nun einen Tipp gegeben, wie man dies auch f&#252;r Google+ umsetzen [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/google-plus-button.gif"  style="float:right; clear:right;"  alt="G+ Button selber bauen" />Vor ein paar Tagen habe ich im Artikel &#8220;<a href="http://www.blogprojekt.de/2011/12/13/wordpress-plugins/social-network-buttons-im-eigenbau/"  target="_blank" >Social Network Buttons im Eigenbau</a>&#8221; erkl&#228;rt, wie ich einen Twitter- und einen Facebook-Share-Button selber gebaut habe.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Diese funktionieren genauso wie die hauseigenen Buttons dieser Netzwerke, au&#223;er dass keine Daten ungefragt &#252;bermittelt werden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ein Leser hat mir nun einen Tipp gegeben, wie man dies auch f&#252;r Google+ umsetzen kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Deshalb gibt es heute den Code f&#252;r den eigenen Google+ Button.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Der Google+ Button</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auch f&#252;r den Google+ Button habe ich nun eine statische URL gefunden. Das war die Voraussetzung daf&#252;r, dass ich &#252;berhaupt einen eigenen Button erstellen konnte.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Google+ URL</b><br/>
Die Google+ URL hat den folgenden Aufbau.</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
</pre></td><td class="code" ><pre class="html"  style="font-family:monospace;" >https://plusone.google.com/_/+1/confirm?hl=de&amp;url=URL&amp;title=TITEL')</pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Man muss also nun mit Hilfe von PHP die URL und den Titel einf&#252;gen. Das funktioniert genauso, wie bei den Twitter- und Facebook-Buttons:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" >$Titel = $post-&gt;post_title;
$Titel = urlencode($Titel);
https://plusone.google.com/_/+1/confirm?hl=de&amp;url=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;title=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> <span style="color: #b1b100;" >echo</span> <span style="color: #000088;" >$Titel</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ruft man diese URL nun mitsamt den &#252;bergebenen Werten auf, &#246;ffnet sich das Google +1 Teilen-Fenster.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Google+ Z&#228;hler</b><br/>
Aber der Button w&#228;re nicht komplett, wenn man nicht die Anzahl der +1 anzeigen w&#252;rde.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Den Code daf&#252;r habe ich auch auf <a href="http://johndyer.name/getting-counts-for-twitter-links-facebook-likesshares-and-google-1-plusones-in-c-or-php/"  target="_blank" >johndyer.name</a> gefunden:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" ><span style="color: #000000; font-weight: bold;" >&lt;?php</span>
<span style="color: #000088;" >$URL</span> <span style="color: #339933;" >=</span> get_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000088;" >$Titel</span> <span style="color: #339933;" >=</span> <span style="color: #000088;" >$post</span><span style="color: #339933;" >-&gt;</span><span style="color: #004000;" >post_title</span><span style="color: #339933;" >;</span>
<span style="color: #000088;" >$Titel</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >urlencode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$Titel</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >function</span> get_plusone<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$url</span><span style="color: #009900;" >&#41;</span> <span style="color: #009900;" >&#123;</span>
    <span style="color: #000088;" >$curl</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >curl_init</span><span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_URL<span style="color: #339933;" >,</span> <span style="color: #0000ff;" >&quot;https://clients6.google.com/rpc&quot;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_POST<span style="color: #339933;" >,</span> <span style="color: #cc66cc;" >1</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_POSTFIELDS<span style="color: #339933;" >,</span> <span style="color: #0000ff;" >'[{&quot;method&quot;:&quot;pos.plusones.get&quot;,&quot;id&quot;:&quot;p&quot;,&quot;params&quot;:{&quot;nolog&quot;:true,&quot;id&quot;:&quot;'</span> <span style="color: #339933;" >.</span> <span style="color: #000088;" >$url</span> <span style="color: #339933;" >.</span> <span style="color: #0000ff;" >'&quot;,&quot;source&quot;:&quot;widget&quot;,&quot;userId&quot;:&quot;@viewer&quot;,&quot;groupId&quot;:&quot;@self&quot;},&quot;jsonrpc&quot;:&quot;2.0&quot;,&quot;key&quot;:&quot;p&quot;,&quot;apiVersion&quot;:&quot;v1&quot;}]'</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;" >,</span> <span style="color: #009900; font-weight: bold;" >true</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_HTTPHEADER<span style="color: #339933;" >,</span> <span style="color: #990000;" >array</span><span style="color: #009900;" >&#40;</span><span style="color: #0000ff;" >'Content-type: application/json'</span><span style="color: #009900;" >&#41;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #000088;" >$curl_results</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >curl_exec</span> <span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_close</span> <span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
&nbsp;
    <span style="color: #000088;" >$json</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >json_decode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl_results</span><span style="color: #339933;" >,</span> <span style="color: #009900; font-weight: bold;" >true</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
&nbsp;
    <span style="color: #b1b100;" >return</span> <span style="color: #990000;" >intval</span><span style="color: #009900;" >&#40;</span> <span style="color: #000088;" >$json</span><span style="color: #009900;" >&#91;</span><span style="color: #cc66cc;" >0</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'result'</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'metadata'</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'globalCounts'</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'count'</span><span style="color: #009900;" >&#93;</span> <span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #009900;" >&#125;</span>
<span style="color: #b1b100;" >echo</span> get_plusone<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >?&gt;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zum Auslesen des +1 Z&#228;hlerstandes ist hier etwas mehr Code notwendig, zudem muss CURL auf dem Server installiert sein. Aber dann funktioniert das sehr gut.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><script type="text/javascript" >
</script>
<script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js" >
</script></p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Der komplette Code</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wie schon bei den anderen beiden Buttons habe ich auch hier wieder JavaScript verwendet, um ein PopUp-Fenster zu &#246;ffnen.</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
</pre></td><td class="code" ><pre class="javascript"  style="font-family:monospace;" ><span style="color: #339933;" >&lt;</span>script language<span style="color: #339933;" >=</span><span style="color: #3366CC;" >&quot;JavaScript&quot;</span><span style="color: #339933;" >&gt;</span>
<span style="color: #003366; font-weight: bold;" >function</span> NeuFenster1<span style="color: #009900;" >&#40;</span>$url<span style="color: #009900;" >&#41;</span>
<span style="color: #009900;" >&#123;</span> MeinFenster <span style="color: #339933;" >=</span> window.<span style="color: #000066;" >open</span><span style="color: #009900;" >&#40;</span>$url<span style="color: #339933;" >,</span> <span style="color: #3366CC;" >&quot;Artikel teilen&quot;</span><span style="color: #339933;" >,</span><span style="color: #3366CC;" >&quot;width=600,height=500&quot;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> MeinFenster.<span style="color: #000066;" >focus</span><span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #009900;" >&#125;</span>
<span style="color: #339933;" >&lt;/</span>script<span style="color: #339933;" >&gt;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Alternativ k&#246;nnte man auch target=&#8221;_blank&#8221; nutzen, damit sich Google+ in einem neuen Reiter &#246;ffnet.</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" ><span style="color: #000000; font-weight: bold;" >&lt;?php</span>
<span style="color: #000088;" >$URL</span> <span style="color: #339933;" >=</span> get_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000088;" >$Titel</span> <span style="color: #339933;" >=</span> <span style="color: #000088;" >$post</span><span style="color: #339933;" >-&gt;</span><span style="color: #004000;" >post_title</span><span style="color: #339933;" >;</span>
<span style="color: #000088;" >$Titel</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >urlencode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$Titel</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >function</span> get_plusone<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$url</span><span style="color: #009900;" >&#41;</span> <span style="color: #009900;" >&#123;</span>
    <span style="color: #000088;" >$curl</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >curl_init</span><span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_URL<span style="color: #339933;" >,</span> <span style="color: #0000ff;" >&quot;https://clients6.google.com/rpc&quot;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_POST<span style="color: #339933;" >,</span> <span style="color: #cc66cc;" >1</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_POSTFIELDS<span style="color: #339933;" >,</span> <span style="color: #0000ff;" >'[{&quot;method&quot;:&quot;pos.plusones.get&quot;,&quot;id&quot;:&quot;p&quot;,&quot;params&quot;:{&quot;nolog&quot;:true,&quot;id&quot;:&quot;'</span> <span style="color: #339933;" >.</span> <span style="color: #000088;" >$url</span> <span style="color: #339933;" >.</span> <span style="color: #0000ff;" >'&quot;,&quot;source&quot;:&quot;widget&quot;,&quot;userId&quot;:&quot;@viewer&quot;,&quot;groupId&quot;:&quot;@self&quot;},&quot;jsonrpc&quot;:&quot;2.0&quot;,&quot;key&quot;:&quot;p&quot;,&quot;apiVersion&quot;:&quot;v1&quot;}]'</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_RETURNTRANSFER<span style="color: #339933;" >,</span> <span style="color: #009900; font-weight: bold;" >true</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_setopt</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #339933;" >,</span> CURLOPT_HTTPHEADER<span style="color: #339933;" >,</span> <span style="color: #990000;" >array</span><span style="color: #009900;" >&#40;</span><span style="color: #0000ff;" >'Content-type: application/json'</span><span style="color: #009900;" >&#41;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #000088;" >$curl_results</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >curl_exec</span> <span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #990000;" >curl_close</span> <span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
&nbsp;
    <span style="color: #000088;" >$json</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >json_decode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$curl_results</span><span style="color: #339933;" >,</span> <span style="color: #009900; font-weight: bold;" >true</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
&nbsp;
    <span style="color: #b1b100;" >return</span> <span style="color: #990000;" >intval</span><span style="color: #009900;" >&#40;</span> <span style="color: #000088;" >$json</span><span style="color: #009900;" >&#91;</span><span style="color: #cc66cc;" >0</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'result'</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'metadata'</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'globalCounts'</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'count'</span><span style="color: #009900;" >&#93;</span> <span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #009900;" >&#125;</span>
<span style="color: #b1b100;" >echo</span> get_plusone<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >?&gt;</span>
&lt;a href=&quot;javascript:NeuFenster1('https://plusone.google.com/_/+1/confirm?hl=de&amp;url=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;title=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> <span style="color: #b1b100;" >echo</span> <span style="color: #000088;" >$Titel</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>')&quot;&gt;&lt;img src=&quot;http://www.selbstaendig-im-netz.de/Bilder/social-buttons/google+1.gif&quot; alt=&quot;Google +1&quot; title=&quot;Google +1&quot; border=&quot;0&quot; &gt;&lt;/a&gt;</pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mit Hilfe von etwas CSS kann man auch noch eine Hintergrundgrafik einbauen. Bei mir sorgt diese f&#252;r das wei&#223;e Feld hinter dem Z&#228;hlerstand.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Einfach um den Button noch ein DIV und dort als Hintergrund-Grafik eben dieses wei&#223;e Feld hinterlegen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auf Selbst&#228;ndig im Netz sieht man im Code, wie ich das gemacht habe.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Fazit</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Damit ist nun auch das 3. gro&#223;e Netzwerk als statischer Button selber einbaubar.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auf diese Weise werden keine Daten mehr ungefragt an Google, Facebook und Twitter gesendet. Damit sollte man dann also etwas sicherer sein und die <a href="http://www.selbstaendig-im-netz.de/2011/12/12/recht/social-plugins-verstossen-gegen-datenschutz/"  target="_blank" >Anforderungen der Datensch&#252;tzer</a> erf&#252;llen. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zumindest hoffe ich das. <img src="http://www.blogprojekt.de/wp-includes/images/smilies/icon_smile.gif"  alt=":-)"  class="wp-smiley" /> </p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/12/16/wordpress-plugins/g-button-selber-bauen/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Social Network Buttons im Eigenbau</title>
		<link>http://www.blogprojekt.de/2011/12/13/wordpress-plugins/social-network-buttons-im-eigenbau/</link>
		<comments>http://www.blogprojekt.de/2011/12/13/wordpress-plugins/social-network-buttons-im-eigenbau/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 12:17:48 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Social Web]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[WordPress-Plugins]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1873</guid>
		<description><![CDATA[Immer mal wieder was neues gibt es auch von den deutschen Datensch&#252;tzern. Weil diese nun die hauseigenen Social Plugins von Netzwerken wie Facebook, Twitter und Co. f&#252;r rechtswidrig halten, stellt sich die Frage was nun. Man k&#246;nnte das zwar ignorieren, aber damit steigen nat&#252;rlich die &#8220;Chancen&#8221; auf Bu&#223;gelder oder Abmahnungen. Ich habe mich deshalb im [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/social-buttons.gif"  style="float:right; clear:right;"  alt="Social Network Buttons im Eigenbau" />Immer mal wieder was neues gibt es auch von den deutschen Datensch&#252;tzern.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Weil diese nun die hauseigenen Social Plugins von Netzwerken wie Facebook, Twitter und Co. f&#252;r <a href="http://www.selbstaendig-im-netz.de/2011/12/12/recht/social-plugins-verstossen-gegen-datenschutz/"  target="_blank" >rechtswidrig</a> halten, stellt sich die Frage was nun.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Man k&#246;nnte das zwar ignorieren, aber damit steigen nat&#252;rlich die &#8220;Chancen&#8221; auf Bu&#223;gelder oder Abmahnungen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich habe mich deshalb im Web schlau gemacht und mir eigene Buttons f&#252;r Twitter und Facebook gebaut.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Eigene Social Buttons?!</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wie wichtig Social Buttons in einem Blog sind ist nicht wirklich zu sagen. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auf Selbstaendig-im-Netz.de habe ich pro Artikel normalerweise zwischen 10 und 30 Retweets. Ich gehe zwar davon aus, dass der Gro&#223;teil davon direkt in Twitter passiert und nicht mit Hilfe des Twitter-Buttons, aber g&#228;nzlich darauf verzichten m&#246;chte ich nicht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und es ist auch gar nicht so schwer, einen eigenen Facebook- oder Twitter-Button zu bauen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Diese bestehen aus 2 Teilen. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zum einen nat&#252;rlich aus dem Button selber, der dann Facebook bzw. Twitter &#246;ffnet und die Artikel-URL + Titel gleich &#252;bernimmt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zum anderen finde ich den Z&#228;hler wichtig und n&#252;tzlich, da er neuen Besuchern zeigen kann, dass ein bestimmter Artikel besonders gut angekommen ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Also habe ich mir selber Social Buttons mit Z&#228;hlern gebaut.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Der Facebook-Button</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Im Grunde funktionieren die beiden Buttons &#228;hnlich. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich nutze bei Facebook &#252;brigens immer die Share-Funktion und nicht die Like-Funktion. Deshalb sorgt der folgende Code f&#252;r den Aufruf den Share-Fensters.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ein Like-Button sollte aber &#228;hnlich funktionieren.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Facebook-Share URL</b><br/>
Als erstes m&#252;ssen wir die Facebook-URL zusammen bauen. Diese URL beginnt immer wie folgt:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
</pre></td><td class="code" ><pre class="html"  style="font-family:monospace;" >http://www.facebook.com/sharer/sharer.php?u=</pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Hinter dem &#8220;u=&#8221; kommt nat&#252;rlich die URL des aktuellen Artikels. Diese kann man mit WordPress sehr einfach hinzuf&#252;gen:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" >http://www.facebook.com/sharer/sharer.php?u=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Die Funktion &#8220;the_permalink()&#8221; gibt die aktuelle URL aus.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Doch danach kommt noch etwas. Man kann auch den Titel des aktuellen Artikels &#252;bergeben. Diesen bekommt man von der WordPress-Funktion &#8220;the_title()&#8221;.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und so sieht die Facebook-URL dann komplett aus:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" >http://www.facebook.com/sharer/sharer.php?u=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;t=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_title<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;src=sp</pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Facebook Share Z&#228;hler</b><br/>
Da habe ich im Web mal etwas gegoogelt. Und ich habe die Seite johndyer.name gefunden. Dort gibt es <a href="http://johndyer.name/getting-counts-for-twitter-links-facebook-likesshares-and-google-1-plusones-in-c-or-php/"  target="_blank" >Code-Beispiele</a>, wie man die Anzahl der Stimmen f&#252;r eine URL bei verschiedenen Netzwerken auslesen kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Darauf basierend habe ich meinen Code erstellt:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" ><span style="color: #000000; font-weight: bold;" >&lt;?php</span>
<span style="color: #000088;" >$URL</span> <span style="color: #339933;" >=</span> get_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >function</span> get_shares<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span> <span style="color: #009900;" >&#123;</span>
    <span style="color: #000088;" >$SBstring</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >file_get_contents</span><span style="color: #009900;" >&#40;</span><span style="color: #0000ff;" >'http://api.facebook.com/restserver.php?method=links.getStats&amp;urls='</span><span style="color: #339933;" >.</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #000088;" >$SBarray</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >json_decode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$SBstring</span><span style="color: #339933;" >,</span> <span style="color: #009900; font-weight: bold;" >true</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #b1b100;" >return</span> <span style="color: #990000;" >intval</span><span style="color: #009900;" >&#40;</span> <span style="color: #000088;" >$SBarray</span><span style="color: #009900;" >&#91;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#93;</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'shares'</span><span style="color: #009900;" >&#93;</span> <span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #009900;" >&#125;</span>
<span style="color: #b1b100;" >echo</span> get_shares<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Man ruft die API-URL mitsamt der gew&#252;nschten eigenen URL auf, wandelt diese mit Hilfe der JSON-Funktionsbibliothek in ein Array um und kann dann auf ein Feld des Arrays zugreifen, das die Zahl der Shares enth&#228;lt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Im Grunde also recht einfach.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Der Twitter-Button</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Beim Twitter-Button l&#228;uft es &#228;hnlich ab. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Twitter URL</b><br/>
Auch hier erzeugt man eine spezielle API-URL und f&#252;gt dort die URL und den Titel ein. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Beim Aufruf dieser URL gelangt man zum Twitter und hat quasi schon einen fertigen Tweet, den man nur noch absenden muss.</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" >$Titel = $post-&gt;post_title;
$Titel = urlencode($Titel);
https://twitter.com/intent/tweet?original_referer=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;source=tweetbutton&amp;text=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> <span style="color: #b1b100;" >echo</span> <span style="color: #000088;" >$Titel</span><span style="color: #339933;" >;</span><span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;url=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Tweet Z&#228;hler</b><br/>
Diese Funktion basiert ebenfalls auf dem oben verlinkten Artikel.</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" ><span style="color: #000000; font-weight: bold;" >&lt;?php</span>
<span style="color: #000088;" >$URL</span> <span style="color: #339933;" >=</span> get_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >function</span> get_retweets<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span> <span style="color: #009900;" >&#123;</span>
    <span style="color: #000088;" >$SBstring</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >file_get_contents</span><span style="color: #009900;" >&#40;</span><span style="color: #0000ff;" >'http://urls.api.twitter.com/1/urls/count.json?url='</span> <span style="color: #339933;" >.</span> <span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #000088;" >$SBarray</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >json_decode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$SBstring</span><span style="color: #339933;" >,</span> <span style="color: #009900; font-weight: bold;" >true</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #b1b100;" >return</span> <span style="color: #990000;" >intval</span><span style="color: #009900;" >&#40;</span> <span style="color: #000088;" >$SBarray</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'count'</span><span style="color: #009900;" >&#93;</span> <span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #009900;" >&#125;</span>
<span style="color: #b1b100;" >echo</span> get_retweets<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Soweit so gut. Damit habt ihr also nun den Code f&#252;r die Erzeugung der jeweiligen Tweet- bzw. Share-URLs.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und ihr habt den Code f&#252;r den Z&#228;hler.</p>
<h4 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Optische Gestaltung</h4>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nun kommt es eigentlich nur noch darauf an, diese zusammen zu f&#252;hren.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Man kann es so machen, wie im oberen Screenshot. Da habe ich einfach die &#252;bliche Anordnung nachempfunden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mit &lt;div&gt;-Tags und ein wenig CSS kann man das problemlos so gestalten wie man m&#246;chte.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Hier der Code f&#252;r meinen Twitter-Button inkl. der Hintergrundgrafik social-tw-back.gif (damit wird das wei&#223;e Feld erzeugt, wo der Z&#228;hler drin steht):</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" >&lt;div style=&quot;width: 80px; text-align:center; font-size:16pt; color:#496398; background-image: url(http://www.selbstaendig-im-netz.de/Bilder/social-buttons/social-tw-back.gif);&quot;&gt;
<span style="color: #000000; font-weight: bold;" >&lt;?php</span>
<span style="color: #000088;" >$URL</span> <span style="color: #339933;" >=</span> get_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000088;" >$Titel</span> <span style="color: #339933;" >=</span> <span style="color: #000088;" >$post</span><span style="color: #339933;" >-&gt;</span><span style="color: #004000;" >post_title</span><span style="color: #339933;" >;</span>
<span style="color: #000088;" >$Titel</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >urlencode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$Titel</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >function</span> get_retweets<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span> <span style="color: #009900;" >&#123;</span>
    <span style="color: #000088;" >$SBstring</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >file_get_contents</span><span style="color: #009900;" >&#40;</span><span style="color: #0000ff;" >'http://urls.api.twitter.com/1/urls/count.json?url='</span> <span style="color: #339933;" >.</span> <span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #000088;" >$SBarray</span> <span style="color: #339933;" >=</span> <span style="color: #990000;" >json_decode</span><span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$SBstring</span><span style="color: #339933;" >,</span> <span style="color: #009900; font-weight: bold;" >true</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
    <span style="color: #b1b100;" >return</span> <span style="color: #990000;" >intval</span><span style="color: #009900;" >&#40;</span> <span style="color: #000088;" >$SBarray</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'count'</span><span style="color: #009900;" >&#93;</span> <span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #009900;" >&#125;</span>
<span style="color: #b1b100;" >echo</span> get_retweets<span style="color: #009900;" >&#40;</span><span style="color: #000088;" >$URL</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #000000; font-weight: bold;" >?&gt;</span>
&lt;a href=&quot;javascript:NeuFenster1('https://twitter.com/intent/tweet?original_referer=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;source=tweetbutton&amp;text=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> <span style="color: #b1b100;" >echo</span> <span style="color: #000088;" >$Titel</span><span style="color: #339933;" >;</span><span style="color: #000000; font-weight: bold;" >?&gt;</span>&amp;url=<span style="color: #000000; font-weight: bold;" >&lt;?php</span> the_permalink<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #000000; font-weight: bold;" >?&gt;</span>')&quot;&gt;&lt;img src=&quot;http://www.selbstaendig-im-netz.de/Bilder/social-buttons/tweet-twitter.gif&quot; style=&quot;margin-top:19px; padding:0px;&quot; alt=&quot;Artikel tweeten&quot; title=&quot;Artikel tweeten&quot; border=&quot;0&quot; &gt;&lt;/a&gt;
&lt;/div&gt;</pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Der Tweet-Button selber ist auch eine Grafik (tweet-twitter.gif).</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich lasse das neue Fenster &#252;brigens in einem PopUp &#246;ffnen, so wie es standardm&#228;&#223;ig auch ist. Daf&#252;r rufe ich die URL nicht direkt auf, sondern die Funktion &#8220;javascript:NeuFenster1(<i>URL</i>)&#8221;</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dazu habe ich noch den folgenden kleinen JaveScript-Code eingebaut:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
</pre></td><td class="code" ><pre class="javascript"  style="font-family:monospace;" ><span style="color: #339933;" >&lt;</span>script language<span style="color: #339933;" >=</span><span style="color: #3366CC;" >&quot;JavaScript&quot;</span><span style="color: #339933;" >&gt;</span>
<span style="color: #003366; font-weight: bold;" >function</span> NeuFenster1<span style="color: #009900;" >&#40;</span>$url<span style="color: #009900;" >&#41;</span>
<span style="color: #009900;" >&#123;</span> MeinFenster <span style="color: #339933;" >=</span> window.<span style="color: #000066;" >open</span><span style="color: #009900;" >&#40;</span>$url<span style="color: #339933;" >,</span> <span style="color: #3366CC;" >&quot;Artikel teilen&quot;</span><span style="color: #339933;" >,</span><span style="color: #3366CC;" >&quot;width=600,height=500&quot;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> MeinFenster.<span style="color: #000066;" >focus</span><span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> <span style="color: #009900;" >&#125;</span>
<span style="color: #339933;" >&lt;/</span>script<span style="color: #339933;" >&gt;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das sorgt daf&#252;r, dass bei einem Klick auf den Tweet-Button ein Popup aufgeht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Will man, dass ein neuer Reiter aufgeht, dann einfach normal die Twitter-URL verlinken und &#8220;target=_blank&#8221; nutzen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Button und Z&#228;hler nebeneinander</b><br/>
Nat&#252;rlich ist es damit genauso m&#246;glich, den Z&#228;hler rechts neben dem Button anzuzeigen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wenn man etwas HTML und CSS kann, sollte das kein gro&#223;es Problem darstellen.</p>
<h5 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Caching?</h5>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich habe versucht heraus zu bekommen, ob es f&#252;r die Abrufe des Z&#228;hlerstandes ein Tageslimit gibt. So richtig sicher bin ich mir nicht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Sollte das so sein, dann wird irgendwann am Tag, wenn das Limit erreicht ist, nur noch eine 0 angezeigt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Um diesem Problem aus dem Weg zu gehen und zudem zu vermeiden, dass bei jedem Seitenaufruf der Z&#228;hler abgefragt wird, k&#246;nnte man mehrere Dinge unternehmen:</p>
<ol class="" >
<li><b>Zwischenspeichern</b><br/>
Zum einen w&#228;re es m&#246;glich, dass man den Z&#228;hlerstand nur alle 10, 20 oder 30 Minuten ausliest und ansonsten auf einen in der Datenbank oder in einer Datei gespeicherten Wert zur&#252;ck greift. Allerdings ist das bei einem so dynamischen Wert, der ja gerade kurz nach der Ver&#246;ffentlichung in kurzen Abst&#228;nden steigt, nicht ideal. Zudem sind die Schreib- und Lesezugriffe auf die Datenbank (oder schlimmer auf eine Datei auf der Festplatte) nicht unbedingt die schnellsten.</li>
<li><b>Cachen</b><br/>
Die Verwendung eines Caching-Plugins sorgt daf&#252;r, dass auch der Z&#228;hlerstand gecached wird. Damit reduzieren sie die Aufrufe der API schon deutlich.</li>
<li><b>Ausblenden</b><br/>
Ich &#252;berlege gerade, ob ich die Social Buttons nach einer gewissen Zeit einfach ausblende. In einem viele Monate alten Artikel wird kaum noch jemand diese Buttons benutzen.</li>
</ol>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es gibt jedenfalls einige M&#246;glichkeiten, die Anzahl der API-Zugriffe f&#252;r die Z&#228;hlerst&#228;nde zu verringern.</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Was ist mit Google+?</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Den Z&#228;hler von Google+ abzurufen ist kein gr&#246;&#223;eres Problem.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Allerdings ist es, soweit ich wei&#223;, bisher nicht m&#246;glich eine statische URL zu erstellen, mit der man ein +1 bei Google+ vergeben kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Deshalb kann ich bisher auch keinen +1 Button selber bauen. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Aber ganz so schlimm ist das nicht, da Google+ mengenm&#228;&#223;ig bisher noch keine gro&#223;e Rolle spielt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mittelfristig w&#228;re das aber eine sch&#246;ne Sache. Warten wir es mal ab.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>UPDATE:</b><br/>
Nun habe ich (mit Hilfe eines Lesers) auch eine L&#246;sung f&#252;r den Google+ Button gefunden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zum Artikel &#8220;<a href="http://www.blogprojekt.de/2011/12/16/wordpress-plugins/g-button-selber-bauen/" >G+ Button selber bauen</a>&#8220;.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;"><br/>Fazit<br/></b><br/>
Man kann sich also recht einfach selber Social Buttons bauen, die von selber keine Daten &#252;ber den Nutzer an Facebook und Co. versenden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Damit sollte man rechtlich gesehen etwas sicherer sein.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/12/13/wordpress-plugins/social-network-buttons-im-eigenbau/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Social-Network-Buttons und Z&#228;hler im Blog einbauen</title>
		<link>http://www.blogprojekt.de/2011/12/05/wordpress-plugins/social-network-buttons-und-zahler-im-blog-einbauen/</link>
		<comments>http://www.blogprojekt.de/2011/12/05/wordpress-plugins/social-network-buttons-und-zahler-im-blog-einbauen/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 14:12:38 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Social Web]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[WordPress-Plugins]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1862</guid>
		<description><![CDATA[Vor einer Weile hatte ich mal versprochen, dass ich kurz erkl&#228;re, wie ich die Social-Networks Button auf Selbstaendig-im-Netz.de in die rechte Sidebar eingebunden habe. Und dort werden auch die Zahl der Follower und die Anzahl der Feedleser angezeigt.. Deshalb ist dieser Artikel heute recht praktisch und ich zeige euch, wie ich es gemacht habe. Die [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/social-buttons-sidebar.gif"  style="float:right; clear:right;"  alt="Social-Network-Buttons und Z&#228;hler im Blog einbauen" />Vor einer Weile hatte ich mal versprochen, dass ich kurz erkl&#228;re, wie ich die Social-Networks Button auf <a href="http://www.Selbstaendig-im-Netz.de"  target="_blank" >Selbstaendig-im-Netz.de</a> in die rechte Sidebar eingebunden habe.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und dort werden auch die Zahl der Follower und die Anzahl der Feedleser angezeigt..</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Deshalb ist dieser Artikel heute recht praktisch und ich zeige euch, wie ich es gemacht habe.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Die Sidebar bearbeiten</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Um in der Sidebar Inhalte einpflegen zu k&#246;nnen, kann man entweder ein Widget nutzen und dort statischen HTML-Code einf&#252;gen oder man bearbeitet die Theme-Datei &#8220;sidebar.php&#8221; direkt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Letzteres l&#228;sst sich nicht umgehen, wenn man dort dynamisch die Anzahl der Follower bzw. der RSS-Abonnenten einblenden lassen m&#246;chte.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Also solltet ihr die Datei &#8220;sidebar.php&#8221; mit einem FTP-Programm erstmal sichern. Ein Backup wird dringend empfohlen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Danach k&#246;nnte ihr die Datei bearbeiten.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Social Buttons anzeigen</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es ist relativ einfach ein paar Social-Buttons anzeigen zu lassen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dazu m&#252;sste ihr im Internet erstmal nach einem kostenlosen Icon-Set suchen, welches euch gef&#228;llt und Icons f&#252;r die gew&#252;nschten Social Networks enth&#228;lt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Diese passt ihr in einem Bildbearbeitungsprogramm an die gew&#252;nschte Gr&#246;&#223;e an, ladet sie auf euren Webspace und dann kann man den folgenden Code direkt in der Sidebar an der gew&#252;nschten Stelle einbauen:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
</pre></td><td class="code" ><pre class="html"  style="font-family:monospace;" >&lt;a href=&quot;URL-zum-eigenen-Social-Network-Profil&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://URL-zum-passenden-Social-Network-Icon&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;</pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mit dieser Vorlage kann man schon mal die ganzen Social Network Icons samt Verlinkung zum jeweiligen Profil einbauen.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Twitter-Follower und RSS-Abonnenten</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">F&#252;r die Anzeige der beiden Follower- bzw. Abonnenten Zahlen nutze ich 2 Plugins.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>Twitter-Follower</b><br/>
Sergej M&#252;ller, der Autor von wpSEO, hat auch daf&#252;r ein passendes Plugin.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><a href="http://playground.ebiene.de/2375/wptwitbox-wordpress-plugin/"  target="_blank" >wpTwitBox</a> nennt sich das gute St&#252;ck, welches kostenlos ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nach der Installation und der Authentifizierung bei Twitter liest dieses Tool unter anderem die Anzahl der Follower aus.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mit der folgenden Funktion gibt man die Anzahl der Follower aus:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
5
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" ><span style="color: #000000; font-weight: bold;" >&lt;?php</span> 
<span style="color: #b1b100;" >if</span> <span style="color: #009900;" >&#40;</span><span style="color: #990000;" >class_exists</span><span style="color: #009900;" >&#40;</span><span style="color: #0000ff;" >'wpTwitBox'</span><span style="color: #009900;" >&#41;</span><span style="color: #009900;" >&#41;</span> <span style="color: #009900;" >&#123;</span> 
  <span style="color: #000088;" >$GLOBALS</span><span style="color: #009900;" >&#91;</span><span style="color: #0000ff;" >'wpTwitBox'</span><span style="color: #009900;" >&#93;</span><span style="color: #339933;" >-&gt;</span><span style="color: #004000;" >the_followers_count</span><span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span>
<span style="color: #009900;" >&#125;</span> 
<span style="color: #000000; font-weight: bold;" >?&gt;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Also recht einfach.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b>RSS-Abonnenten</b><br/>
Das kostenlose Plugin &#8220;<a href="http://www.mapelli.info/feed-count-12"  target="_blank" >Feed Count</a>&#8221; leistet da recht gute Dienste. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mit der folgenden Funktion kann man die aktuelle Anzahl der RSS-Leser eines Feed auslesen und anzeigen lassen:</p>

<div class="wp_syntax" ><table><tr><td class="line_numbers" ><pre>1
2
3
4
5
</pre></td><td class="code" ><pre class="php"  style="font-family:monospace;" ><span style="color: #000000; font-weight: bold;" >&lt;?php</span> 
<span style="color: #b1b100;" >if</span> <span style="color: #009900;" >&#40;</span><span style="color: #990000;" >function_exists</span><span style="color: #009900;" >&#40;</span><span style="color: #0000ff;" >'fc_feedcount'</span><span style="color: #009900;" >&#41;</span><span style="color: #009900;" >&#41;</span> <span style="color: #009900;" >&#123;</span>
  <span style="color: #b1b100;" >echo</span> fc_feedcount<span style="color: #009900;" >&#40;</span><span style="color: #009900;" >&#41;</span><span style="color: #339933;" >;</span> 
<span style="color: #009900;" >&#125;</span>
<span style="color: #000000; font-weight: bold;" >?&gt;</span></pre></td></tr></table></div>

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mit CSS kann man dann die Ausgabe in Farbe und Gr&#246;&#223;e so anpassen, wie man das m&#246;chte.</p>
<h4 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Fazit</h4>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nat&#252;rlich habe ich die Ausgabe mit CSS dann noch so gestaltet, wie ich sie haben m&#246;chte. Das sieht man bei mir im Blog aber alles im Quellcode.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es w&#228;re nat&#252;rlich sch&#246;n, wenn es daf&#252;r ein Plugin geben w&#252;rde. Evtl. bastle ich das mal zusammen. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">So lange muss man es eben von Hand machen, aber es funktioniert sehr gut.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/12/05/wordpress-plugins/social-network-buttons-und-zahler-im-blog-einbauen/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Analytics datenschutzgerecht nutzen</title>
		<link>http://www.blogprojekt.de/2011/09/16/wordpress-plugins/google-analytics-datenschutzgerecht-nutzen/</link>
		<comments>http://www.blogprojekt.de/2011/09/16/wordpress-plugins/google-analytics-datenschutzgerecht-nutzen/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 10:05:17 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[WordPress-Plugins]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1293</guid>
		<description><![CDATA[Seit Jahren ringen Datensch&#252;tzer und Google um eine Einigung bzgl. der Nutzung von Google Analytics. Nun hat man sich auf einen Kompromiss verst&#228;ndigt. In diesem Artikel erkl&#228;re ich genau, was man tun muss, um Google Analytics in Deutschland legal nutzen zu k&#246;nnen. Google Analytics und der Datenschutz Seit l&#228;ngerem gibt es Streit &#252;ber Google Analytics. [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Seit Jahren ringen Datensch&#252;tzer und Google um eine Einigung bzgl. der Nutzung von Google Analytics.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nun hat man sich auf einen <a href="http://www.selbstaendig-im-netz.de/2011/09/15/recht/google-analytics-offiziell-datenschutzkonform/"  target="_blank" >Kompromiss</a> verst&#228;ndigt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">In diesem Artikel erkl&#228;re ich genau, was man tun muss, um Google Analytics in Deutschland legal nutzen zu k&#246;nnen.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Google Analytics und der Datenschutz</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Seit l&#228;ngerem gibt es <a href="http://www.selbstaendig-im-netz.de/2011/01/19/blogs/google-vs-datenschutz-2011/"  target="_blank" >Streit &#252;ber Google Analytics</a>.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Deutsche Datensch&#252;tzer werfen dem Internet-Riesen vor, gegen Gesetze zu versto&#223;en und drohen allen Website-Betreibern, die Google Analytics einsetzen, mit <a href="http://www.spiegel.de/netzwelt/netzpolitik/0,1518,738843,00.html"  target="_blank" >Bu&#223;geldern</a>. Google selber hat zwar immer betont, dass es rechtlich keine Bedenken sieht, hat nun aber eingelenkt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und so gibt es nun seitens Google und der Datensch&#252;tzer 5 Punkte, die man beim Einsatz von Google Analytics beachten muss.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">1. IP-Maskierung</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Kern der ganzen Problematik war die Speicherung der IP-Adressen der Website-Besucher durch Google. Datensch&#252;tzer sehen diese als personenbezogene Daten an, was durchaus nicht unumstritten ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nun bietet Google schon seit einer ganzen Weile die M&#246;glichkeit, den Google Analytics Code so zu erweitern, damit die letzten Stellen der IP-Adresse abgeschnitten werden und damit eine pers&#246;nliche Zuordnung nicht mehr m&#246;glich ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dies kann man entweder erreichen, in dem man manuell eine zus&#228;tzliche Zeile im Analytics-Code einbaut (dies ist der neue asynchrone Code).<br/>
<code><br/>
&lt;script type="text/javascript"&gt;<br/>
  var _gaq = _gaq || [];<br/>
  _gaq.push(['_setAccount', 'UA-XXXXXXX-X']);<br/>
  _gaq.push(['_gat._anonymizeIp']);<br/>
  _gaq.push(['_trackPageview']);</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">  (function() {<br/>
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;<br/>
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';<br/>
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);<br/>
  })();<br/>
&lt;/script&gt;<br/>
</code></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Die vierte Zeile ist dabei der neue Code.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Im alten Analytics-Code baut ihr einfach die Zeile<br/>
<code><br/>
_gat._anonymizeIp();<br/>
</code></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">zus&#228;tzlich vor der Zeile &#8220;pageTracker._trackPageview();&#8221; ein.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/analytics-plugin-ip.jpg"  style="float:right;"  alt="Google Analytics datenschutzgerecht nutzen" />Alternativ bieten einige wenige Analytics-Plugins f&#252;r WordPress schon die M&#246;glichkeit, die Anonymisierung zu aktivieren.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ein Plugin, dass das unterst&#252;tzt, ist &#8220;<a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/"  target="_blank" >Google Analytics for WordPress</a>&#8220;.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wie man in dem Screenshot sehen kann, gibt es unter anderem die Option &#8220;Anonymize IP&#8217;s&#8221;.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">2. Datenschutzerkl&#228;rung</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es gibt derzeit unterschiedliche Meinungen, ob Google Analytics &#252;berhaupt noch in die Datenschutzerkl&#228;rung aufgenommen werden muss.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Hat man die IP-Maskierung aktiviert, werden ja keine personenbezogenen Daten mehr erfasst und die gesetzliche Vorschriften sind eigentlich nicht mehr g&#252;ltig.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Der Sicherheit halber sollte man aber einen Absatz dazu im Impressum oder einer separaten Datenschutzerkl&#228;rung einf&#252;gen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Unter Punkt 8.1 in den &#8220;<a href="http://www.google.com/intl/de/analytics/tos.html"  target="_blank" >Terms of Service</a>&#8221; von Google Analytics, findet man eine passende Textvorlage.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Viele <a href="http://www.iitr.de/datenschutz-google-analytics-erfuellt-zentrale-forderung-der-datenschutz-aufsichtsbehoerden.html"  target="_blank" >Anw&#228;lte</a> empfehlen einen Text wie den folgenden noch darunter zu erg&#228;nzen:</p>
<div style="background-color: #ccc; padding: 10px; margin-left: 15px; width:500px;" >
Der Datenerhebung und -speicherung kann jederzeit mit Wirkung f&#252;r die Zukunft widersprochen [mit http://tools.google.com/dlpage/gaoptout?hl=de verlinken] werden. Angesichts der Diskussion um den Einsatz von Analysetools mit vollst&#228;ndigen IP-Adressen m&#246;chten wir darauf hinweisen, dass diese Website Google Analytics mit der Erweiterung &#8220;_anonymizeIp()&#8221; verwendet und daher IP-Adressen nur gek&#252;rzt weiterverarbeitet werden, um eine direkte Personenbeziehbarkeit auszuschlie&#223;en.“
</div>
<h4 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">3. Browser-Addon</h4>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es muss auch in der Datenschutzerkl&#228;rung darauf hingewiesen werden, dass ein Browser-Plugin von Google existiert, mit welchem man die Analytics Erfassung generell deaktivieren kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dieser Link ist in dem Text, den ich im vorherigen Punkt verlinkt habe, bereits enthalten. Da muss man also nichts weiter machen.</p>
<h5 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">4. Neuer Vertrag mit Google</h5>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Man soll auch einen neuen Vertrag mit Google Analytics abschlie&#223;en, der zusammen mit den Datensch&#252;tzern im Einklang mit der Auftragsdatenverarbeitung nach § 11 BDSG erstellt wurde.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Sowohl &#8220;Alt-Kunden&#8221; von Analytics, als auch jeder, der jetzt ein neues Analytics-Konto anlegt, soll dieses <a href="http://static.googleusercontent.com/external_content/untrusted_dlcp/www.google.de/de/de/intl/de/analytics/tos.pdf"  target="_blank" >Dokument</a> herunterladen, ausdrucken und an Google senden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das ist mal wieder typisch deutsch. Auf jeden Fall was ausgedrucktes haben!</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">5. Altdaten l&#246;schen</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zu guter Letzt fordern die Datensch&#252;tzer noch dazu auf, dass man seine Altdaten bei Google Analytics l&#246;schen soll.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das geht allerdings nur, in dem man bestehende Website-Profile l&#246;scht und dann wieder neu anlegt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich sehe die Forderung nat&#252;rlich durchaus kritisch, da mir historische Daten von Google Analytics sehr wichtig sind und Google selber die erhobenen Daten sowieso schon in irgendeiner Form weiterverarbeitet hat. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Am Ende muss jeder selber wissen, ob er das macht oder nicht. Gepr&#252;ft werden kann es nur schlecht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><b class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;"><br/>Fazit<br/></b><br/>
Einerseits ist es begr&#252;&#223;enswert, dass es nun klare Regeln gibt, die Rechtssicherheit bringen. Zu lange wusste man nicht woran man ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Allerdings gibt es noch Unklarheiten. Z.B. sind manche Anw&#228;lte der Meinung, dass bei einer Anonymisierung der IP gar keine Datenschutz-Angaben mehr notwendig sind.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich h&#228;tte mir gew&#252;nscht, dass Google hier vor Gericht zieht und die Sache ein f&#252;r alle mal kl&#228;ren l&#228;sst. Es w&#228;re wichtig, dass richterlich z.B. endlich mal klargestellt wird, ob IP-Adressen nun personenbezogen sind oder nicht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Unter diesem Gesichtspunkt und wegen unsch&#246;ner Nebeneffekte, wie z.B. die L&#246;schung alter Analytics-Daten, ist die erreichte Einigung zwar Okay, aber auch etwas unbefriedigend.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/09/16/wordpress-plugins/google-analytics-datenschutzgerecht-nutzen/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Eine realistische Bounce Rate in Google Analytics</title>
		<link>http://www.blogprojekt.de/2011/08/05/tipps/eine-realistische-bounce-rate-in-google-analytics/</link>
		<comments>http://www.blogprojekt.de/2011/08/05/tipps/eine-realistische-bounce-rate-in-google-analytics/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 09:42:15 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Bounce Rate Optimierung]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1666</guid>
		<description><![CDATA[Die Bounce Rate, auch Absprungrate genannt, kennen sicher die meisten Leser. Viele Statistik-Tools, unter anderem auch Google Analytics, geben die Absprungrate an. Warum die Standard-Erfassung durch Google Analytics allerdings nicht wirklich realistisch ist und mit welchem Trick man dies &#228;ndern kann, erfahrt ihr in diesem Artikel. Was ist die Bounce Rate? Laut Definition misst die [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Die Bounce Rate, auch Absprungrate genannt, kennen sicher die meisten Leser.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Viele Statistik-Tools, unter anderem auch Google Analytics, geben die Absprungrate an.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Warum die Standard-Erfassung durch Google Analytics allerdings nicht wirklich realistisch ist und mit welchem Trick man dies &#228;ndern kann, erfahrt ihr in diesem Artikel.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Was ist die Bounce Rate?</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Laut <a href="http://de.wikipedia.org/wiki/Bounce_Rate"  target="_blank" >Definition</a> misst die Bounce Rate den Anteil der Websitebesucher, die nach nur einem Seitenaufruf wieder gehen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Anhand der Bounce Rate kann man Probleme einzelner Seiten erkennen (schlechte Usability, abschreckende Optik, nicht die erwarteten Inhalte etc.), gegensteuern und so z.B. die Conversion Rate steigern.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Allerdings hat der Analytics-Guru Avinash Kaushik dies insofern eingeschr&#228;nkt, als dass er nur Besucher zur Bounce Rate z&#228;hlt, die innerhalb von 5 bis 10 Sekunden gehen.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Was macht Google Analytics falsch?</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Google Analytics macht zwar nichts wirklich falsch, allerdings richtet es sich nach der offiziellen Definition der Absprungrate und nicht nach der meiner Meinung nach viel realistischeren von Herrn Kaushik.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das bedeutet, dass Google Analytics jeden Besucher zur Bounce Rate hinzurechnet, der nach nur einer Seite wieder geht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das Problem dabei ist, dass gerade Blogs sehr viele Stammleser haben, die z.B. &#252;ber den RSS-Feed nur zu einem bestimmten Artikel kommen, diesen lesen und dann wieder gehen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Aber auch &#252;ber Twitter und Co. ruft man oft nur einen Artikel auf und geht dann wieder. Besonders dann, wenn man die Website/den Blog schon kennt und nicht weiterst&#246;bern m&#246;chte.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Deshalb denke ich, dass die Standard-Messung der Bounce Rate einfach einen falschen Eindruck vermittelt.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Eigene Erfahrungen</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auf <a href="http://www.Selbstaendig-im-Netz.de"  target="_blank" >Selbstaendig-im-Netz.de</a> lag die Absprungrate in der Vergangenheit immer so um die 60%. Das ist ein recht hoher Wert.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nat&#252;rlich gibt es immer Besucher, die &#252;ber Links oder von Google kommen, und dann sehr schnell merken, dass es nicht das ist, was sie gesucht haben. Oder ihnen gef&#228;llt das Layout auf den ersten Blick nicht und sie gehen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Doch 60% Bounce Rate ist einfach zu hoch, gerade f&#252;r einen Blog. Denn ich m&#246;chte anhand der Bounce Rate ja Probleme erkennen. Also z.B. Seiten, die eine hohe Bounce Rate. Dann k&#246;nnte man versuchen, diese Seiten zu optimieren.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wenn jemand 5 Minuten einen meiner Artikel liest und dann meinen Blog wieder verl&#228;sst, geh&#246;rt er einfach nicht in die Bounce Rate Statistik.</p>
<h4 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Die L&#246;sung</h4>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auf <a href="http://padicode.com/blog/analytics/the-real-bounce-rate/"  target="_blank" >padicode.com</a> habe ich die L&#246;sung gefunden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dort findet sich folgendes Code-St&#252;ckchen f&#252;r den neueren asynchronen Code von Google Analytics:</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><code>setTimeout('_gaq.push([\'_trackEvent\', \'NoBounce\', \'Over 10 seconds\'])',10000);</code></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">F&#252;r den &#228;lteren Analytics-Code gilt folgendes Code-St&#252;ckchen:</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><code>setTimeout('pageTracker._trackEvent(\'NoBounce\', \'NoBounce\', \'Over 10 seconds\')',10000);</code></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Die Code-Zeile f&#252;gt man per Hand in den Google Analytics Code ein, am besten unter <code>pageTracker._trackPageview();</code></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Von nun an rechnet Google nur noch Besucher der Bounce Rate hinzu, die nur 1 Seite angeschaut haben und diese innerhalb von 10 Sekunden verlassen haben.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nat&#252;rlich kann man den Wert 10000 auch z.B. durch 5000 ersetzen, was 5 Sekunden entsprechen w&#252;rde.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das nette an diesem Code ist, dass es keine Daten in Analytics beeinflusst, sondern nur ein zus&#228;tzlicher Filter f&#252;r die Anzeige der Absprungrate ist. Und man muss noch nicht mal irgendwas in Google Analytics einstellen. Nach dem Einbau der Code-Zeile im Blog wird automatisch in den Auswertungen die &#8220;neue&#8221; Absprungrate angezeigt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><script type="text/javascript" >
</script>
<script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js" >
</script></p>
<h5 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Das Ergebnis</h5>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich habe diese &#196;nderung am Analytics Code Anfang Juli vorgenommen und die Auswirkungen auf die Bounce Rate sind sehr deutlich.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Von &#252;ber 60% ist die durchschnittliche Bounce Rate auf rund 20% gesunken, wie man an dem folgenden Chart gut sehen kann:</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/bounce-rate-sin.jpg"  alt="Eine realistische Bounce Rate in Google Analytics" /></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das ist doch ein deutlich realistischer Wert. Mit 5 Sekunden w&#228;re der Prozentwert sicher noch deutlich niedriger.</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Die Bounce Rate nutzen</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wie man die Bounce Rate nun praktisch nutzen kann, um einzelne Seiten zu optimieren und welche M&#246;glichkeiten es gibt, die Bounce Rate zu senken, erfahrt ihr in weiteren Artikel dieser kleinen Serie.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/08/05/tipps/eine-realistische-bounce-rate-in-google-analytics/feed/</wfw:commentRss>
		<slash:comments>61</slash:comments>
		</item>
		<item>
		<title>WordPress 3.2 &#8211; die neue Features und Verbesserungen</title>
		<link>http://www.blogprojekt.de/2011/07/14/software/wordpress-3-2-die-neue-features-und-verbesserungen/</link>
		<comments>http://www.blogprojekt.de/2011/07/14/software/wordpress-3-2-die-neue-features-und-verbesserungen/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 13:15:04 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technik]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1411</guid>
		<description><![CDATA[Nun ist die neue Version von WordPress schon einige Tage drau&#223;en und ich habe diesmal sofort den Umstieg gewagt. Es gab bei den letzten Versions-Updates keine gr&#246;&#223;eren Probleme mehr und so habe ich diesmal nicht auf die Version 3.2.1 gewartet, die nebenbei bemerkt, aber auch schon erschienen ist. Von WordPress 3.2 habe ich mir ja [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nun ist die neue Version von WordPress schon einige Tage drau&#223;en und ich habe diesmal sofort den Umstieg gewagt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es gab bei den letzten Versions-Updates keine gr&#246;&#223;eren Probleme mehr und so habe ich diesmal nicht auf die Version 3.2.1 gewartet, die nebenbei bemerkt, aber auch schon erschienen ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Von WordPress 3.2 habe ich mir ja doch ein paar interessante Dinge erwartet und so m&#246;chte ich heute auf die interessanten neuen Features eingehen und zudem zeigen, warum ich nach langer Verweigerung nun vielleicht doch wieder zum Original-Admin-Theme zur&#252;ck kehre.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">WordPress 3.2</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nachdem die <a href="http://www.blogprojekt.de/2011/02/25/software/wordpress-3-1-die-wichtigsten-neuerungen/"  title="WordPress 3.1" >Version 3.1</a> erschienen ist, hat man seitens der WordPress-Entwickler angek&#252;ndigt, dass man nun etwas z&#252;giger mit <a href="http://wpdevel.wordpress.com/2011/03/18/wordpress-3-2-the-plan-faster-lighter/"  target="_blank" >neuen Versionen</a> raus kommen m&#246;chte.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">In der Vergangenheit wurden teilweise noch im Nachhinein neue Features erg&#228;nzt und so hatten sich die neuen Version immer mal wieder verschoben. &#196;hnlich wie bei den Browserentwicklern m&#246;chte man nun &#246;fter ein Update bringen und sich dabei lieber auf ein paar weniger Features konzentrieren, diese aber besser umsetzen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">WordPress 3.2 ist nun erschienen und tr&#228;gt den Namen &#8220;Gershwin&#8221;. Hier ein kleines Video mit den wichtigsten Features.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><embed type="application/x-shockwave-flash"  src="http://s0.videopress.com/player.swf?v=1.02"  width="580"  height="325"  wmode="direct"  seamlesstabbing="true"  allowfullscreen="true"  allowscriptaccess="always"  overstretch="true"  flashvars="guid=ac07H291" ></embed></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Im folgenden gehe ich auf interessante und wichtige &#196;nderungen der neuen Version ein</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Der neue Admin</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/wordpress-3-2-admin.jpg"  style="float:right;"  alt="WordPress 3.2 - Admin" />Als erstes f&#228;llt einem nach dem Update der neu gestaltete Admin auf.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich habe in den vergangenen Jahren das &#8220;Fluency Admin Theme&#8221;-Plugin verwendet, da ich mit dem Babyblau und kontrastarmen Backend einfach nicht klar kam.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das Standard-Admin-Theme sieht in 3.2 nun aufger&#228;umter und moderner aus. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es hat sich sogar etwas in Richtung des genannten Admin-Plugins entwickelt und da es derzeit noch kein Update f&#252;r Fluency gibt, spiele ich gerade ernsthaft mit dem Gedanken beim Original-Backend zu bleiben.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Besonders gelungen finde ich die Navigation, die nun einfach auch viel besser aussieht und &#252;bersichtlicher ist. Aber auch andere Details gefallen mir.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Anforderungen</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ein weitere wichtige &#196;nderung sind die technischen <a href="http://blog.wordpress-deutschland.org/2011/04/18/mysql-und-php-mindestvoraussetzungen-fuer-wordpress-3-2.html"  target="_blank" >Anforderungen</a>:</p>
<ul class="liste" >
<li>mindestens PHP 5.2.4</li>
<li>mindestens MySQL 5.0.15</li>
<li>der IE6 wird nicht mehr unterst&#252;tzt.</li>
</ul>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mit dem Plugin &#8220;<a href="http://wordpress.org/extend/plugins/wordpress-requirements-check/"  target="_blank" >WordPress Requirements Check</a>&#8221; kann man vor dem Update pr&#252;fen, ob die Anforderungen erf&#252;llt sind. (oder man schaut bei seinem Hoster nach <img src="http://www.blogprojekt.de/wp-includes/images/smilies/icon_smile.gif"  alt=":-)"  class="wp-smiley" />  )</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Gerade der zweite Punkt macht evtl. dem einen oder anderen zu schaffen, da ein DB-Umzug eben doch nicht mit einem Klick erledigt ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Da ich 2 kleinere Blogs habe, die noch auf einer MySQL 4.x Version laufen, werde ich dazu demn&#228;chst mal eine kleine Umzug-Anleitung schreiben.</p>
<h4 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Standard Theme</h4>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/wordpress-3-2-theme.jpg"  style="float:right;"  alt="WordPress 3.2 - Theme" />Ich nutze zwar auf keinem meiner Blogs das bisherige Standard-Theme, aber das neue &#8220;Twenty Eleven&#8221; sieht schon schick aus.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es ersetzt das bisherige Standard-Theme &#8220;Twenty Ten&#8221; und sieht wirklich gut aus. Vor allem eignet es sich sehr gut f&#252;r eigene Anpassungen und Ver&#228;nderungen, so dass man sehr schnell ein  individuelles Theme daraus basteln kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es setzt zudem stark auf HTML5 und bietet damit auch ein responsive Layout, welches sich an das Ausgabemedium anpasst.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dazu in einem separaten Artikel mehr.</p>
<h5 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Editor</h5>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/wordpress-3-2-editor.jpg"  style="float:right;"  alt="WordPress 3.2 - Editor" />Einige Ver&#228;nderungen gab es auch beim Editor. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">So gibt es nun einen Vollbild-Modus, in dem man nur noch den Editor sieht und alle Navigations- und Kopf-Elemente ausgeblendet werden. Nett, aber ich kam bisher auch gut zurecht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Fast schon interessanter finde ich da die Erweiterung, dass man nun auch im normale Code-Editor einen erweiterten Link-Dialog bekommt (siehe Screenshot). Diesen gab es bisher nur im WYSIWYG-Editor.</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Delta-Updates</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Eine Neuerung, die man nur wenig bemerken wird, sind die neuen Delta-Updates. Damit werden nicht mehr die gesamten Core-Dateien bei jedem Update &#8220;installiert&#8221;, sondern nur noch wirklich die, die sich ge&#228;ndert haben.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Gro&#223;e Auswirkungen wird das zwar nicht haben, aber die bessere L&#246;sung ist es allemal.</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Sicherheit</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Insgesamt wurden mehr als 400 Tickets mit Version 3.2 geschlossen und darunter befanden sich auch einige sicherheitsrelevante Bugs.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es sollte einem zwar auch klar sein, dass der Wettlauf mit dem Hackern nie zu Ende ist, aber die WordPress-Entwickler legen weiterhin gro&#223;en Wert auf Sicherheit.</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Admin-Bar</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">An der Admin-Bar soll es auch einige Verbesserungen gegeben haben. Da ich diese aber &#252;berall deaktiviert habe, konnte ich mir das bisher nicht anschauen. Und so richtig interessiert es mich auch nicht. <img src="http://www.blogprojekt.de/wp-includes/images/smilies/icon_wink.gif"  alt=";-)"  class="wp-smiley" /> </p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Geschwindigkeit</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ein wesentliches Feature von WordPress 3.2 ist die optimierte Geschwindigkeit. Im Admin habe ich das sofort bemerkt, ohne die Zeit zu messen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Aber auch im Frontend soll die neue Version <a href="http://www.dev4press.com/2011/blog/benchmark/wordpress-benchmark-3-0-vs-3-1-vs-3-2-part-1/"  target="_blank" >schneller laufen</a>. Besonders bei den Kommentaren soll 3.2 deutlich schneller sein.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">2 Dinge sollte man dabei aber auch erw&#228;hnen. Zum einen ist der Speicherhunger von 3.2 nochmal ein wenig gestiegen. so dass man mindestens 32 MB, wenn nicht sogar idealerweise 64 MB zur Verf&#252;gung haben sollte.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zum anderen waren auch in der Vergangenheit vor allem nicht sehr gut programmierte WordPress-Plugins f&#252;r l&#228;ngere Ladezeiten verantwortlich. Und daran hat sich mit der neuen Version nat&#252;rlich  nichts ge&#228;ndert. Es bleibt also dabei, dass man seine Plugins ruhig mal nach deren Performance &#252;berpr&#252;fen sollte.</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Fazit zu WordPress 3.2</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Unter der Haube ist bei der neuen Version noch viel mehr passiert, als man sehen kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Insgesamt gef&#228;llt mir die neue Version aber sehr gut. Die Geschwindigkeit ist gerade im Admin deutlich besser, der Admin sieht nun wirklich gut aus und das Standard-Theme werde ich demn&#228;chst auch mal verwenden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Andere &#196;nderungen, wie etwa den Vollbild-Modus des Editors sind f&#252;r mich nicht so entscheidend.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Alles in allem macht WordPress 3.2 aber eine sehr gute Figur und ich hoffe, die zuk&#252;nftigen Updates k&#246;nnen daran ankn&#252;pfen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ein Backup vor der Installation von WordPress 3.2 sollte man durchf&#252;hren, auch wenn bei mir diverse Blogs problemlos geupdated werden konnten.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich nutze mittlerweile nur noch den interne Update-Mechanismus. Wer die aktuelle Version <a href="http://wordpress-deutschland.org/download/"  target="_blank" >herunterladen</a> und per FTP installieren m&#246;chte, kann das nat&#252;rlich noch immer tun.</p>
<h6 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">WordPress 3.2.1</h6>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nachdem vor ein paar Tagen schon ein Update f&#252;r das Hotfix-WordPress-Plugin erschienen ist, kam nun vor kurzem schon die <a href="http://www.perun.net/2011/07/12/wordpress-3-2-1-ist-da/"  target="_blank" >Version 3.2.1</a> heraus.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dabei handelte es sich aber nicht um ein Sicherheitsrelease, sondern es wurden Probleme im Admin und mit dem neuen Theme behoben, die bei einigen Usern auftraten. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zudem wurde die &#196;nderung r&#252;ckg&#228;ngig gemacht, welche Arial als Standard-Schrift f&#252;r den Editor festgelegt hat. Das hat vielen nicht besonders gefallen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nun wird die Standard &#8220;sans-serif&#8221;-Schrift verwendet, die man im eigenen Browser eingestellt hat. Man kann also ganz einfach z.B. auf Verdana wechseln.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/07/14/software/wordpress-3-2-die-neue-features-und-verbesserungen/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Internet-Tagesflatrate f&#252;r iPad und Tablet PCs</title>
		<link>http://www.blogprojekt.de/2011/03/28/tipps/internet-tagesflatrate-fur-ipad-und-tablet-pcs/</link>
		<comments>http://www.blogprojekt.de/2011/03/28/tipps/internet-tagesflatrate-fur-ipad-und-tablet-pcs/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 09:57:05 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1417</guid>
		<description><![CDATA[[Trigami-Anzeige] Wie viele hier sicher wissen, habe ich mir im letzten Jahr ein iPad zugelegt. Hauptgrund daf&#252;r war die M&#246;glichkeit mobil auf meine Webprojekte, Mails, Blogs etc. zugreifen zu k&#246;nnen. Ich hatte es satt, immer mein schweres Laptop mitzuschleppen und wirklich einen Sinn in einem Mini-Netbook habe ich auch nicht gesehen. Nach mehr als einem [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/fonic-logo2.jpg"  style="float:right;"  alt="FONIC - Internet-Tagesflatrate" />[<a href="http://www.trigami.com/?blog=http://www.blogprojekt.de"  rel="nofollow"  target="_blank" >Trigami-Anzeige</a>]<script type="text/javascript"  src="http://s.trigami.com/440300s.js" ></script><br/>
Wie viele hier sicher wissen, habe ich mir im letzten Jahr ein iPad zugelegt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Hauptgrund daf&#252;r war die M&#246;glichkeit mobil auf meine Webprojekte, Mails, Blogs etc. zugreifen zu k&#246;nnen. Ich hatte es satt, immer mein schweres Laptop mitzuschleppen und wirklich einen Sinn in einem Mini-Netbook habe ich auch nicht gesehen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Nach mehr als einem halben Jahr im Einsatz muss ich sagen, dass ich mit meinem iPad sehr zufrieden bin. Das Gewicht und der Platz f&#228;llt nicht ins Gewicht. Und das beste ich wirklich, dass ich nicht nur in einem Hotel per WLAN ins Web gehen kann, sondern dass dies relativ g&#252;nstig auch in Deutschland per UMTS m&#246;glich ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Umso wichtiger wird die Auswahl des UMTS-Tarifs f&#252;r alle die ein iPad oder ein anderes Tablet mit UTMS-Funktionen besitzen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Da ich da immer auf der Suche nach g&#252;nstigeren Alternativen bin, habe ich mich gefreut, als ich die FONIC Micro-SIM Karte testen durfte.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">FONIC</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wer <a href="http://www.fonic.de/"  target="_blank"  rel="nofollow" >FONIC</a> nicht kennt, dem sei gesagt, dass es sich um einen Mobilfunk-Tarif Anbieter handelt, der in der Werbung vor allem durch den Auftritt von Bruce Darnell bekannt sein d&#252;rfte.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Im Mittelpunkt des Angebotes stehen einfache und g&#252;nstige Tarife. Und das ist auch eines der Hauptargumente f&#252;r die Internet-Tagesflatrate von FONIC.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Internet-Tagesflattrate</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Als ich auf der Suche nach einem Datentarif f&#252;r mein iPad war, gestaltete sich das gar nicht so einfach. Es gab feste Monatstarife, die aber f&#252;r mich nicht in Frage kamen, da ich mein iPad normalerweise in meinem Heimnetzwerk nutze und nur f&#252;r gelegentliche Ausf&#252;ge und Urlaube die UMTS-Funktion nutze.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Dann habe ich einen Tarif genutzt, wo man 7 oder 90 Tage Tarife ausw&#228;hlen kann. Auch nicht ideal. Umso besser finde ich das bei FONIC gel&#246;st.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Die <a href="http://www.fonic.de/html/micro-sim-fuer-ipad-und-netbook.html"  target="_blank"  rel="nofollow" >Internet-Tagesflattrate</a> ist genau das. Man kann das Internet tageweise buchen und auf diese Weise bezahlt man wirklich nur f&#252;r die Tage, an denen man das Internet mit seinem iPad oder einem anderen Tablet oder Netbook nutzt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">2,50 Euro kostet der Tarif pro Tag und damit komme ich bei einem Kurzurlaub wirklich g&#252;nstig weg.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">FONIC Kostenschutz</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><a href="http://www.fonic.de/html/micro-sim-fuer-ipad-und-netbook.html"  target="_blank"  rel="nofollow" ><img border="0"  src="http://www.blogprojekt.de/Bilder/fonic-logo.jpg"  style="float:right;"  alt="FONIC - Internet-Tagesflatrate" /></a>Als &#8220;Kostenschutz&#8221; wird die Tatsache bezeichnet, dass in einem Monat nur maximal 10 Tage bezahlt werden m&#252;ssen. Bei 25 Euro ist Schluss und man kann den Rest des Monat kostenlos das Internet nutzen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das ist f&#252;r all jene, die mal einen ganzen Monat das Internet &#252;ber das iPad nutzen wollen oder m&#252;ssen eine gute L&#246;sung und so bleiben die Kosten im Rahmen.</p>
<h4 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Micro-SIM und Netz</h4>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Es handelt sich um eine Micro-SIM, die vom iPad und von den meisten Tablets anderer Hersteller unterst&#252;tzt wird.<br/>
Und auch f&#252;r Netbooks mit UTMS-Unterst&#252;tzung ist diese geeignet.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">F&#252;r 9,95 Euro bekommt man die Micro-SIM nach Hause geliefert und man hat auch noch 1 Tag Internet inklusive. Damit kostet die Micro-SIM also effektiv nur 7,59 Euro.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Genutzt wird das o2 Germany Netz, welches nach meiner Erfahrung gut ausgebaut ist. Das best&#228;tigen auch diverse <a href="http://www.fonic.de/html/testergebnisse.html"  target="_blank"  rel="nofollow" >Testergebnisse</a>, u.a. von Stiftung Warentest. Und man ist mit der HSDPA-Spitzengeschwindigkeit von 7,2 MBit/s im Web unterwegs.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">&#220;brigens kann man mit dieser Micro SIM f&#252;r 9 cent/min auch mobil telefonieren. VoIP ist erlaubt.</p>
<h5 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Fazit</h5>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ein g&#252;nstiges Angebot f&#252;r alle, die ihr Tablet nicht nur im heimischen WLAN, sondern auch unterwegs nutzen wollen.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/03/28/tipps/internet-tagesflatrate-fur-ipad-und-tablet-pcs/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>RSS-Feed in Tweets umwandeln</title>
		<link>http://www.blogprojekt.de/2011/03/24/tipps/rss-feed-in-tweets-umwandeln/</link>
		<comments>http://www.blogprojekt.de/2011/03/24/tipps/rss-feed-in-tweets-umwandeln/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 14:31:55 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Tipps]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1397</guid>
		<description><![CDATA[Ich betreibe neben meinen Blogs auch ein Forum, wie der ein oder andere vielleicht wei&#223;. Da stand ich letztens vor dem Problem, dass es ein paar Diskussionen gab, die etwas aus dem Ruder gelaufen sind. Und ich wollte m&#246;glichst sofort wissen, wenn wieder ein kritischer Beitrag im Forum erschienen ist. RSS bietet das Forum zwar [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich betreibe neben meinen Blogs auch ein <a href="http://sin-forum.de"  target="_blank" >Forum</a>, wie der ein oder andere vielleicht wei&#223;.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Da stand ich letztens vor dem Problem, dass es ein paar Diskussionen gab, die etwas aus dem Ruder gelaufen sind. Und ich wollte m&#246;glichst sofort wissen, wenn wieder ein kritischer Beitrag im Forum erschienen ist.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">RSS bietet das Forum zwar an und das ist auch gut so. Aber ich habe meinen RSS-Reader tags&#252;ber nicht auf, da er doch leicht von der Arbeit ablenkt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Meinen Twitter-Client TweetDeck habe ich jedoch immer laufen, da ich dar&#252;ber eben auch kommuniziere. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Deshalb habe ich eine L&#246;sung gesucht, wie man RSS-Feeds in Tweets umwandeln kann. Und ich habe eine L&#246;sung gefunden.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Twitterfeed.com</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Bei meiner Recherche nach einer L&#246;sung hatte ich erst geschaut, ob es vielleicht ein Plugin f&#252;r meine Foren-Software gibt, die das &#252;bernehmen kann. Aber diesen Gedanken habe ich dann doch recht schnell wieder verworfen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Stattdessen kam mir die Idee, dass man doch mit dem RSS-Feed was anfangen k&#246;nnten. Schlie&#223;lich wird dieser zwar st&#228;ndig totgesagt und tats&#228;chlich nutzen ihn nur wenige Blog-Leser, aber als Mittel zum Zweck um z.B. seinen Blog mit Facebook und Co. zu verkn&#252;pfen, leistet er eine prima Arbeit. Ich nutze z.B. RSS-Feeds auch in meiner iPhone-App um die neuesten Artikel an die App zu &#252;bergeben.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/twitterfeed-2.jpg"  style="float:right;"  alt="RSS-Feed in Tweets umwandeln" />Jedenfalls wurde ich dann recht schnell f&#252;ndig. <a href="http://twitterfeed.com/"  target="_blank" >Twitterfeed.com</a> bietet einen Service an, mit dem sich RSS-Feeds automatisch in verschiedene &#8220;Zielformate&#8221; umwandeln lassen kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Sobald dieser Service bei der Pr&#252;fung eines RSS-Feeds feststellt, dass ein neuer Beitrag erschienen ist, wird z.B. unter einem vorher eingetragenen Twitter-Account ein Tweet mit diesem neuen Beitrag, bzw. einem Ausschnitt davon, versendet.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Kleiner Nachteil ist, dass die Pr&#252;fung maximal alle 30 Minuten stattfindet und nicht &#246;fter. Aber damit kann ich noch leben und f&#252;r viele Einsatzzwecke wird das wohl reichen.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">RSS-Feed eintragen</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/twitterfeed-3.jpg"  style="float:right;"  alt="RSS-Feed in Tweets umwandeln" />Man kann beim Anlegen eines neuen RSS-Feeds eine Menge Details einstellen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zum Beispiel was vor und was am Ende des Tweets als Text erscheinen soll.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Cool finde ich auch die M&#246;glichkeit, nach Keywords zu filtern.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Man kann also nur RSS-Artikel zu Feeds unwandeln lassen die bestimmte Keywords enthalten. Man kann aber auch bestimmte Keywords ausschlie&#223;en und auf diese Weise manche Artikel eben nicht per Tweet versenden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Da gibt es auf jeden Fall eine Menge Einstellm&#246;glichkeiten.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Twitter-Account anlegen</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/twitterfeed-4.jpg"  style="float:right;"  alt="RSS-Feed in Tweets umwandeln" />Als n&#228;chstes legt man einen Account des Services an, bei dem die RSS-Beitr&#228;ge aufgegeben werden sollen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">In meinem Fall war das Twitter. Alternativ ginge es noch bei Statusnet, Hellotxt und Facebook.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Man muss seinen Account dann einmal verifizieren und dann ist auch dieser Schritt schon erledigt.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Fertig</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das war es auch schon. Bei der n&#228;chsten &#196;nderung des RSS-Feeds wird automatisch unter dem eingegebenen Twitter-Account der neue Post getweetet.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und die M&#246;glichkeiten sind vielf&#228;ltig, da das RSS-Format ja nicht f&#252;r Blogs erfunden wurde, sondern eben um verschiedene Inhalte in einem lesbaren Format weiterzugeben.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das ist auf jeden Fall ein sch&#246;nes kostenloses Tool.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2011/03/24/tipps/rss-feed-in-tweets-umwandeln/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Neue Umfrage und Auswertung der vorherigen</title>
		<link>http://www.blogprojekt.de/2010/12/17/technik/neue-umfrage-und-auswertung-der-vorherigen/</link>
		<comments>http://www.blogprojekt.de/2010/12/17/technik/neue-umfrage-und-auswertung-der-vorherigen/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 10:16:21 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Kommentare]]></category>
		<category><![CDATA[Technik]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1318</guid>
		<description><![CDATA[Eigentlich nenne ich es ja die &#8220;Umfrage der Woche&#8221;. Aber in den letzten 2 Monaten bin ich irgendwie nicht dazu gekommen, eine neue Umfrage einzustellen. Schande &#252;ber mein Haupt. Das hat aber auch den Vorteil, dass an der letzten Umfrage 167 Leser teilgenommen haben. So viele waren es schon lange nicht mehr. In diesem Artikel [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Eigentlich nenne ich es ja die &#8220;Umfrage der Woche&#8221;. Aber in den letzten 2 Monaten bin ich irgendwie nicht dazu gekommen, eine neue Umfrage einzustellen. Schande &#252;ber mein Haupt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das hat aber auch den Vorteil, dass an der letzten Umfrage 167 Leser teilgenommen haben. So viele waren es schon lange nicht mehr. <img src="http://www.blogprojekt.de/wp-includes/images/smilies/icon_smile.gif"  alt=":-)"  class="wp-smiley" /> </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">In diesem Artikel werte ich die vergangene Umfrage &#8220;Hast du schon auf WordPress 3 geupdated?&#8221; aus und stelle zudem die neue Umfrage vor.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Hast du schon auf WordPress 3 geupdated?</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/umfrage-wordpress3.jpg"  style="float:right;"  alt="Neue Umfrage und Auswertung der vorherigen" />Im Sommer ist die neue WordPress-Version 3.0 erschienen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich bin da immer erstmal etwas vorsichtig und aktualisiere nicht sofort. Schlie&#223;lich handelt es sich bei solchen Versionsspr&#252;ngen nicht um Sicherheitsupdates sondern um viele neue Features. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und da ist trotz diverser Beta&#8217;s und Release Candidates meist noch der ein oder andere Bug versteckt. Ich habe dann bis zur Version 3.0.1. gewartet und dann meine Blogs geupdated.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Bei euch sehen die meisten das nicht so. 41% haben sofort auf Version 3.0 geupdated und das war anscheinend auch keine falsche Entscheidung. Im Web habe ich kaum etwas &#252;ber Probleme gelesen.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">34% haben es allerdings trotzdem so wie ich gemacht und auf Version 3.0.1 gewartet.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Immerhin 19% haben angegeben, dass sie kein WordPress nutzen und deshalb auch nichts mit den Updates am Hut hatten.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">&#220;berrascht haben mich die 7%, die auf Version 3.1 warten, die ja erst im kommenden Jahr erscheinen wird.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Und immerhin 2% updaten gar nicht, sondern bleiben auf irgendeiner alten Version. Das muss nicht unbedingt das sicherste sein.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Moderiert ihr Kommentare oder nicht?</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">In der neuen Umfrage geht es um Blog-Kommentare und die Frage, ob und wie ihr diese moderiert.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Bei mir ist es so, dass ich den 1. Kommentar eines User immer moderiere. Da will ich sozusagen beim ersten Beitrag immer pr&#252;fen, ob das ein Spammer ist oder nicht.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wenn der erste Beitrag freigeschaltet wurde, werden auch die folgenden Kommentare dieses User automatisch freigeschaltet. Das hat sich f&#252;r mich als effektivster Kompromiss zwischen Kontrolle und Machbarkeit herausgestellt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Doch es gibt noch andere M&#246;glichkeiten mit Kommentaren umzugehen (dass ein <a href="http://www.blogprojekt.de/2010/04/01/wordpress-plugins/12-kommentar-plugins-fuer-wordpress/"  target="_blank" >Kommentar-Spam-Plugin</a> wie Akismet oder <a href="http://playground.ebiene.de/1137/antispam-bee-wordpress-plugin/"  target="_blank" >Antispam Bee</a> im Einsatz ist, davon gehe ich mal aus.).</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">So kann man alle Kommentare automatisch freischalten lassen und dann evtl. im Nachhinein Spam l&#246;schen. Oder man moderiert alle Kommentare, was aber sp&#228;ter viel Aufwand bedeutet.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Oder man deaktiviert die Kommentare gleich ganz, was einem Blog aber auch ein wichtiges Element nimmt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wie geht ihr mit Kommentaren um, ist also die neue Umfrage der Woche.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Die Umfrage findet ihr wie immer in der rechten Sidebar.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Zu der Frage &#8220;<a href="http://www.blogprojekt.de/2010/03/23/kommentare/kommentar-spam-loeschen-oder-nicht/"  target="_blank" >Kommentar-Spam l&#246;schen oder nicht?</a>&#8221; hatte ich ja schon mal etwas geschrieben.</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2010/12/17/technik/neue-umfrage-und-auswertung-der-vorherigen/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Mein &#8220;Blog-Arbeitsplatz&#8221;</title>
		<link>http://www.blogprojekt.de/2010/04/30/technik/mein-blog-arbeitsplatz/</link>
		<comments>http://www.blogprojekt.de/2010/04/30/technik/mein-blog-arbeitsplatz/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 12:00:26 +0000</pubDate>
		<dc:creator>Peer Wandiger</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Arbeitsplatz]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Bloggen]]></category>
		<category><![CDATA[Büro]]></category>

		<guid isPermaLink="false">http://www.blogprojekt.de/?p=1100</guid>
		<description><![CDATA[Die heutige Webmaster-Friday &#8220;Aufgabe&#8221; lautet: &#8220;Blick hinter die Blogkulisse: Wie sieht Dein Arbeitsplatz aus?&#8221; Das h&#246;rt sich interessant an und deshalb beteilige ich mich einfach mal daran. Ich habe etwas aufger&#228;umt und ein Foto von meinem Arbeitsplatz gemacht. Mein &#8220;Blog-Arbeitsplatz&#8221; Hier sehr ihr ein Foto von meinem Blog-Arbeitsplatz. Mein B&#252;ro befindet sich in meinem Haus. [...]]]></description>
			<content:encoded><![CDATA[

<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Die heutige <a href="http://www.webmasterfriday.de/blog/blick-hinter-die-blogkulisse-arbeitsplatz"  target="_blank" >Webmaster-Friday &#8220;Aufgabe&#8221;</a> lautet:<br/>
<b>&#8220;Blick hinter die Blogkulisse: Wie sieht Dein Arbeitsplatz aus?&#8221;</b></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Das h&#246;rt sich interessant an und deshalb beteilige ich mich einfach mal daran.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich habe etwas aufger&#228;umt <img src="http://www.blogprojekt.de/wp-includes/images/smilies/icon_smile.gif"  alt=":-)"  class="wp-smiley" />  und ein Foto von meinem Arbeitsplatz gemacht.<br/>
</p>
<h1 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Mein &#8220;Blog-Arbeitsplatz&#8221;</h1>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Hier sehr ihr ein Foto von meinem Blog-Arbeitsplatz. Mein B&#252;ro befindet sich in meinem Haus. Der Weg zur Arbeit ist also recht kurz. <img src="http://www.blogprojekt.de/wp-includes/images/smilies/icon_wink.gif"  alt=";-)"  class="wp-smiley" /> </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;"><img src="http://www.blogprojekt.de/Bilder/blog-arbeitsplatz.jpg"  alt="Blog-Arbeitsplatz" /><br style="clear:both;" /></p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wie man sehen kann, bin ich eher ein Freund des aufger&#228;umten Arbeitsplatzes. Wenn ich gerade an Projekten f&#252;r Kunden arbeite, liegen dann nat&#252;rlich Unterlagen auf dem Schreibtisch. Ansonsten mag ich es aber aufger&#228;umt.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Kurz ein paar Worte zur Ausstattung.</p>
<h2 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Rechner und Monitore</h2>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Mein Arbeitsrechner steht unter dem Tisch und ist relativ neu. Das merkt man an der angenehmen Geschwindigkeit von Windows 7. So macht das Arbeiten Spa&#223;.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ich habe 2 Monitore angeschlossen, was das Arbeiten sehr erleichtert. Ich k&#246;nnte mir gar nicht mehr vorstellen, mit nur einem Monitor zu arbeiten und deshalb f&#228;llt es mir auch so schwer, wirklich l&#228;nger an einem Laptop zu arbeiten.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">W&#228;hrend ich blogge befindet sich auf dem linken Bildschirm in der Regel eine &#220;bersicht mit Stichpunkten und Ressourcen. Auf dem linken Monitor &#246;ffne ich auch Websites, wenn ich etwas recherchieren will.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auf dem rechten Hauptmonitor ist nat&#252;rlich Firefox offen und hier schreibe ich meine Artikel.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wenn ich nicht blogge, ist links unter anderem mein Feedreader oder Tweetdeck, mein Twitter-Tool, zu finden.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wenn ich an Kundenwebsites herumprogammiere habe ich links meist die Kunden-Website offen und im Hauptmonitor habe ich meine Programmier-Tools. Das erspart mir das st&#228;ndige Wechseln der Fenster.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Ebenso genial sind 2 Monitore f&#252;r Photoshop. Auf dem Hauptmonitor ist dann nur die Arbeitsfl&#228;che mit den Bildern. Auf dem linken Monitor befinden sich alle Werkzeuge, die Ebenenliste etc.</p>
<h3 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">sonstiges</h3>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Eine Musikanlage habe ich auch in meinem B&#252;ro. Dort kann ich sowohl normaler Radio, als auch CDs abspielen. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Der 2. Rechner (dort ist auch das Fenster), den man auf der linken Seite erahnen kann, ist eher f&#252;r private Zwecke. Dieser ist aber auch an die Anlage angeschlossen, so dass ich dort z.B. MP3-Musik laufen lassen kann.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Abends sitzt dort oft meine Frau und macht diverse Dinge. Allerdings wahrscheinlich nur bis wir ein iPad haben, dann wird sie das wohl von der Couch aus erledigen. <img src="http://www.blogprojekt.de/wp-includes/images/smilies/icon_smile.gif"  alt=":-)"  class="wp-smiley" /> </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Tja, dann sieht man noch mein Podcast-Mikrofon und ein paar Bilder meiner T&#246;chter. </p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Auf der rechten Seite, nicht im Bild, stehen noch 2 gro&#223;e Aktenschr&#228;nke und mein Farblaser steht weiter links neben dem Schreibtisch.</p>
<h4 class="headline"   style="font-size: 13pt; color: #a90000;font-size: 13pt; color: #a90000;">Wie sieht es bei euch aus?</h4>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">So sieht also mein B&#252;ro aus, in dem ich auch blogge.</p>
<p  style="font-family: arialfont-family: arialsans-serif; font-size: 12pt;sans-serif; font-size: 12pt;">Wie sieht es bei euch aus? Wo schreibt ihr eure Blog-Artikel?</p>


<br><br>


<br><br>Jeden Montag ein neuer Tipp für mehr Traffic in eurem Blog. Abonniere einfach den kostenlosen <a href="http://www.blogprojekt.de/traffic-newsletter/">Traffic-Newsletter</a> von Blogprojekt.de<br><br>
]]></content:encoded>
			<wfw:commentRss>http://www.blogprojekt.de/2010/04/30/technik/mein-blog-arbeitsplatz/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 2347/2441 objects using disk: basic

Served from: www.blogprojekt.de @ 2012-02-09 10:10:45 -->
