<?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>Celik &#187; WordPress</title>
	<atom:link href="http://www.metincelik.de/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.metincelik.de</link>
	<description>Entwickler, Blogger, Webdesigner, SciFi</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:03:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress Plugin WP-Syntax</title>
		<link>http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/</link>
		<comments>http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 12:05:41 +0000</pubDate>
		<dc:creator>Metin (backup)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[CPP]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Programmiersprache]]></category>
		<category><![CDATA[Programmierung]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=826</guid>
		<description><![CDATA[WP-Syntax bietet saubere Syntaxhervorhebung mit Unterst&#252;tzung einer Vielzahl von g&#228;ngigen Programmiersprachen. Es unterst&#252;tzt die Hervorhebung mit oder ohne Zeilennummern und beh&#228;lt Formatierungen beim Kopieren von Code-Snippets aus dem Browser. Code-Bl&#246;cke werden mit &#60;pre lang=&#8221;LANGUAGE&#8221; line=&#8221;1&#8243;&#62; und &#60;/pre&#62; definiert. Der Platzhalter LANGUAGE soll durch die unterst&#252;tzte Programmiersprachen ersetzt werden. Weiter unten finden Sie eine vollst&#228;ndige Liste [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WP-Syntax</strong> bietet saubere Syntaxhervorhebung mit Unterst&#252;tzung einer Vielzahl von g&#228;ngigen Programmiersprachen. Es unterst&#252;tzt die Hervorhebung mit oder ohne Zeilennummern und beh&#228;lt Formatierungen beim Kopieren von Code-Snippets aus dem Browser.</p>
<p>Code-Bl&#246;cke werden mit  &lt;pre lang=&#8221;LANGUAGE&#8221; line=&#8221;1&#8243;&gt; und &lt;/pre&gt; definiert. Der Platzhalter LANGUAGE soll durch die unterst&#252;tzte Programmiersprachen ersetzt werden. Weiter unten finden Sie eine vollst&#228;ndige Liste der unterst&#252;tzten Sprachen. Das Zeieleattribut ist optional w&#228;hlbar.</p>
<p><strong>Beispiele</strong></p>
<p>Beispiel 1: PHP, keine Zeilennummer</p>
<blockquote><p>&lt;pre lang=&#8221;php&#8221;&gt;<br />
&lt;div id=&#8221;foo&#8221;&gt;<br />
&lt;?php<br />
  function foo() {<br />
    echo &#8220;Hello World!\\n&#8221;;<br />
  }<br />
?&gt;<br />
&lt;/div&gt;<br />
&lt;/pre&gt;</p></blockquote>
<p>Ansicht mit WP-Syntax:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div id=&quot;foo&quot;&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
  <span style="color: #000000; font-weight: bold;">function</span> foo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Hello World!<span style="color: #000099; font-weight: bold;">\\</span>n&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div&gt;</pre></div></div>

<p>Beispiel 2: Java, mit Zeilennummern ab Zeile 1</p>
<blockquote><p>&lt;pre lang=&#8221;java&#8221; line=&#8221;1&#8243;&gt;<br />
public class Hello {<br />
  public static void main(String[] args) {<br />
    System.out.println(&#8220;Hello World!&#8221;);<br />
  }<br />
}<br />
&lt;/pre&gt;</p></blockquote>
<p>Ansicht mit WP-Syntax:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> Hello <span style="color: #009900;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> args<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Hello World!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><strong>Unterst&#252;tzte Programmiersprachen:</strong></p>
<p>Die folgende Sprachen werden im Attribut <strong>lang</strong> unterst&#252;tzt:</p>
<p>abap, actionscript, actionscript3, ada, apache, applescript, aptsources, asm, <strong>asp</strong>, autoit, avisynth, bash, bf, bibtex, blitzbasic, bnf, boo, <strong>c</strong>, cmac, caddcl, cadlisp, cil, cfdg, cfm, cmake, cobol, cpp-qt, <strong>cpp</strong>, <strong>csharp</strong>, <strong>css</strong>, d, dcs, <strong>delphi</strong>, diff, div, dos, dot, eiffel, email, erlang, fo, fortran, freebasic, genero, gettext, glsl, gml, bnuplot, groovy, haskell, hq9plus, <strong>html4strict</strong>, idl, ini, inno, intercal, io, <strong>java</strong>, java5, <strong>javascript</strong>, kixtart, klonec, klonecpp, latex, lisp, locobasic, lolcode lotusformulas, lotusscript, lscript, lsl2, lua, m68k, make, matlab, mirc, modula3, mpasm, mxml, <strong>mysql</strong>, nsis, oberon2, objc, ocaml-brief, ocaml, oobas, oracle11, oracle8, pascal, per, pic16, pixelbender, perl, php-brief, <strong>php</strong>, plsql, povray, powershell, progress, prolog, properties, providex, python, qbasic, rails, rebol, reg, robots, ruby, sas, scala, scheme, scilab, sdlbasic, smalltalk, smarty, sql, tcl, teraterm, text, thinbasic, tsql, typoscript, <strong>vb</strong>, <strong>vbnet</strong>, verilog, vhdl, vim, visualfoxpro, visualprolog, whitespace, whois, winbatch, <strong>xml</strong>, xorg_conf, xpp, z80</p>
<p>Author Homepage: <a href="http://ryan.mcgeary.org/" title="Ryan McGeary" rel="nofollow" target="_blank" class="liexternal">http://ryan.mcgeary.org</a><br />
Plugin Homepage: <a href="http://wordpress.org/extend/plugins/wp-syntax/" title="WP-Syntax" rel="nofollow" target="_blank" class="liwp">http://wordpress.org/extend/plugins/wp-syntax/</a></p>
<p><strong>Was ist Syntaxhervorhebung?</strong></p>
<p>Das sagt <a href="http://de.wikipedia.org/wiki/Syntaxhervorhebung" title="wikipedia.de" rel="nofollow" target="_blank" class="liwikipedia">Wikipedia</a>:</p>
<blockquote><p>Syntaxhervorhebung (eng. syntax highlighting) bezeichnet die M&#246;glichkeit eines Computerprogrammes, bestimmte W&#246;rter und Zeichenkombinationen in einem Text abh&#228;ngig von ihrer Bedeutung in unterschiedlichen Farben, Schriftarten und -stilen darzustellen. Syntaxhervorhebung wird vor allem in Texteditoren zur Bearbeitung von ausgezeichneten Dokumenten, Programm-Quelltexten und Konfigurationsdateien eingesetzt. Hervorgehoben werden dabei Schl&#252;sselw&#246;rter und andere Sprachelemente.</p>
<p>Syntaxhervorhebung verbessert die Lesbarkeit von Texten: Strukturen im Text sind leichter zu erkennen, das „Querlesen“ wird vereinfacht, Kommentare erscheinen abgesetzt vom eigentlichen Code und Tippfehler fallen schneller auf, da in vielen F&#228;llen ein Tippfehler zu einer ver&#228;nderten Darstellung f&#252;hrt.</p>
<p>Die Syntaxhervorhebung geh&#246;rt heutzutage zur Standardfunktionalit&#228;t vieler integrierter Entwicklungsumgebungen und Texteditoren.</p></blockquote>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;Title=WordPress Plugin WP-Syntax" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=WordPress Plugin WP-Syntax&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;bm_description=WordPress Plugin WP-Syntax" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;t=WordPress Plugin WP-Syntax" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=WordPress Plugin WP-Syntax+http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;title=WordPress Plugin WP-Syntax" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;t=WordPress Plugin WP-Syntax" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress Plugin WP-Syntax&amp;uri=http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Heute ist Blogday 2009!</title>
		<link>http://www.metincelik.de/web-20/heute-ist-blogday-2009/</link>
		<comments>http://www.metincelik.de/web-20/heute-ist-blogday-2009/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 21:49:56 +0000</pubDate>
		<dc:creator>Metin (backup)</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[BlogDay]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[BlogTag]]></category>
		<category><![CDATA[Favoriten]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=660</guid>
		<description><![CDATA[Die letzte Stunde des internatinalen BlogDay 2009 hat geschlagen. Zum Blogtag soll ich in einer Favoritenliste die 5 interessanten Blogs mit kurzen Beschreibung empfehlen. Hier sind meine 5 Favoriten: SmashingMagazine.com &#8211; Information und Tutorials &#252;ber Web 2.0 bueltge.de [by:ltge.de] &#8211; Frank B&#252;ltge f&#252;hrt auf bueltge.de einen Weblog zum Thema Webdesign, WordPress, xHTML und CSS, Literatur [...]]]></description>
			<content:encoded><![CDATA[<p>Die letzte Stunde des internatinalen <a href="http://www.blogday.org/" target="_blank" class="liexternal">BlogDay 2009</a> hat geschlagen. Zum Blogtag soll ich in einer Favoritenliste die 5 interessanten Blogs mit kurzen Beschreibung empfehlen. Hier sind meine 5 Favoriten:</p>
<ul>
<li><a href="http://www.smashingmagazine.com/" target="_blank" class="liexternal">SmashingMagazine.com</a> &#8211; Information und Tutorials &#252;ber Web 2.0</li>
<li><a href="http://www.bueltge.de/" target="_blank" class="liexternal">bueltge.de</a> [by:ltge.de] &#8211; Frank B&#252;ltge f&#252;hrt auf bueltge.de einen Weblog zum Thema Webdesign, WordPress, xHTML und CSS, Literatur und andere Themen bez&#252;glich Internet, Design und Webdevelopment</li>
<li><a href="http://www.turi2.de/" target="_blank" class="liexternal">turi2.de</a> &#8211; Der Branchenblog f&#252;r Medienmacher twittert rund um die Uhr die wichtigsten Links auf News, Backgrounds, Zitate, Debatten, Kommentare und Videos der Branche.</li>
<li><a href="http://www.basicthinking.de/blog/" target="_blank" class="liexternal">BasicThinking.de</a> &#8211; Basic Thinking Blog | To Boldly Blog, What No Man Has Blogged Before</li>
<li><a href="http://blog.norberteder.com/" target="_blank" class="liexternal">Blog.NorbertEder.com</a> &#8211; WPF, Silverlight, XAML &#8211; Norbert Eder &#8211; Living .NET</li>
</ul>
<p>Und <a href="http://technorati.com/tag/BlogDay2009" target="_blank" class="liexternal">viele weitere Blogs</a> empfehlen auch iher 5 Favoriten f&#252;r den BlogDay 2009. Interessant w&#228;re ein List von all diesen Blogs.</p>
<p>Technoraticode: sgpi42chmu</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;Title=Heute ist Blogday 2009!" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/web-20/heute-ist-blogday-2009/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=Heute ist Blogday 2009!&amp;url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/web-20/heute-ist-blogday-2009/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;bm_description=Heute ist Blogday 2009!" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;t=Heute ist Blogday 2009!" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/web-20/heute-ist-blogday-2009/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=Heute ist Blogday 2009!+http://www.metincelik.de/web-20/heute-ist-blogday-2009/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;title=Heute ist Blogday 2009!" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;t=Heute ist Blogday 2009!" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=Heute ist Blogday 2009!&amp;uri=http://www.metincelik.de/web-20/heute-ist-blogday-2009/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/web-20/heute-ist-blogday-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden</title>
		<link>http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/</link>
		<comments>http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:00:15 +0000</pubDate>
		<dc:creator>Metin (backup)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[Fehler]]></category>
		<category><![CDATA[Problem]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=515</guid>
		<description><![CDATA[Ich habe eben von WordPress 2.8.3 auf WordPress 2.8.4 installiert bzw. upgedatet. Nachdem ich einige Beitr&#228;ge geschrieben habe, ist mir aufgefallen, das der Author der Beitr&#228;ge nicht stimmt. Diese wollte ich im Backend an den Beitr&#228;gen &#228;ndern, aber ich habe festgestellt, dass das Benutzer &#8220;admin&#8221; nicht mehr zur Auswahl steht. Es wurde einfach die erste [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe eben von WordPress 2.8.3 auf WordPress 2.8.4 installiert bzw. upgedatet. Nachdem ich einige Beitr&#228;ge geschrieben habe, ist mir aufgefallen, das der Author der Beitr&#228;ge nicht stimmt. Diese wollte ich im Backend an den Beitr&#228;gen &#228;ndern, aber ich habe festgestellt, dass das Benutzer &#8220;admin&#8221; nicht mehr zur Auswahl steht. Es wurde einfach die erste Author in der Liste ausgew&#228;hlt. Ist das eventuell ein WordPress Bug?</p>
<p><span id="more-515"></span></p>
<p>Ich habe einiges ausprobiert, wie zum Beispiel einen Benutzer neu  einzurichten. Hat nicht geholfen, den admin ausw&#228;hlbar zu machen. <img src='http://www.metincelik.de/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  Ich habe auch die zuletzt installierten Plugins, wie z.B.: <a href="http://www.schloebe.de/wordpress/admin-management-xtended-plugin/" target="_blank" class="liexternal">Admin Management Xtended</a> deaktiviert. Hat auch nicht geholfen.</p>
<p>Zwischendurch habe ein Benutzer erstellt und ein Artikel zugewiesen und diesen Benutzer gel&#246;scht. Beim L&#246;schen konnte ich diesen Artikel dem Benutzer &#8220;admin&#8221; &#252;bergeben. Das w&#228;re ein m&#246;glich L&#246;sung.</p>
<p>Eine weitere L&#246;sung w&#228;re um schnell Abhilfe zu schaffen, man erstellt ein neuen Benutzer hinzu, der den selben Authornamen beinhaltet. Dann muss man als Benutzer &#8220;admin&#8221; im Auswahlfenster Autor disen neuen Benutzer bei jedem Beitrag ausw&#228;hlen. Mein neuer Benutzer ist in diesen Fall: <em>Metin (backup)</em>.</p>
<p>Das ist l&#228;stig jedesmal den Author zu korrigieren. Gibt es schon ein L&#246;sung hierzu? Was muss ich den machen um diesen Fehler zu beheben?</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;Title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;bm_description=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;t=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden+http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;title=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;t=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress 2.8.x: Benutzer admin im Author Auswahl verschwunden&amp;uri=http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/wordpress-2-8-x-benutzer-admin-im-author-auswahl-verschwunden/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.4 Update &#8211; Deutsch Edition</title>
		<link>http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/</link>
		<comments>http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 07:45:14 +0000</pubDate>
		<dc:creator>Metin (admin)</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=510</guid>
		<description><![CDATA[Nun steht der das Automatische Update 2.8.4 von WordPress im Backend zu Verf&#252;gung, das werde ich gleich in Angriff nehmen. Wieso gibt es eigentlich ein neue Version? Da gestern eine schwere Sicherheitsl&#252;cke in der WordPress Reihe 2.8.x entdeckt wurde, ist heute ein Update des WordPress Blogsystems schon vorhanden. Download der Version 2.8.4: WordPress 2.8.4 DE-Edition [...]]]></description>
			<content:encoded><![CDATA[<p>Nun steht der das Automatische Update 2.8.4 von WordPress im Backend zu Verf&#252;gung, das werde ich gleich in Angriff nehmen. </p>
<p><strong>Wieso gibt es eigentlich ein neue Version?</strong><br />
Da gestern eine <a href="http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/" target="_blank" class="liinternal">schwere Sicherheitsl&#252;cke in der WordPress Reihe 2.8.x</a> entdeckt wurde, ist heute ein Update des WordPress Blogsystems schon vorhanden.</p>
<p><span id="more-510"></span></p>
<p><strong>Download der Version 2.8.4:</strong></p>
<p><a href="http://wordpress-deutschland.org/download/deutsch/" target="_blank" class="liexternal">WordPress 2.8.4 DE-Edition</a><br />
<a href="http://de.wordpress.org/wordpress-2.8.4-de_DE.zip" target="_blank" class="liwp">Direkter Download des WordPress 2.8.4 DE-Edition </a><br /> <br />
<a href="http://wordpress-deutschland.org/download/englisch/" target="_blank" class="liexternal">WordPress 2.8.4 EN-Edition</a><br />
<a href="http://wordpress.org/wordpress-2.8.4.zip" target="_blank" class="liwp">Direkt Download des WordPress 2.8.4 EN-Edition</a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;Title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=WordPress 2.8.4 Update &#8211; Deutsch Edition&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;bm_description=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;t=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=WordPress 2.8.4 Update &#8211; Deutsch Edition+http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;title=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;t=WordPress 2.8.4 Update &#8211; Deutsch Edition" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress 2.8.4 Update &#8211; Deutsch Edition&amp;uri=http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/wordpress-2-8-4-update-deutsch-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.3: Schwere Sicherheitsl&#252;cke</title>
		<link>http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/</link>
		<comments>http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 17:30:36 +0000</pubDate>
		<dc:creator>Metin (backup)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Sicherheitslücke]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=507</guid>
		<description><![CDATA[Ich wurde von einem Kollegen auf die Sicherheitsl&#252;cke in der WordPress Reihe 2.8.x aufmerksam gemacht. Das Passwort des WordPress Benutzers admin kann durch ein Dritten zur&#252;ckgesetzt werden und der Benutzer admin ist sozusagen ausgesperrt, dies ist eine schwere Sicherheitsl&#252;cke. Um diese Sicherheitsl&#252;cke zu beheben, wird eine Ver&#228;nderung im WordPress Quelltext empfohlen. Man &#246;ffnet die wp-login.php [...]]]></description>
			<content:encoded><![CDATA[<p>Ich wurde von einem Kollegen auf die <a href="http://www.heise.de/newsticker/Luecke-in-WordPress-ermoeglicht-Aussperren-des-Admins--/meldung/143328" target="_blank" class="liexternal">Sicherheitsl&#252;cke</a> in der WordPress Reihe 2.8.x aufmerksam gemacht. Das Passwort des WordPress Benutzers admin kann durch ein Dritten zur&#252;ckgesetzt werden und der Benutzer admin ist sozusagen ausgesperrt, dies ist eine schwere Sicherheitsl&#252;cke.</p>
<p><span id="more-507"></span></p>
<p>Um diese Sicherheitsl&#252;cke zu beheben, wird eine Ver&#228;nderung im WordPress Quelltext empfohlen. Man &#246;ffnet die wp-login.php und &#228;ndert in Zeile 190 den Text von<br />
<code>if ( empty( $key ) )</code> in <code>if ( empty( $key ) || is_array( $key ) )</strong></code></p>
<p>Mein Kollege sagte mir, ich solle einen weiteren Benutzer mit einem Administrator Account auf meinen WordPress Seiten erstellen, um wieder Zugriff auf meine Seite zu haben. Eeee.. ganz habe ich es nicht verstanden, was er damit wollte. Man kann doch seinen <a href="http://stadt-bremerhaven.de/wordpress-2-8-3-admin-password-reset-exploit-schwere-sicherheitsluecke/" target="_blank" class="liexternal">Passwort via Email</a> wieder erfragen. Vielleicht denkt er, das man gar kein Zugriff mehr haben kann mit dieser Sicherheitsl&#252;cke. Das ist aber nicht so.</p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;Title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;bm_description=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;t=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke+http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;title=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;t=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress 2.8.3: Schwere Sicherheitsl&#252;cke&amp;uri=http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/wordpress-2-8-3-schwere-sicherheitsluecke/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook</title>
		<link>http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/</link>
		<comments>http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 01:10:47 +0000</pubDate>
		<dc:creator>Metin (admin)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=467</guid>
		<description><![CDATA[&#8220;Wordbook ist ein effektives Programm zur Erstellung von W&#246;rterb&#252;chern, Enzyklop&#228;dien, Lexika, Linksammlungen, usw.&#8221; auf www.wordbook.de. Nein, es handelt sich nicht um das oben beschriebene Wordbook. Wordbook ist ein WordPress Plugin, dessen Funktion ist es automatisch WordPress Beitr&#228;ge auf www.facebook.com weiterzuleiten. Ein fantastisch kostenloses WP Plugin, welches sehr einfach und automatisch auf dieser Seite installiert wurde [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Wordbook ist ein effektives Programm zur Erstellung von W&#246;rterb&#252;chern, Enzyklop&#228;dien, Lexika, Linksammlungen, usw.&#8221; auf <a href="http://www.wordbook.de" class="liexternal">www.wordbook.de</a></em>.</p>
<p>Nein, es handelt sich nicht um das oben beschriebene Wordbook. Wordbook ist ein WordPress Plugin, dessen Funktion ist es automatisch WordPress Beitr&#228;ge auf  <a href="http://www.facebook.com" class="liexternal">www.facebook.com</a> weiterzuleiten. Ein fantastisch kostenloses WP Plugin, welches sehr einfach und automatisch auf dieser Seite installiert wurde und es funktioniert bisher einwandfrei mit WP 2.8.3.</p>
<p>Plugin Link: <a href="http://wordpress.org/extend/plugins/wordbook/" class="liwp">http://wordpress.org/extend/plugins/wordbook/</a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;Title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook&amp;url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;bm_description=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;t=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook+http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;title=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;t=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=Ein weiteres hilfreiches WordPress Plugin mit dem Namen Wordbook&amp;uri=http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/ein-weiteres-hilfreiches-wordpress-plugin-mit-dem-namen-wordbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Update Version 2.8.3 &#8211; Deutsch Edition</title>
		<link>http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/</link>
		<comments>http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 08:54:13 +0000</pubDate>
		<dc:creator>Metin (admin)</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=444</guid>
		<description><![CDATA[Heute habe ich das Update 2.8.3 von WordPress automatisch installieren lassen, welche man durch eine Schaltfl&#228;che im Administrationsbereich aktivieren kann. Die automatische Updatefunktion wird im Administrationsbereich im Headerbereich der &#220;bersichtsseite signalisiert. Downloading update from http://de.wordpress.org/wordpress-2.8.3-de_DE.zip. Unpacking the update. &#220;berpr&#252;fe die entpackten Dateien Installiere die neueste Version Aktualisiere Datenbank WordPress wurde erfolgreich aktualisiert Wie man sieht, [...]]]></description>
			<content:encoded><![CDATA[<p>Heute habe ich das Update 2.8.3 von WordPress automatisch installieren lassen, welche man durch eine Schaltfl&#228;che im Administrationsbereich aktivieren kann. Die automatische Updatefunktion wird im Administrationsbereich im Headerbereich der &#220;bersichtsseite signalisiert.</p>
<p><code>Downloading update from http://de.wordpress.org/wordpress-2.8.3-de_DE.zip.<br />
Unpacking the update.<br />
&#220;berpr&#252;fe die entpackten Dateien<br />
Installiere die neueste Version<br />
Aktualisiere Datenbank<br />
WordPress wurde erfolgreich aktualisiert</code></p>
<p>Wie man sieht, ist das WordPress Update mit der automatischen Installation des Version 2.8.3 erfolgreich aktualisiert worden.</p>
<p><strong>Wieso gibt es eigentlich ein neue Version?</strong><br />
Es ist ein sehr <a href="http://blog.wordpress-deutschland.org/2009/08/01/kritische-sicherheitsluecke-in-wordpress-2-8-2.html" target="_blank" class="liexternal">kritische Sicherheitsl&#252;cke</a> in den Versionen ab 2.7.1 bis 2.8.2 vorhanden, welche Schreibzugriffe auf diverse Einstellungsseiten erm&#246;glichte, wie z.B. Plugins oder Themes aufrufen und dort Einstellungen vornehmen konnte. Der Fehler wurde in WordPress 2.8.3 behoben.</p>
<p><strong>Download der Version 2.8.3:</strong></p>
<p><a href="http://wordpress-deutschland.org/download/deutsch/" target="_blank" class="liexternal">WordPress 2.8.3 DE-Edition &#8211; 7,88 MB (ZIP &#8211; 2,46 MB)</a><br />
<a href="http://wordpress-deutschland.org/download/englisch/" target="_blank" class="liexternal">WordPress 2.8.3 EN-Edition &#8211; 6,86 MB (ZIP &#8211; 2,24 MB)</a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;Title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=WordPress Update Version 2.8.3 &#8211; Deutsch Edition&amp;url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;bm_description=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;t=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=WordPress Update Version 2.8.3 &#8211; Deutsch Edition+http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;title=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;t=WordPress Update Version 2.8.3 &#8211; Deutsch Edition" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress Update Version 2.8.3 &#8211; Deutsch Edition&amp;uri=http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/wordpress-update-version-2-8-3-deutsch-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8 ist erschienen</title>
		<link>http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/</link>
		<comments>http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 14:15:53 +0000</pubDate>
		<dc:creator>Metin (admin)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=339</guid>
		<description><![CDATA[Die Blogsoftware WordPress 2.8 ist am 10.06.2009 erschienen. Mit dieser Version wurden fast 800 Bugs von den Entwickler korrigiert. Bei Codex sind in englischer Sprache die Highlights und Verbesserungen aufgelistet. Das sind die Highlights: - Neue &#8220;Drag and Drop&#8221; Widgets Administrator Oberfl&#228;che und der neue Widgets API - Syntax Highlighting und Lookup Funktion wurden in [...]]]></description>
			<content:encoded><![CDATA[<p>Die Blogsoftware  <a href="http://wordpress-deutschland.org/download/deutsch/" target="_blank" class="liexternal">WordPress 2.8</a> ist am 10.06.2009 erschienen. </p>
<p>Mit dieser Version wurden fast 800 Bugs von den Entwickler korrigiert.<br />
Bei <a href="http://codex.wordpress.org/Version_2.8" class="liwp">Codex</a> sind in englischer Sprache die Highlights und Verbesserungen aufgelistet.</p>
<p>Das sind die Highlights:<br />
- Neue &#8220;Drag and Drop&#8221; Widgets Administrator Oberfl&#228;che und der neue Widgets API<br />
- Syntax Highlighting und Lookup Funktion wurden in Plugin und Theme Editoren integriert<br />
- Anschauen und installieren von Themes direkt aus dem Administratormen&#252;<br />
- Verteilen der Widgets in bis zu 4 Seitenspalten direkt ohne Reload<br />
- Mehr Konfigurationsm&#246;glichkeiten &#252;ber die Management Seiten im Backend, wieviele Elemente auf einmal angezeigt werden, wievielw Spalten angezeigt werden usw.<br />
- unterst&#252;tzt Zeitzonen und die automatische Anpassung der Sommerzeit/Winterzeit<br />
- unterst&#252;tzt IIS 7.0 URL Rewrite Module<br />
- Schnelles Laden der Administrator Seiten via Script Komprimierung und Dateiverkn&#252;pfung<br />
- bessere Datenbankperformance</p>
<p>Ich habe das automatische Update gestern mit diesem Blog erfolgreich installiert, vorher nat&#252;rlich ein Backup vom Datenbank und den Dateien auf meinem Webspace lokal auf meinem Rechner gesichert. Danach mu&#223;te ich noch 2 Plugins updaten und es l&#228;uft bisher ohne Probleme.</p>
<p><strong>Download der Version 2.8:</strong></p>
<p><a href="http://wordpress-deutschland.org/download/deutsch/" target="_blank" class="liexternal">WordPress 2.8 DE &#8211; 7,73 MB</a><br />
<a href="http://wordpress-deutschland.org/download/englisch/" target="_blank" class="liexternal">WordPress 2.8 UK &#8211; 6,81 MB</a></p>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;Title=WordPress 2.8 ist erschienen" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=WordPress 2.8 ist erschienen&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;bm_description=WordPress 2.8 ist erschienen" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;t=WordPress 2.8 ist erschienen" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=WordPress 2.8 ist erschienen+http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;title=WordPress 2.8 ist erschienen" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;t=WordPress 2.8 ist erschienen" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=WordPress 2.8 ist erschienen&amp;uri=http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/wordpress-2-8-ist-erschienen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permalinks in WordPress</title>
		<link>http://www.metincelik.de/wordpress/permalinks-in-wordpress/</link>
		<comments>http://www.metincelik.de/wordpress/permalinks-in-wordpress/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:35:30 +0000</pubDate>
		<dc:creator>Metin (admin)</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Permalinks]]></category>

		<guid isPermaLink="false">http://www.metincelik.de/?p=10</guid>
		<description><![CDATA[In diesem Artikel findet ihr bald mehr zum Thema Permalinks in WordPress. Links zum Thema Permalinks: Kategoriebasierte Permalinks und „/category/“ aus Post-URL entfernen Google.de Suche: wordpress title in url Powered by Bookmarkify&#8482;]]></description>
			<content:encoded><![CDATA[<p>In diesem Artikel findet ihr bald mehr zum Thema Permalinks in WordPress.</p>
<p>Links zum Thema Permalinks:</p>
<ul>
<li><a href="http://faq.wordpress-deutschland.org/kategoriebasierte-permalinks-und-category-aus-post-url-entfernen/" class="liexternal">Kategoriebasierte Permalinks und „/category/“ aus Post-URL entfernen</a></li>
<li><a href="http://www.google.de/search?hl=de&#038;q=wordpress+title+in+url&#038;btnG=Suche&#038;meta=cr%3DcountryDE" class="liexternal">Google.de Suche: wordpress title in url</a></li>
</ul>
<div class='bookmarkify'><a name='bookmarkify'></a><div class='linkbuttons'><a href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;Title=Permalinks in WordPress" title='Save to blinklist' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blinklist.png' style='width:16px; height:16px;' alt='[blinklist] ' /></a> <a href="http://www.blogbookmark.com/submit.php?url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/" title='Save to BlogBookmark' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogbookmark.png' style='width:16px; height:16px;' alt='[BlogBookmark] ' /></a> <a href="http://www.bloglines.com/sub/http://www.metincelik.de/wordpress/permalinks-in-wordpress/" title='Save to Bloglines' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/bloglines.png' style='width:16px; height:16px;' alt='[Bloglines] ' /></a> <a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to BlogMarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/blogmarks.png' style='width:16px; height:16px;' alt='[BlogMarks] ' /></a> <a href="http://del.icio.us/post?url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href="http://digg.com/submit?phase=2&amp;url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Digg It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href="http://www.dotnetkicks.com/kick/?url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to DotNetKicks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dotnetkicks.png' style='width:16px; height:16px;' alt='[DotNetKicks] ' /></a> <a href="http://www.dzone.com/links/add.html?description=Permalinks in WordPress&amp;url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to dzone' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/dzone.png' style='width:16px; height:16px;' alt='[dzone] ' /></a> <a href="http://www.facebook.com/share.php?u=http://www.metincelik.de/wordpress/permalinks-in-wordpress/" title='Save to Facebook' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;bm_description=Permalinks in WordPress" title='Save to Mister Wong' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/misterwong.png' style='width:16px; height:16px;' alt='[Mister Wong] ' /></a> <a href="http://www.mixx.com/submit?page_url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/" title='Save to Mixx' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/mixx.png' style='width:16px; height:16px;' alt='[Mixx] ' /></a> <a href="http://www.myspace.com/Modules/PostTo/Pages/?c=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;t=Permalinks in WordPress" title='Save to MySpace' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/myspace.png' style='width:16px; height:16px;' alt='[MySpace] ' /></a> <a href="http://www.oneview.com/quickadd/neu/addBookmark.jsf?URL=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to oneview' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/oneview.png' style='width:16px; height:16px;' alt='[oneview] ' /></a> <a href="http://reddit.com/submit?url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Reddit' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href="http://www.spurl.net/spurl.php?url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to Spurl' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/spurl.png' style='width:16px; height:16px;' alt='[Spurl] ' /></a> <a href="http://www.stumbleupon.com/submit?url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Stumble It!' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> <a href="http://technorati.com/faves?add=http://www.metincelik.de/wordpress/permalinks-in-wordpress/" title='Add to my Technorati Favorites' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/technorati.png' style='width:16px; height:16px;' alt='[Technorati] ' /></a> <a href="http://twitter.com/home/?status=Permalinks in WordPress+http://www.metincelik.de/wordpress/permalinks-in-wordpress/" title='Save to Twitter' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/twitter.png' style='width:16px; height:16px;' alt='[Twitter] ' /></a> <a href="https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;url=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;title=Permalinks in WordPress" title='Save to Windows Live' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/windowslive.png' style='width:16px; height:16px;' alt='[Windows Live] ' /></a> <a href="http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;u=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;t=Permalinks in WordPress" title='Save to Yahoo! Bookmarks' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/yahoo.png' style='width:16px; height:16px;' alt='[Yahoo!] ' /></a> <a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=Permalinks in WordPress&amp;uri=http://www.metincelik.de/wordpress/permalinks-in-wordpress/&amp;loc=en_US" title='Email this to a friend' onclick='target="_blank";' rel='nofollow' class="liimagelink"><img src='http://www.metincelik.de/wp-content/plugins/bookmarkify/email.png' style='width:16px; height:16px;' alt='[Email] ' /></a> </div><div class='brand'><small><a href="http://www.bookmarkify.com/" class="liexternal">Powered by Bookmarkify&trade;</a></small></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.metincelik.de/wordpress/permalinks-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

