<?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>Yoschis Blog &#187; WordPress</title>
	<atom:link href="http://yoschi.cc/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://yoschi.cc</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 22:30:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress: Trackbacks/Pingbacks nicht mehr als Kommentar zählen lassen</title>
		<link>http://yoschi.cc/2009/06/wordpress-trackbacks-pingbacks-nicht-mehr-als-kommentar-zaehlen-lassen/</link>
		<comments>http://yoschi.cc/2009/06/wordpress-trackbacks-pingbacks-nicht-mehr-als-kommentar-zaehlen-lassen/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 20:24:24 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[Tipp]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://yoschi.cc/?p=1871</guid>
		<description><![CDATA[Dazu muss man nur diesen Code hier am anfang der functions.php des Themes hineninkopieren. &#60;?php function ping_count&#40;&#41; &#123; global $id; $comments_by_type = &#38;separate_comments&#40;get_comments&#40;'post_id=' . $id&#41;&#41;; return count&#40;$comments_by_type&#91;'pings'&#93;&#41;; &#125; &#160; function comment_count&#40;&#41; &#123; global $id; $comments_by_type = &#38;separate_comments&#40;get_comments&#40;'post_id=' . $id&#41;&#41;; return count&#40;$comments_by_type&#91;'comment'&#93;&#41;; &#125; add_filter&#40;'get_comments_number', 'comment_count', 0&#41;; ?&#62; Besonders Sinnvoll ist dies wenn man die Trackbacks/Pingbacks als [...]]]></description>
			<content:encoded><![CDATA[<p>Dazu muss man nur diesen Code hier am anfang der functions.php des Themes hineninkopieren.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> ping_count<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$id</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$comments_by_type</span> <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span>separate_comments<span style="color: #009900;">&#40;</span>get_comments<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'post_id='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$id</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments_by_type</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'pings'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> comment_count<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$id</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$comments_by_type</span> <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span>separate_comments<span style="color: #009900;">&#40;</span>get_comments<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'post_id='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$id</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments_by_type</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'comment'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'get_comments_number'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'comment_count'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Besonders Sinnvoll ist dies wenn man die Trackbacks/Pingbacks als Liste &uuml;ber/unter den Kommentaren anzeigt.</p>
<p>Mit</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> ping_count<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>kann man die Anzahl der Track-/Pingbacks angeben.</p>
<p><a href="http://www.jeriko.de/2008/11/08/wordpress-27-anzeige-der-kommentaranzahl-beeinflussen/" class="liexternal">via</a></p>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2009/06/wordpress-trackbacks-pingbacks-nicht-mehr-als-kommentar-zaehlen-lassen/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>Initiative Backup</title>
		<link>http://yoschi.cc/2009/03/initiative-backup/</link>
		<comments>http://yoschi.cc/2009/03/initiative-backup/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 13:58:06 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Backups]]></category>
		<category><![CDATA[Datensicherheit]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=1795</guid>
		<description><![CDATA[Vor zwei Jahren startete WordPress Deutschland die Pro-Backup Initiative wo man wieder dran erinnern wollte wie wichtig Backups sind und jeder seine Methoden zur Backup Erstellung nennen durfte. Dieses Jahr, n&#228;lich letzten Montag, war es wieder so weit. Da ich einen virtuellen Server von Vanager habe k&#252;mmert sich dieser um die t&#228;glichen Daten Backups. Ein [...]]]></description>
			<content:encoded><![CDATA[<p>Vor zwei Jahren startete <a href="http://wordpress-deutschland.org/" class="liexternal">WordPress Deutschland</a> die <a href="http://blog.wordpress-deutschland.org/2009/03/23/initative-pro-backup" class="liexternal">Pro-Backup</a> Initiative wo man wieder dran erinnern wollte wie wichtig Backups sind und jeder seine Methoden zur Backup Erstellung nennen durfte.</p>
<p>Dieses Jahr, n&auml;lich letzten Montag, war es wieder so weit. </p>
<p>Da ich einen virtuellen Server von <a href="http://vanager.de/" class="liexternal">Vanager</a> habe k&uuml;mmert sich dieser um die t&auml;glichen Daten Backups.<br />
Ein Skript sorgt noch daf&uuml;r dass die MySQL Datenbank(en) t&auml;glich gesichert werden.</p>
<p>Selbstverst&auml;ndlich sichere ich nicht nur mein Blog sondern auch noch alle andere Anwendungen die auf meinen Server laufen.</p>
<blockquote><p>…und hey &#8211; heute schon ein Backup gemacht?</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2009/03/initiative-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lighttpd: WordPress URL Rewriting</title>
		<link>http://yoschi.cc/2009/03/lighttpd-wordpress-url-rewriting/</link>
		<comments>http://yoschi.cc/2009/03/lighttpd-wordpress-url-rewriting/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 06:13:01 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=1781</guid>
		<description><![CDATA[Um in lighttpd die WordPress URL Rewriting nutzen zu k&#246;nnen muss man folgendes in die lighttpd.conf oder virtuelle Domain Konfigurations Datei schreiben url.rewrite = &#40; &#34;^//(.*)\.(.+)$&#34; =&#62; &#34;$0&#34;, &#34;^/blog/(wp-.+)$&#34; =&#62; &#34;$0&#34;, &#34;^/blog/xmlrpc.php&#34; =&#62; &#34;$0&#34;, &#34;^/blog/sitemap.xml&#34; =&#62; &#34;$0&#34;, &#34;^/blog/(.+)/?$&#34; =&#62; &#34;/blog/index.php/$1&#34; &#41; Den Pfad sollte man selbstverst&#228;ndig anpassen, wenn man einen anderen hat.]]></description>
			<content:encoded><![CDATA[<p>Um in <a href="http://www.lighttpd.net/" class="liexternal">lighttpd</a> die WordPress URL Rewriting nutzen zu k&ouml;nnen muss man folgendes in die lighttpd.conf oder virtuelle Domain Konfigurations Datei schreiben</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">url.rewrite = <span style="color: #7a0874; font-weight: bold;">&#40;</span>
        <span style="color: #ff0000;">&quot;^//(.*)\.(.+)$&quot;</span> =<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #ff0000;">&quot;$0&quot;</span>,
        <span style="color: #ff0000;">&quot;^/blog/(wp-.+)$&quot;</span> =<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #ff0000;">&quot;$0&quot;</span>,
        <span style="color: #ff0000;">&quot;^/blog/xmlrpc.php&quot;</span> =<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #ff0000;">&quot;$0&quot;</span>,
        <span style="color: #ff0000;">&quot;^/blog/sitemap.xml&quot;</span> =<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #ff0000;">&quot;$0&quot;</span>,
        <span style="color: #ff0000;">&quot;^/blog/(.+)/?$&quot;</span> =<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #ff0000;">&quot;/blog/index.php/$1&quot;</span>
<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>Den Pfad sollte man selbstverst&auml;ndig anpassen, wenn man einen anderen hat.</p>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2009/03/lighttpd-wordpress-url-rewriting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jetziger Stand vom Journalist Theme</title>
		<link>http://yoschi.cc/2009/03/jetziger-stand-vom-journalist-theme/</link>
		<comments>http://yoschi.cc/2009/03/jetziger-stand-vom-journalist-theme/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 21:32:23 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Journalist]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=1780</guid>
		<description><![CDATA[Journalist wird noch von mir und teilweise dem Autoren weiterprogrammiert. Die neue Version beinhaltet dass das Theme mehrsprachig ist (Deutsch, Englisch zur Zeit) und dass Kommentare verschachtelt werden k&#246;nnen. Ich bin mir aber nicht sicher ob ich PHP Code von Plugins mit ins Theme mithinein nehmen soll beispiels weise Tiny Link]]></description>
			<content:encoded><![CDATA[<p><a href="http://yoschi.cc/blog/2008/08/wordpress-theme-journalist-eingedeutscht" class="liinternal">Journalist</a> wird noch von mir und teilweise dem Autoren weiterprogrammiert.</p>
<p>Die neue Version beinhaltet dass das Theme mehrsprachig ist (Deutsch, Englisch zur Zeit) und dass Kommentare verschachtelt werden k&ouml;nnen.</p>
<p>Ich bin mir aber nicht sicher ob ich PHP Code von Plugins mit ins Theme mithinein nehmen soll beispiels weise <a href="http://www.brajeshwar.com/2007/tiny-link-a-wordpress-plugin-to-create-a-tinyurl-for-your-articles/" class="liexternal">Tiny Link</a (erstellt kurze Links) und  <a href="http://sw-guide.de/wordpress/plugins/math-comment-spam-protection/">Math Comment Spam Protection</a> (Matheabfrage bei den Kommentaren).</p>
<p>Dies h&auml;tte den Vorteil das man nur noch die Plugins aktiviert musst und sofort funktionieren, die die Plugins nicht aktivieren werden es nicht merken dass da was ge&auml;ndert worden ist.</p>
<p>Aber ich m&ouml;chte lieber die Meinungen von den Theme Nicht-/Nutzer h&ouml;ren ob sie sowas &uuml;berhaupt haben wollen.</p>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2009/03/jetziger-stand-vom-journalist-theme/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Deutsche Umlaute in WordPress mit einer englischen Tastatur</title>
		<link>http://yoschi.cc/2009/02/deutsche-umlaute-in-wordpress-mit-einer-englischen-tastatur/</link>
		<comments>http://yoschi.cc/2009/02/deutsche-umlaute-in-wordpress-mit-einer-englischen-tastatur/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 06:41:40 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[Ärgerliches]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Polnisch]]></category>
		<category><![CDATA[Sprachen]]></category>
		<category><![CDATA[Umlaute]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=1713</guid>
		<description><![CDATA[Es hat zwar seine Vorteile Verwandte im Ausland zu haben aber wenn man dann von ihnen dann bestimmte Computer Gegenst&#228;nde wie eine Tastatur oder ein Laptop bekommt kann einem schon manchmal der Spass an dem Ger&#228;t vergehen. Ich zB. habe ein polnisches Netbook zu Weihnachten bekommen weswegen ich jetzt eine polnische englische Tastatur Belegung habe [...]]]></description>
			<content:encoded><![CDATA[<p>Es hat zwar seine Vorteile Verwandte im Ausland zu haben aber wenn man dann von ihnen dann bestimmte Computer Gegenst&auml;nde wie eine Tastatur oder ein Laptop bekommt kann einem schon manchmal der Spass an dem Ger&auml;t vergehen.</p>
<p>Ich zB. habe ein polnisches <a href="http://yoschi.cc/blog/2008/12/mein-neuer-acer-aspire-one-subnotebook" class="liinternal">Netbook zu Weihnachten</a> bekommen weswegen ich jetzt eine <del datetime="2009-02-06T06:30:27+00:00">polnische</del> englische Tastatur Belegung habe womit ich kein &auml;, &ouml; und &uuml; tippen kann.</p>
<p>Wenn ich chatte kann der gegen&uuml;ber von mir damit leben aber bei wenn ich nen Beitrag im Blog schreibe kann das schon ziemlich nervig werden ein ae, oe oder ue zu lesen denn manche Worte verschlimmbessert man so.</p>
<p>Zum Gl&uuml;ck kann man in WordPress Beitr&auml;ge HTML verwenden womit ich mein jetzigens Problem l&ouml;se. <img src='http://yoschi.cc/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<table border="1">
<tr>
<th>Buchstabe</th>
<td>ä</td>
<td>Ä</td>
<td>ö</td>
<td>Ö</td>
<td>ü</td>
<td>Ü</td>
<td>ß</td>
</tr>
<tr>
<th>HTML Code</hd></p>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;auml;</pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;Auml;</pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;ouml;</pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;Ouml;</pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;uuml;</pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;Uuml;</pre></div></div>

</td>
<td>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;szlig;</pre></div></div>

</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2009/02/deutsche-umlaute-in-wordpress-mit-einer-englischen-tastatur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Artikel Versionen entfernen</title>
		<link>http://yoschi.cc/2008/11/wordpress-artikel-versionen-entfernen/</link>
		<comments>http://yoschi.cc/2008/11/wordpress-artikel-versionen-entfernen/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 11:47:47 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Optimierung]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=1152</guid>
		<description><![CDATA[WordPress will und wird immer mehr zu einen Content-Management-System (kurz CMS), so soll etwa die WordPress Version 3.0 offiziel nicht mehr als Blogsoftware sondern als CMS kommen. Wenn auch zu lasten der Nutzer die mit WordPress nur bloggen wollen. Als Beispiel soll die Artikel Version, die ab der 2.6 eingebaut worden ist, genannt werden. Die [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress-deutschland.org/" class="liexternal">WordPress</a> will und wird immer mehr zu einen <a href="http://de.wikipedia.org/wiki/Content-Management-System" rel="nofollow" class="liwikipedia">Content-Management-System</a> (kurz CMS), so soll etwa die WordPress Version 3.0 offiziel nicht mehr als Blogsoftware sondern als CMS kommen. Wenn auch zu lasten der Nutzer die mit WordPress nur bloggen wollen.</p>
<p>Als Beispiel soll die Artikel Version, die ab der 2.6 eingebaut worden ist, genannt werden. Die Artikel bekommen, wie in einen Wiki, Versionen wer was und wann bearbeitet.</p>
<p>Ein sinnloses Feature für Blogger denn wer kriegt die Versionen schon zu sehen und seinen Blog überlässt man auch nicht der Öffentlichkeit wie ein Wiki.</p>
<p>Wir, die Blogger, könnten natürlich auch dieses Feature ignorieren oder zu einer anderer Bloggersoftware wechseln. Ich bevorzuge ersteres, weil mir ist es egal ob die MySQL Datebank Abfrage etwas länger dauert, der Nutzer merkt dass nicht da er nur eine HTML Seite vorgeliefert bekommt (Ausnahme Kommentare) dank <a href="http://wordpress.org/extend/plugins/wp-super-cache/" class="liwp">WP-Super-Cache.</a> </p>
<p>Außerdem gibt es zur Zeit keine vergleichswerte Blogsoftware <img src='http://yoschi.cc/wp-content/plugins/tango-smilies/tango/face-raspberry.png' alt=':-P' class='wp-smiley' /> </p>
<p>Ich bin aber gerade über das <del datetime="2008-11-24T17:53:00+00:00">chinesische</del> englische Plugin <a href="http://wordpress.org/extend/plugins/delete-revision/" class="liwp">Delete-Revision</a> gestolpert.</p>
<p>Zur Zeit habe ich etwa 106 Artikel, das Plugin ermittelte etwa 1198 Revisionen.</p>
<p>Ich habe dass Plugin jetzt mal testweise durchgeführt, natürlich mit Backups zur Sicherheit, die Datenbank ist nicht kleiner geworden und Veränderungen seien es Positive oder Negative habe ich nicht festgestellt.</p>
<p>Wie siehts bei euch aus?<br />
Verwendet ihr das Plugin wenn ja brachte es was und wenn nein dann warum?</p>
<p><strong>Update am 24.11.08 um 6:45 Uhr</strong><br />
Ich habe noch das Plugin <a href="http://wordpress.org/extend/plugins/revisions/" class="liwp">Revisions</a> gefunden, das auf Englisch ist, womit man die anlegung der Artikel Version ganz deaktivieren kann. Mit diesen Plugin kann man schon angelegte Artikel Version auch entfernen.</p>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2008/11/wordpress-artikel-versionen-entfernen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress MU</title>
		<link>http://yoschi.cc/2008/11/wordpress-mu/</link>
		<comments>http://yoschi.cc/2008/11/wordpress-mu/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 14:44:05 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=1016</guid>
		<description><![CDATA[Mit WordPress kann man verdammt viel anstellen so kann man es als Forum, Social Community und und und verwenden. Mit WordPress MU kann man sogar mit nur einer WordPress Installation mehrere Blogs verwalten sei es über Subdomains oder ohne. Eine deutsche WordPress MU Community gibt es auch. Da ich zur Zeit ein deutsches sowie ein [...]]]></description>
			<content:encoded><![CDATA[<p>Mit <a href="http://wordpress-deutschland.org/" class="liexternal">WordPress</a> kann man verdammt viel anstellen so kann man es als <a href="http://bbpress.de/" class="liexternal">Forum</a>, <a href="http://buddypress.org/" class="liexternal">Social Community</a> und und und verwenden.</p>
<p>Mit <a href="http://mu.wordpress.org/" class="liwp">WordPress MU</a> kann man sogar mit nur einer WordPress Installation mehrere Blogs verwalten sei es über Subdomains oder ohne.</p>
<p>Eine <a href="http://wpmu.de/" class="liexternal">deutsche WordPress MU Community</a> gibt es auch.</p>
<p>Da ich zur Zeit ein deutsches sowie ein polnisches Blog führe wo ich zweimal WordPress installiert habe und Plugins mir nicht helfen konnte wollte ich es mir mal ansehen.</p>
<p><b>Installation</b></p>
<p>Die Installation verlief so einfach wie bei WordPress (zur Info es ist schon lange möglich WordPress übern Browser zu installieren).</p>
<p>Anders als bei der Installation vom WordPress kann man sich aussuchen ob die neuen Blogs über eine Subdomain erreichbar sein sollen (blog1.example.org) oder im Unterverzeichnis vom jetzigen Blog (http://Yoschi.cc/blog-mu/blog1). </p>
<p>Beides zu benutzen oder andere URL Möglichkeiten zu verwenden ist nicht möglich, was ich schade finde.</p>
<p><b>Dashboard/Verwaltung</b><br />
Über den Menü Punkt Site-Admin kann man die einzelnen Blogs verwalten sowie können Standard Optionen gesetzt werden beispielsweise wieviel Speicherplatz man erhält oder man konfiguriert es für jeden Blog individuell.</p>
<p>Einzelne Blogs können deaktiviert (sobald User sich löscht wird der Blog auch gelösct), archiviert (Gegenteil von deaktivieren), als Spam markieren oder ganz löschen.</p>
<p><b>Fazit:</b><br />
<a href="http://mu.wordpress.org/" class="liwp">WordPress MU</a> ist was tolles wenn man mehreren Blogs verwalten will, die zahlreichen Plugins/Themes für WordPress funktionieren weiter, man muss nur noch einmal updaten und braucht nur noch eine Datenbank.</p>
<p>Schlecht wird es aber wenn man schon länger mehrere Blogs installiert hatte, sodass bei einem Umstieg die ganzen Perma Links nicht mehr aufrufbar sind und Plugins die inhaltich die Blogs erweiterten aber keine Import/Export Funktion anbieten den Umstieg nochmals erschwert.</p>
<p><b>Screenshots</b><br />
<div id="attachment_1020" class="wp-caption alignleft" style="width: 160px"><a href="http://yoschi.cc/wp-content/uploads/wordpress-mu-installation.png" class="floatbox" rev="group:1016 caption:`wordpress-mu-installation`" ><img src="http://yoschi.cc/wp-content/uploads/wordpress-mu-installation-150x150.png" alt="Installation" title="wordpress-mu-installation" width="150" height="150" class="size-thumbnail wp-image-1020" /></a><p class="wp-caption-text">Installation</p></div></p>
<div id="attachment_1030" class="wp-caption alignleft" style="width: 160px"><a href="http://yoschi.cc/wp-content/uploads/wordpress-mu-dashboard.png" class="floatbox" rev="group:1016 caption:`wordpress-mu-dashboard`" ><img src="http://yoschi.cc/wp-content/uploads/wordpress-mu-dashboard-150x150.png" alt="Dashboard" title="wordpress-mu-dashboard" width="150" height="150" class="size-thumbnail wp-image-1030" /></a><p class="wp-caption-text">Dashboard</p></div>
<div id="attachment_1022" class="wp-caption alignleft" style="width: 160px"><a href="http://yoschi.cc/wp-content/uploads/wordpress-mu-site-admin-blogs.png" class="floatbox" rev="group:1016 caption:`wordpress-mu-site-admin-blogs`" ><img src="http://yoschi.cc/wp-content/uploads/wordpress-mu-site-admin-blogs-150x150.png" alt="Blog Verwaltung" title="wordpress-mu-site-admin-blogs" width="150" height="150" class="size-thumbnail wp-image-1022" /></a><p class="wp-caption-text">Blog Verwaltung</p></div>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2008/11/wordpress-mu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tabellen unter WordPress</title>
		<link>http://yoschi.cc/2008/11/tabellen-unter-wordpress/</link>
		<comments>http://yoschi.cc/2008/11/tabellen-unter-wordpress/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 13:13:03 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=951</guid>
		<description><![CDATA[Mit WordPress kann man nicht nur simple Einträge mit Bilder schreiben sondern sogar zusätzlich Tabellen und andere extras verwenden ohne auch nur ein Plugin einsetzen zu müssen. Das geht ganz einfach mittels HTML und wem die gleich gezeigten Tabellen Arten nicht ausreicht so kann er bei SELFHTML ganz leicht erlernen wie man Tabellen in HTML [...]]]></description>
			<content:encoded><![CDATA[<p>Mit <a href="http://wordpress-deutschland.org/" class="liexternal">WordPress</a> kann man nicht nur simple Einträge mit Bilder schreiben sondern sogar zusätzlich Tabellen und andere extras verwenden ohne auch nur ein Plugin einsetzen zu müssen.</p>
<p>Das geht ganz einfach mittels <a href="http://de.selfhtml.or" class="liexternal">HTML</a> und wem die gleich gezeigten Tabellen Arten nicht ausreicht so kann er bei <a href="http://de.selfhtml.org/html/tabellen/aufbau.htm" class="liexternal">SELFHTML</a> ganz leicht erlernen wie man Tabellen in HTML schreibt.</p>
<table border="1">
<tr>
<th>Berlin</th>
<th>Hamburg</th>
<th>M&uuml;nchen</th>
</tr>
<tr>
<td>Milj&ouml;h</td>
<td>Kiez</td>
<td>Bierdampf</td>
</tr>
<tr>
<td>Buletten</td>
<td>Frikadellen</td>
<td>Fleischpflanzerl</td>
</tr>
</table>
<p>wäre</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1&quot;</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">th</span>&gt;</span>Berlin<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">th</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">th</span>&gt;</span>Hamburg<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">th</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">th</span>&gt;</span>M<span style="color: #ddbb00;">&amp;uuml;</span>nchen<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">th</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Milj<span style="color: #ddbb00;">&amp;ouml;</span>h<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Kiez<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Bierdampf<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Buletten<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Frikadellen<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Fleischpflanzerl<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></td></tr></table></div>

<p>Sowie die unsichtbare Tabelle, praktisch für Definitionen.</p>
<table border="0">
<tr>
<td>
<h2>ARQ</h2>
</td>
<td>
<p>Automatic Repeat Request. Eine allgemeine Bezeichnung<br />
    f&uuml;r Fehlerprotokolle, die &Uuml;bertragungsfehler erkennt und<br />
    defekte Bl&ouml;cke selbst&auml;ndig wiederholt</p>
</td>
</tr>
<tr>
<td>
<h2>HDLC</h2>
</td>
<td>
<p>High Level Data Link Control. Ein Standard-Protokoll, das<br />
    von der Kommission f&uuml;r internationale Standards f&uuml;r<br />
    Softwareanwendungen in synchronen Anlagen verwendet wird.</p>
</td>
</tr>
</table>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">h2</span>&gt;</span>ARQ<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h2</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">p</span>&gt;</span>Automatic Repeat Request. Eine allgemeine Bezeichnung
    f<span style="color: #ddbb00;">&amp;uuml;</span>r Fehlerprotokolle, die <span style="color: #ddbb00;">&amp;Uuml;</span>bertragungsfehler erkennt und
    defekte Bl<span style="color: #ddbb00;">&amp;ouml;</span>cke selbst<span style="color: #ddbb00;">&amp;auml;</span>ndig wiederholt<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">h2</span>&gt;</span>HDLC<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h2</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">p</span>&gt;</span>High Level Data Link Control. Ein Standard-Protokoll, das
    von der Kommission f<span style="color: #ddbb00;">&amp;uuml;</span>r internationale Standards f<span style="color: #ddbb00;">&amp;uuml;</span>r
    Softwareanwendungen in synchronen Anlagen verwendet wird.<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2008/11/tabellen-unter-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Statistiken</title>
		<link>http://yoschi.cc/2008/10/blog-statistiken/</link>
		<comments>http://yoschi.cc/2008/10/blog-statistiken/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 20:14:09 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Statistiken]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=496</guid>
		<description><![CDATA[Bei Yoda bin ich auf Mint aufmerksam geworden dass Statistiken vom Blog erstellt. Ausprobiert habe ich Mint nicht denn ich sehe es nicht ein für etwas 30 $ zu zahlen wenn ich das umsonst, sogar OpenSource und ohne gefrickel bekomme. Mittels FireStats (Live Demo) kriege ich schon gute Daten und wer das viel genauer haben [...]]]></description>
			<content:encoded><![CDATA[<p>Bei <a href="http://blog.yoda.ch/blogging/wordpress-mit-mint-verfolgen" class="liexternal">Yoda</a> bin ich auf <a href="http://haveamint.com/" class="liexternal">Mint</a> aufmerksam geworden dass Statistiken vom Blog erstellt.</p>
<p>Ausprobiert habe ich <a href="http://haveamint.com/" class="liexternal">Mint</a> nicht denn ich sehe es nicht ein für etwas 30 $ zu zahlen wenn ich das umsonst,  sogar OpenSource und ohne gefrickel bekomme.</p>
<p>Mittels <a href="http://firestats.cc/wiki/InstallUpgrade" class="liexternal">FireStats</a> (<a href="http://demo.firestats.cc/firestats/" class="liexternal">Live Demo</a>) kriege ich schon gute Daten und wer das viel genauer haben will nimmt <a href="http://wordpress.org/extend/plugins/statpress-reloaded/" class="liwp">StatPress Reloaded</a> (<a href="http://wordpress.org/extend/plugins/statpress-reloaded/screenshots/" class="liwp">Screenshots</a>).</p>
<p>Gefunden habe ich noch <a href="http://wordpress.org/extend/plugins/wassup/" class="liwp">WassUp</a> und <a href="http://www.woopra.com/" class="liexternal">Woopra</a> (benötigt Java!) was ich leider noch nicht getestet habe.</p>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2008/10/blog-statistiken/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7</title>
		<link>http://yoschi.cc/2008/10/wordpress-27/</link>
		<comments>http://yoschi.cc/2008/10/wordpress-27/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 18:47:49 +0000</pubDate>
		<dc:creator>Yoschi</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://yoschi.cc/blog/?p=453</guid>
		<description><![CDATA[WordPress 2.7 ist nicht eine zukünftige neue WordPress Version wie jede andere. Es beinhaltet neue Verbesserungen die das bloggen viel mehr Spass macht. Endlich muss man nicht mehr die Updates selber durchführen dies kann WordPress nun selber machen wer will kann das aber manuell machen. Außerdem Plugins von WordPress.org kann man über ein Menü wie [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.7 ist nicht eine zukünftige neue <a href="http://wordpress-deutschland.org/" class="liexternal">WordPress</a> Version wie jede andere.</p>
<p>Es beinhaltet neue Verbesserungen die das bloggen viel mehr Spass macht.</p>
<p>Endlich muss man nicht mehr die Updates selber durchführen dies kann WordPress nun selber machen wer will kann das aber manuell machen. Außerdem Plugins von <a href="http://wordpress.org/extend/plugins/" class="liwp">WordPress.org</a>  kann man über ein Menü wie ein Firefox Plugin installieren endlich muss man nicht mehr selber die Plugin Dateien hochladen.</p>
<p>Die hochgeladene Daten von der Mediathek werden nendlich icht mehr an die Beiträge gebunden <img src='http://yoschi.cc/wp-content/plugins/tango-smilies/tango/face-smile-big.png' alt=':-D' class='wp-smiley' /> </p>
<p>Das neue Layout, wo ich mich schnell zurecht fand, gefällt mir sehr <img src='http://yoschi.cc/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>Erscheinen soll WordPress anfangs November worauf ich mich riesig freue denn das ständige hochladen von Plugins habe ich langsam leid <img src='http://yoschi.cc/wp-content/plugins/tango-smilies/tango/face-sad.png' alt=':(' class='wp-smiley' /> </p>
<p><a href="http://blog.wordpress-deutschland.org/2008/09/18/wordpress-27-trunk-entwicklungsstand-und-vorschau.html" class="liexternal">Quelle: Blog WordPress Deutschland</a></p>
]]></content:encoded>
			<wfw:commentRss>http://yoschi.cc/2008/10/wordpress-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
