<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Kommentare für Webeo Webagentur</title>
	<atom:link href="http://www.webeo.ch/comments/feed" rel="self" type="application/rss+xml" />
	<link>https://www.webeo.ch</link>
	<description>kreativ und modern</description>
	<lastBuildDate>Sat, 28 Jan 2012 13:16:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Kommentar zu WordPress fernsteuern mittels XML-RPC von Roman</title>
		<link>https://www.webeo.ch/journal/wordpress-fernsteuern-mittels-xml-rpc#comment-69</link>
		<dc:creator>Roman</dc:creator>
		<pubDate>Sat, 28 Jan 2012 13:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=1018#comment-69</guid>
		<description>Hi Fredrik

The location of your class which extends from &lt;code&gt;wp_xmlrpc_server&lt;/code&gt; (e.g. &lt;code&gt;Webeo_XMLRPC&lt;/code&gt;) depends on your extension. Is it written as a plugin or inside a theme?

&lt;b&gt;Plugin&lt;/b&gt;
If you have written your extension as a plugin, you should place the file in the plugin directory and include the file on the &lt;code&gt;plugins_loaded&lt;/code&gt; action hook.

For example:
[php]
// wp-content/plugins/my-extension/my-extension.php

add_action(&#039;plugins_loaded&#039;, &#039;webeo_plugin_setup&#039;);
function webeo_plugin_setup() {
    // The file should be placed in the same directory as your my-extension.php file
    require_once &#039;Webeo_XMLRPC.php&#039;;
    
    add_filter(&#039;wp_xmlrpc_server_class&#039;, array(&#039;Webeo_XMLRPC&#039;, &#039;webeo_getName&#039;));
}
[/php]


&lt;b&gt;Theme&lt;/b&gt;
If your extension is only theme related, you could include the &lt;code&gt;Webeo_XMLRPC&lt;/code&gt; class inside your &lt;code&gt;functions.php&lt;/code&gt; file. The filter for &lt;code&gt;wp_xmlrpc_server_class&lt;/code&gt; should be attached to the &lt;code&gt;after_setup_theme&lt;/code&gt; action hook.

For example:
[php]
// wp-content/themes/my-theme/functions.php

add_action(&#039;after_setup_theme&#039;, &#039;webeo_theme_setup&#039;);
function webeo_theme_setup() {
    // The file should be placed in the same directory as your functions.php file
    require_once &#039;Webeo_XMLRPC.php&#039;;
    
    add_filter(&#039;wp_xmlrpc_server_class&#039;, array(&#039;Webeo_XMLRPC&#039;, &#039;webeo_getName&#039;));
}
[/php]

Sidenote: Instead of a function you could also put the plugin/theme setup functions inside a class and pass it as an array to &lt;code&gt;add_action()&lt;/code&gt;.

And yes, this way is update-proven. The only thing which can change are the names of the XMLRPC-WordPress filter, the parent class or the methods. But your code will not be touched by WordPress in any way. In addition, you should also add a prefix to your XMLRPC methods as I do with &lt;code&gt;webeo_&lt;/code&gt;. This way you don&#039;t overwrite the methods of the parent class. 

Cheers
Roman</description>
		<content:encoded><![CDATA[<p>Hi Fredrik</p>
<p>The location of your class which extends from <code>wp_xmlrpc_server</code> (e.g. <code>Webeo_XMLRPC</code>) depends on your extension. Is it written as a plugin or inside a theme?</p>
<p><b>Plugin</b><br />
If you have written your extension as a plugin, you should place the file in the plugin directory and include the file on the <code>plugins_loaded</code> action hook.</p>
<p>For example:</p>
<pre class="brush: php; title: ; notranslate">
// wp-content/plugins/my-extension/my-extension.php

add_action('plugins_loaded', 'webeo_plugin_setup');
function webeo_plugin_setup() {
    // The file should be placed in the same directory as your my-extension.php file
    require_once 'Webeo_XMLRPC.php';

    add_filter('wp_xmlrpc_server_class', array('Webeo_XMLRPC', 'webeo_getName'));
}
</pre>
<p><b>Theme</b><br />
If your extension is only theme related, you could include the <code>Webeo_XMLRPC</code> class inside your <code>functions.php</code> file. The filter for <code>wp_xmlrpc_server_class</code> should be attached to the <code>after_setup_theme</code> action hook.</p>
<p>For example:</p>
<pre class="brush: php; title: ; notranslate">
// wp-content/themes/my-theme/functions.php

add_action('after_setup_theme', 'webeo_theme_setup');
function webeo_theme_setup() {
    // The file should be placed in the same directory as your functions.php file
    require_once 'Webeo_XMLRPC.php';

    add_filter('wp_xmlrpc_server_class', array('Webeo_XMLRPC', 'webeo_getName'));
}
</pre>
<p>Sidenote: Instead of a function you could also put the plugin/theme setup functions inside a class and pass it as an array to <code>add_action()</code>.</p>
<p>And yes, this way is update-proven. The only thing which can change are the names of the XMLRPC-WordPress filter, the parent class or the methods. But your code will not be touched by WordPress in any way. In addition, you should also add a prefix to your XMLRPC methods as I do with <code>webeo_</code>. This way you don't overwrite the methods of the parent class. </p>
<p>Cheers<br />
Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Mehrere VirtualHosts mit Zend Server CE von Roman</title>
		<link>https://www.webeo.ch/journal/mehrere-virtualhosts-mit-zend-server-ce#comment-68</link>
		<dc:creator>Roman</dc:creator>
		<pubDate>Sat, 28 Jan 2012 12:54:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=821#comment-68</guid>
		<description>Hallo Toni

Danke für dein Feedback. Freut mich das es dich zum Ziel geführt hat. 

Gruss
Roman</description>
		<content:encoded><![CDATA[<p>Hallo Toni</p>
<p>Danke für dein Feedback. Freut mich das es dich zum Ziel geführt hat. </p>
<p>Gruss<br />
Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu WordPress fernsteuern mittels XML-RPC von Fredrik Lindell</title>
		<link>https://www.webeo.ch/journal/wordpress-fernsteuern-mittels-xml-rpc#comment-67</link>
		<dc:creator>Fredrik Lindell</dc:creator>
		<pubDate>Sat, 28 Jan 2012 10:39:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=1018#comment-67</guid>
		<description>Hi,

I have seen this code snippet (the one where: class Webeo_XMLRPC extends wp_xmlrpc_server) on a couple of pages and I am trying to get it to work.

1. Where should I put the php file containig the wp_xmlrpc_server extend?
2. Where should I put the php file containing the add filter?
3. Will this prevent new WP updates to overwrite my extensions or do I need to change something when WP is updated?

Thanks in advance,

BR,
Fredrik</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have seen this code snippet (the one where: class Webeo_XMLRPC extends wp_xmlrpc_server) on a couple of pages and I am trying to get it to work.</p>
<p>1. Where should I put the php file containig the wp_xmlrpc_server extend?<br />
2. Where should I put the php file containing the add filter?<br />
3. Will this prevent new WP updates to overwrite my extensions or do I need to change something when WP is updated?</p>
<p>Thanks in advance,</p>
<p>BR,<br />
Fredrik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Mehrere VirtualHosts mit Zend Server CE von toni</title>
		<link>https://www.webeo.ch/journal/mehrere-virtualhosts-mit-zend-server-ce#comment-66</link>
		<dc:creator>toni</dc:creator>
		<pubDate>Thu, 29 Dec 2011 17:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=821#comment-66</guid>
		<description>Danke für das Tutorial!
Ich habe einfach nicht gesehen das die Zeile &quot;Include conf/extra/httpd-vhosts.conf&quot; auskommentiert war und habe mich die ganze Zeit gewundert, warum er die Datei nicht akzeptiert.</description>
		<content:encoded><![CDATA[<p>Danke für das Tutorial!<br />
Ich habe einfach nicht gesehen das die Zeile "Include conf/extra/httpd-vhosts.conf" auskommentiert war und habe mich die ganze Zeit gewundert, warum er die Datei nicht akzeptiert.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu WordPress fernsteuern mittels XML-RPC von Roman</title>
		<link>https://www.webeo.ch/journal/wordpress-fernsteuern-mittels-xml-rpc#comment-62</link>
		<dc:creator>Roman</dc:creator>
		<pubDate>Mon, 15 Aug 2011 21:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=1018#comment-62</guid>
		<description>Hallo Thomas.

Freut mich zu hören, das der Artikel hilfreich war. Interessanter Anwendungsbereich ;).

Gruss
Roman</description>
		<content:encoded><![CDATA[<p>Hallo Thomas.</p>
<p>Freut mich zu hören, das der Artikel hilfreich war. Interessanter Anwendungsbereich <img src='https://www.webeo.ch/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Gruss<br />
Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu WordPress fernsteuern mittels XML-RPC von thomas</title>
		<link>https://www.webeo.ch/journal/wordpress-fernsteuern-mittels-xml-rpc#comment-61</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Sun, 14 Aug 2011 12:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=1018#comment-61</guid>
		<description>super artikel, hat mir sehr geholfen. konnte nun mit hilfe von custom post types, custom fields und den mit deiner hilfe hinzugefügten xmlrpc erweiterungen ein leistungsstarkes und simples wordpress cms auf die beine stellen. So kann ich mir die Daten anliefern lassen wie ich sie brauche. Für mein flash frontend per xmlrpc und für das html frontend per standard wordpress syntax.</description>
		<content:encoded><![CDATA[<p>super artikel, hat mir sehr geholfen. konnte nun mit hilfe von custom post types, custom fields und den mit deiner hilfe hinzugefügten xmlrpc erweiterungen ein leistungsstarkes und simples wordpress cms auf die beine stellen. So kann ich mir die Daten anliefern lassen wie ich sie brauche. Für mein flash frontend per xmlrpc und für das html frontend per standard wordpress syntax.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Abspielen von .mkv im neuen Quicktime Player 10 von Leon</title>
		<link>https://www.webeo.ch/journal/mkv-im-neuen-quicktime-player-10-abspielen#comment-60</link>
		<dc:creator>Leon</dc:creator>
		<pubDate>Mon, 08 Aug 2011 19:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://webeo.ch/?p=6#comment-60</guid>
		<description>Leider ist der Link nicht mehr errecihbar!
Dieser Tipp ist immer noch anwendbar

Gruss
Leon</description>
		<content:encoded><![CDATA[<p>Leider ist der Link nicht mehr errecihbar!<br />
Dieser Tipp ist immer noch anwendbar</p>
<p>Gruss<br />
Leon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu WordPress fernsteuern mittels XML-RPC von Roman</title>
		<link>https://www.webeo.ch/journal/wordpress-fernsteuern-mittels-xml-rpc#comment-59</link>
		<dc:creator>Roman</dc:creator>
		<pubDate>Wed, 13 Jul 2011 20:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=1018#comment-59</guid>
		<description>Hallo Jonathan

Danke für dein Feedback. 
In der Tat. Der Artikel könnte generell mal eine Auffrischung gebrauchen. Ich werd mich mal in einer ruhigen Minuten dran setzen. ;)

Gruss Roman</description>
		<content:encoded><![CDATA[<p>Hallo Jonathan</p>
<p>Danke für dein Feedback.<br />
In der Tat. Der Artikel könnte generell mal eine Auffrischung gebrauchen. Ich werd mich mal in einer ruhigen Minuten dran setzen. <img src='https://www.webeo.ch/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Gruss Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu WordPress fernsteuern mittels XML-RPC von Jonathan</title>
		<link>https://www.webeo.ch/journal/wordpress-fernsteuern-mittels-xml-rpc#comment-58</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Wed, 13 Jul 2011 20:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=1018#comment-58</guid>
		<description>Hi,

der Satz &quot;Dies da der Filter anschliessend über new $filter eine neue Instanz der XML-RPC-Server Klasse erstellt.&quot; klingt irgendwie komisch..

Ansonsten schön geschriebener Artikel</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>der Satz "Dies da der Filter anschliessend über new $filter eine neue Instanz der XML-RPC-Server Klasse erstellt." klingt irgendwie komisch..</p>
<p>Ansonsten schön geschriebener Artikel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Quicktipp: User Homes unter Zend Server CE von rofflox</title>
		<link>https://www.webeo.ch/journal/quicktipp-user-homes-unter-zend-server-ce#comment-57</link>
		<dc:creator>rofflox</dc:creator>
		<pubDate>Wed, 25 May 2011 13:23:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.webeo.ch/?p=873#comment-57</guid>
		<description>Freut mich, das es nun doch noch geklappt hat. ;)</description>
		<content:encoded><![CDATA[<p>Freut mich, das es nun doch noch geklappt hat. <img src='https://www.webeo.ch/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.webeo.ch @ 2012-02-06 09:04:34 -->
