<?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>Daniel Hüsken &#187; Allgemein</title>
	<atom:link href="http://danielhuesken.de/category/allgemein/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielhuesken.de</link>
	<description></description>
	<lastBuildDate>Sun, 22 Jan 2012 12:38:36 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ressourcen Sparen bei Ajax Calls in WordPress</title>
		<link>http://danielhuesken.de/ressourcen-sparen-bei-ajax-calls-in-wordpress/</link>
		<comments>http://danielhuesken.de/ressourcen-sparen-bei-ajax-calls-in-wordpress/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 08:27:49 +0000</pubDate>
		<dc:creator>Daniel Hüsken</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ressourcen]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://danielhuesken.de/?p=211</guid>
		<description><![CDATA[Bei meiner arbeit am Plugin BackWPup habe ich nach einer Möglichkeit gesucht Ressourcen zu sparen bei Ajax Calls und bei der Auftrags Ausführung. Die einzeige große Einsparung die ich bisher gefunden habe ist es die Übersetzungen anderer Plugins nicht mit zu laden das die enorm viel Speicher verbrauchen. Dies bringt in meiner test Installation mit 20 Plugins eine Einsparung von 31 MB auf 25,5 MB Script speicher. Da die Dateien auch [...]]]></description>
			<content:encoded><![CDATA[<p>Bei meiner arbeit am Plugin <a href="http://backwpup.com">BackWPup</a> habe ich nach einer Möglichkeit gesucht Ressourcen zu sparen bei Ajax Calls und bei der Auftrags Ausführung. Die einzeige große Einsparung die ich bisher gefunden habe ist es die Übersetzungen anderer Plugins nicht mit zu laden das die enorm viel Speicher verbrauchen. Dies bringt in meiner test Installation mit 20 Plugins eine Einsparung von <strong>31</strong> MB auf <strong>25,5</strong> MB Script speicher. Da die Dateien auch nicht geöffnet werden wird das auch noch eine Einsparung bringen die ich im Moment nicht beziffern kann.</p>
<p>Hier die Umsetzung:<br />
Wichtig ist hierbei das ich nur die Übersetzungen nicht lade wenn es sich um Calls meines Plugins handelt.</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'PLUGIN_MENU_PAGES'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'page1,page2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">defined</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DOING_AJAX'</span><span style="color: #009900;">&#41;</span> and DOING_AJAX and <span style="color: #990000;">in_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'backwpupajaxpage'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span><span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">','</span><span style="color: #339933;">,</span>PLUGIN_MENU_PAGES<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'override_load_textdomain'</span><span style="color: #339933;">,</span> <span style="color: #990000;">create_function</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'$default, $domain, $mofile'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'if ($domain==&quot;textdomain&quot;) return $default; else return true;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>Zusätzlich musste ich noch einbauen das mein Plugin als erstes geladen wird:</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'PLGUNINNAME_PLUGIN_BASENAME'</span><span style="color: #339933;">,</span>plugin_basename<span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">__FILE__</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> pluginname_first_plugin<span style="color: #009900;">&#40;</span><span style="color: #000088;">$newvalue</span><span style="color: #339933;">,</span> <span style="color: #000088;">$oldvalue</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">is_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$newvalue</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$newvalue</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">&lt;</span><span style="color: #990000;">count</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$newvalue</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$newvalue</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">==</span>PLGUNINNAME_PLUGIN_BASENAME<span style="color: #009900;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$newvalue</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #009900;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #990000;">array_unshift</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$newvalue</span><span style="color: #339933;">,</span>PLGUNINNAME_PLUGIN_BASENAME<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">return</span> <span style="color: #000088;">$newvalue</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'pre_update_option_active_plugins'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'pluginname_first_plugin'</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>Vielleicht kennt ja noch jemand eine Lösung die Ressourcen weiter zu optimieren und die WordPress eigene Ajax Behandlung zu nutzen&#8230;</count></code></p>
<hr /><h3>Ähnliche Beiträge:</h3><ul><li><a href="http://danielhuesken.de/minimeta-wiget-bei-wordpressorg/" rel="bookmark" title="Permanent Link: MiniMeta Wiget bei WordPress.org">MiniMeta Wiget bei WordPress.org</a></li><li><a href="http://danielhuesken.de/unitymedia-fritzbox-6360-erfahrungen/" rel="bookmark" title="Permanent Link: Unitymedia Fritz!Box 6360 Erfahrungen">Unitymedia Fritz!Box 6360 Erfahrungen</a></li><li><a href="http://danielhuesken.de/blog-aktualisiert-auf-wordpress-25-de/" rel="bookmark" title="Permanent Link: Blog Aktualisiert auf WordPress 2.5 DE">Blog Aktualisiert auf WordPress 2.5 DE</a></li><li><a href="http://danielhuesken.de/minimeta-widget-und-backwpup-update/" rel="bookmark" title="Permanent Link: MiniMeta Widget und BackWPup Update">MiniMeta Widget und BackWPup Update</a></li><li><a href="http://danielhuesken.de/backwpup-sicherung-fuer-deinen-wp-plog/" rel="bookmark" title="Permanent Link: BackWPup: Sicherung für deinen WP Plog">BackWPup: Sicherung für deinen WP Plog</a></li></ul><hr /><p style="float:right"><img src="http://danielhuesken.de/favicon.ico" alt="Daniel H&uuml;sken Favicon"></p><br /><p><small>&copy; <a href="http://danielhuesken.de/">Daniel H&uuml;sken</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 3b1b15b936cf0c4552fd22f442573dbf)</small></p><p style="padding:2px 5px; background-color: #ededed; border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; -moz-border-radius-bottomleft: 10px; -webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -webkit-border-bottom-left-radius: 10px;">
Danke für das Abonnieren meines <a href="http://danielhuesken.de/feed/">Feed</a>! Feed gefällt? <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=daniel%40huesken-net%2ede&item_name=Daniel%20Huesken%20Donation&item_number=Donation&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=DE&bn=PP%2dDonationsBF&charset=UTF%2d8" alt="Paypal Donate">Unterst&uuml;tzen</a> &middot; <a href="http://flattr.com/thing/32224/Daniel-Husken" alt="Flattr this">Flattr</a> &middot; <a href="http://danielhuesken.de/ressourcen-sparen-bei-ajax-calls-in-wordpress/#comments" title="zu den Kommentaren">Kommentieren</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://danielhuesken.de/ressourcen-sparen-bei-ajax-calls-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 add_contextual_help deprecated</title>
		<link>http://danielhuesken.de/wordpress-3-3-add_contextual_help-deprecated/</link>
		<comments>http://danielhuesken.de/wordpress-3-3-add_contextual_help-deprecated/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 15:17:51 +0000</pubDate>
		<dc:creator>Daniel Hüsken</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://danielhuesken.de/?p=209</guid>
		<description><![CDATA[Eine einfache Möglichkeit festzustellen ob man mit &#8220;add_contextual_help()&#8221; oder &#8220;get_current_screen()->add_help_tab&#8221; arbeiten muss um die abwärts Kompatibilität zu behalten. if &#40;method_exists&#40;get_current_screen&#40;&#41;,'add_help_tab'&#41;&#41; &#123; &#160; &#160; get_current_screen&#40;&#41;-&#62;add_help_tab&#40; array&#40; &#160; &#160; &#160; &#160; 'id' =&#62; 'plugininfo', &#160; &#160; &#160; &#160; 'title' =&#62; 'Plugin Info', &#160; &#160; &#160; &#160; 'content' =&#62; '&#60;p&#62;Text&#60;/p&#62;'&#41; &#41;; &#125; elseif &#40;function_exists&#40;'add_contextual_help'&#41;&#41; &#123; &#160; &#160; add_contextual_help&#40; [...]]]></description>
			<content:encoded><![CDATA[<p>Eine einfache Möglichkeit festzustellen ob man mit &#8220;add_contextual_help()&#8221; oder &#8220;get_current_screen()->add_help_tab&#8221; arbeiten muss um die abwärts Kompatibilität zu behalten.</p>
<div class="codecolorer-container php dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">method_exists</span><span style="color: #009900;">&#40;</span>get_current_screen<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'add_help_tab'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; get_current_screen<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_help_tab</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">'id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'plugininfo'</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Plugin Info'</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;">'content'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;p&gt;Text&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'add_contextual_help'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; add_contextual_help<span style="color: #009900;">&#40;</span> get_current_screen<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&lt;p&gt;Text&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
<hr /><h3>Ähnliche Beiträge:</h3><ul><li><a href="http://danielhuesken.de/blog-aktualisiert-auf-wordpress-25-de/" rel="bookmark" title="Permanent Link: Blog Aktualisiert auf WordPress 2.5 DE">Blog Aktualisiert auf WordPress 2.5 DE</a></li><li><a href="http://danielhuesken.de/minimeta-widget-und-backwpup-update/" rel="bookmark" title="Permanent Link: MiniMeta Widget und BackWPup Update">MiniMeta Widget und BackWPup Update</a></li><li><a href="http://danielhuesken.de/minimeta-wiget-bei-wordpressorg/" rel="bookmark" title="Permanent Link: MiniMeta Wiget bei WordPress.org">MiniMeta Wiget bei WordPress.org</a></li><li><a href="http://danielhuesken.de/backwpup-sicherung-fuer-deinen-wp-plog/" rel="bookmark" title="Permanent Link: BackWPup: Sicherung für deinen WP Plog">BackWPup: Sicherung für deinen WP Plog</a></li><li><a href="http://danielhuesken.de/forum-abgeschaltet/" rel="bookmark" title="Permanent Link: Forum abgeschaltet">Forum abgeschaltet</a></li></ul><hr /><p style="float:right"><img src="http://danielhuesken.de/favicon.ico" alt="Daniel H&uuml;sken Favicon"></p><br /><p><small>&copy; <a href="http://danielhuesken.de/">Daniel H&uuml;sken</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 3b1b15b936cf0c4552fd22f442573dbf)</small></p><p style="padding:2px 5px; background-color: #ededed; border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; -moz-border-radius-bottomleft: 10px; -webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -webkit-border-bottom-left-radius: 10px;">
Danke für das Abonnieren meines <a href="http://danielhuesken.de/feed/">Feed</a>! Feed gefällt? <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=daniel%40huesken-net%2ede&item_name=Daniel%20Huesken%20Donation&item_number=Donation&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=DE&bn=PP%2dDonationsBF&charset=UTF%2d8" alt="Paypal Donate">Unterst&uuml;tzen</a> &middot; <a href="http://flattr.com/thing/32224/Daniel-Husken" alt="Flattr this">Flattr</a> &middot; <a href="http://danielhuesken.de/wordpress-3-3-add_contextual_help-deprecated/#comments" title="zu den Kommentaren">Kommentieren</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://danielhuesken.de/wordpress-3-3-add_contextual_help-deprecated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Update auf WP 2.7</title>
		<link>http://danielhuesken.de/blog-update-auf-wp-27/</link>
		<comments>http://danielhuesken.de/blog-update-auf-wp-27/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 08:00:07 +0000</pubDate>
		<dc:creator>Daniel Hüsken</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://danielhuesken.de/2008/12/13/blog-update-auf-wp-27/</guid>
		<description><![CDATA[So ich habe meinen Blog jetzt auch erfolgreich auf WordPress 2.7 umgestellt und kann noch keine Probleme festellen als nächstes muss ich noch das K2 Theme wieder aktualisiren. Ähnliche Beiträge:Blog Update auf WP 2.6Blog Update auf WordPress 2.3MiniMeta Widget 4.2.0 und Blog Update auf WP 2.8Geändertes ThemeWerbung und Downloads&#169; Daniel H&#252;sken, All rights reserved / [...]]]></description>
			<content:encoded><![CDATA[<p>So ich habe meinen Blog jetzt auch erfolgreich auf WordPress 2.7 umgestellt und kann noch keine Probleme festellen als nächstes muss ich noch das K2 Theme wieder aktualisiren.</p>
<hr /><h3>Ähnliche Beiträge:</h3><ul><li><a href="http://danielhuesken.de/blog-update-auf-wp-26/" rel="bookmark" title="Permanent Link: Blog Update auf WP 2.6">Blog Update auf WP 2.6</a></li><li><a href="http://danielhuesken.de/blog-update-auf-wordpress-23/" rel="bookmark" title="Permanent Link: Blog Update auf WordPress 2.3">Blog Update auf WordPress 2.3</a></li><li><a href="http://danielhuesken.de/minimeta-widget-4-2-0-und-blog-update-auf-wp-2-8/" rel="bookmark" title="Permanent Link: MiniMeta Widget 4.2.0 und Blog Update auf WP 2.8">MiniMeta Widget 4.2.0 und Blog Update auf WP 2.8</a></li><li><a href="http://danielhuesken.de/geaendertes-theme/" rel="bookmark" title="Permanent Link: Geändertes Theme">Geändertes Theme</a></li><li><a href="http://danielhuesken.de/werbung-und-downloads/" rel="bookmark" title="Permanent Link: Werbung und Downloads">Werbung und Downloads</a></li></ul><hr /><p style="float:right"><img src="http://danielhuesken.de/favicon.ico" alt="Daniel H&uuml;sken Favicon"></p><br /><p><small>&copy; <a href="http://danielhuesken.de/">Daniel H&uuml;sken</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 3b1b15b936cf0c4552fd22f442573dbf)</small></p><p style="padding:2px 5px; background-color: #ededed; border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; -moz-border-radius-bottomleft: 10px; -webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -webkit-border-bottom-left-radius: 10px;">
Danke für das Abonnieren meines <a href="http://danielhuesken.de/feed/">Feed</a>! Feed gefällt? <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=daniel%40huesken-net%2ede&item_name=Daniel%20Huesken%20Donation&item_number=Donation&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=DE&bn=PP%2dDonationsBF&charset=UTF%2d8" alt="Paypal Donate">Unterst&uuml;tzen</a> &middot; <a href="http://flattr.com/thing/32224/Daniel-Husken" alt="Flattr this">Flattr</a> &middot; <a href="http://danielhuesken.de/blog-update-auf-wp-27/#comments" title="zu den Kommentaren">Kommentieren</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://danielhuesken.de/blog-update-auf-wp-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Update von 4 auf 5</title>
		<link>http://danielhuesken.de/mysql-update-von-4-auf-5/</link>
		<comments>http://danielhuesken.de/mysql-update-von-4-auf-5/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 17:23:05 +0000</pubDate>
		<dc:creator>Daniel Hüsken</dc:creator>
				<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://danielhuesken.de/2007/08/06/mysql-upate-von-4-auf-5/</guid>
		<description><![CDATA[Ich habe gestern meinen Blog auf auf MySQL 5 Upgedatet wegen der zukünftigen Unterstützung von WordPress und einiger Plugin. Deswegen war er einige Zeit nicht zu erreichen. Mein Web Hoster 1und1 bietet es mittlerweile an die Datenbank umzustellen dafür muss man aber erst die alte sichern und dann löschen bevor mann die neue anlegen kann [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe gestern meinen Blog auf auf MySQL 5 Upgedatet wegen der zukünftigen Unterstützung von WordPress und einiger Plugin. Deswegen war er einige Zeit nicht zu erreichen. Mein Web Hoster <a href="http://www.1und1.de" target="_blank">1und1</a> bietet es mittlerweile an die Datenbank umzustellen dafür muss man aber erst die alte sichern und dann löschen bevor mann die neue anlegen kann vor allem wenn man nur eine Datenbank im Paket hat.  Dann noch etwas probieren mit dem Import und den Charaktersset Einstellungen und die Umstellung wahr erfolgt.</p>
<hr /><h3>Ähnliche Beiträge:</h3><ul><li><a href="http://danielhuesken.de/166/" rel="bookmark" title="Permanent Link: "></a></li><li><a href="http://danielhuesken.de/geaendertes-theme/" rel="bookmark" title="Permanent Link: Geändertes Theme">Geändertes Theme</a></li><li><a href="http://danielhuesken.de/minimeta-widget-355/" rel="bookmark" title="Permanent Link: MiniMeta Widget 3.5.5">MiniMeta Widget 3.5.5</a></li><li><a href="http://danielhuesken.de/portfolio/" rel="bookmark" title="Permanent Link: Portfolio">Portfolio</a></li><li><a href="http://danielhuesken.de/minimeta-widget-version-260/" rel="bookmark" title="Permanent Link: MiniMeta Widget Version 2.6.0">MiniMeta Widget Version 2.6.0</a></li></ul><hr /><p style="float:right"><img src="http://danielhuesken.de/favicon.ico" alt="Daniel H&uuml;sken Favicon"></p><br /><p><small>&copy; <a href="http://danielhuesken.de/">Daniel H&uuml;sken</a>, All rights reserved / Alle Rechte vorbehalten. (ID: 3b1b15b936cf0c4552fd22f442573dbf)</small></p><p style="padding:2px 5px; background-color: #ededed; border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; -moz-border-radius-bottomleft: 10px; -webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -webkit-border-bottom-left-radius: 10px;">
Danke für das Abonnieren meines <a href="http://danielhuesken.de/feed/">Feed</a>! Feed gefällt? <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=daniel%40huesken-net%2ede&item_name=Daniel%20Huesken%20Donation&item_number=Donation&no_shipping=0&no_note=1&tax=0&currency_code=EUR&lc=DE&bn=PP%2dDonationsBF&charset=UTF%2d8" alt="Paypal Donate">Unterst&uuml;tzen</a> &middot; <a href="http://flattr.com/thing/32224/Daniel-Husken" alt="Flattr this">Flattr</a> &middot; <a href="http://danielhuesken.de/mysql-update-von-4-auf-5/#comments" title="zu den Kommentaren">Kommentieren</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://danielhuesken.de/mysql-update-von-4-auf-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

