<?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>[wordpress plugins] 投稿をmixiに同時投稿するWp-MixiPublisher導入 へのコメント</title>
	<atom:link href="http://www.odysseygate.com/archives/776/feed" rel="self" type="application/rss+xml" />
	<link>http://www.odysseygate.com/archives/776</link>
	<description>WordPressでつづる、おでのこの道わが旅。</description>
	<pubDate>Mon, 13 Oct 2008 23:36:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-hemorrhage</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>テヌノホソミチ Ver.7 β より</title>
		<link>http://www.odysseygate.com/archives/776#comment-29187</link>
		<dc:creator>テヌノホソミチ Ver.7 β</dc:creator>
		<pubDate>Thu, 09 Aug 2007 11:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-29187</guid>
		<description>&lt;strong&gt;当面の課題が解決...&lt;/strong&gt;

・メールでの投稿時に文字化けする
　→WordPress：SOMY.JP ≫ Blog Archive ≫ SOMY Mobile Gateの導入で解決しました。
・投稿後に自動で記事が反映されない
　→自動更新は難しかったので、いちい...</description>
		<content:encoded><![CDATA[<p><strong>当面の課題が解決&#8230;</strong></p>
<p>・メールでの投稿時に文字化けする<br />
　→WordPress：SOMY.JP ≫ Blog Archive ≫ SOMY Mobile Gateの導入で解決しました。<br />
・投稿後に自動で記事が反映されない<br />
　→自動更新は難しかったので、いちい&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>おで より</title>
		<link>http://www.odysseygate.com/archives/776#comment-29082</link>
		<dc:creator>おで</dc:creator>
		<pubDate>Tue, 07 Aug 2007 15:33:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-29082</guid>
		<description>＞キミさん
wp_get_current_user()はプラグインではなくてコアで定義されてる関数なので、mixipublisherとは別のところでエラーを出してませんか～？

ログイン権限回り（文字コードがEUCとか、caapabilitiesとか）が怪しいような気がします。</description>
		<content:encoded><![CDATA[<p>＞キミさん<br />
wp_get_current_user()はプラグインではなくてコアで定義されてる関数なので、mixipublisherとは別のところでエラーを出してませんか～？</p>
<p>ログイン権限回り（文字コードがEUCとか、caapabilitiesとか）が怪しいような気がします。</p>
]]></content:encoded>
	</item>
	<item>
		<title>キミ より</title>
		<link>http://www.odysseygate.com/archives/776#comment-29000</link>
		<dc:creator>キミ</dc:creator>
		<pubDate>Mon, 06 Aug 2007 09:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-29000</guid>
		<description>すばらしいプラグイン！と思いインストール。
プラグインを有効化し、mixiのメール、パスワード設定やmixi側の設定（mixi日記に変更）しましたが、記事投稿の際、下記のようなエラーがでます。。。
Fatal error: Call to undefined function: wp_get_current_user() in /usr/home/gt111127/html/blog/wp-content/plugins/wp-mixipublisher.php on line 240

ちなみにwp-mixipublisherの240行目は下記の太字部分のようになっていました。

    function executePublishToMixi($postId, $isModify=false) {
        if(in_array($postId, $this-&#62;_publishedId)) {
            return $postId;
        }
        $settingVO = $this-&#62;getWpSetting();
        if(!$settingVO-&#62;getParam('user_id')) {
            return $postId;
        }
        
        $post = get_post($postId);
        
        // 公開しない場合は終了
        if($post-&#62;post_status != 'publish') {
            &lt;em&gt;return $postId;&lt;/em&gt;
        }
        
        // 1.0.0 RC2: XML-RPCリクエストの場合ディフォルト設定を優先する
        if(defined('XMLRPC_REQUEST') &#38;&#38; XMLRPC_REQUEST) {
            // ディフォルト設定が有効でなければ終了
            if($settingVO-&#62;getParam('default') != 1) {
                return $postId;
            }

だれかわかる方教えてくださーい。</description>
		<content:encoded><![CDATA[<p>すばらしいプラグイン！と思いインストール。<br />
プラグインを有効化し、mixiのメール、パスワード設定やmixi側の設定（mixi日記に変更）しましたが、記事投稿の際、下記のようなエラーがでます。。。<br />
Fatal error: Call to undefined function: wp_get_current_user() in /usr/home/gt111127/html/blog/wp-content/plugins/wp-mixipublisher.php on line 240</p>
<p>ちなみにwp-mixipublisherの240行目は下記の太字部分のようになっていました。</p>
<p>    function executePublishToMixi($postId, $isModify=false) {<br />
        if(in_array($postId, $this-&gt;_publishedId)) {<br />
            return $postId;<br />
        }<br />
        $settingVO = $this-&gt;getWpSetting();<br />
        if(!$settingVO-&gt;getParam(&#8217;user_id&#8217;)) {<br />
            return $postId;<br />
        }</p>
<p>        $post = get_post($postId);</p>
<p>        // 公開しない場合は終了<br />
        if($post-&gt;post_status != &#8216;publish&#8217;) {<br />
            <em>return $postId;</em><br />
        }</p>
<p>        // 1.0.0 RC2: XML-RPCリクエストの場合ディフォルト設定を優先する<br />
        if(defined(&#8217;XMLRPC_REQUEST&#8217;) &amp;&amp; XMLRPC_REQUEST) {<br />
            // ディフォルト設定が有効でなければ終了<br />
            if($settingVO-&gt;getParam(&#8217;default&#8217;) != 1) {<br />
                return $postId;<br />
            }</p>
<p>だれかわかる方教えてくださーい。</p>
]]></content:encoded>
	</item>
	<item>
		<title>おで より</title>
		<link>http://www.odysseygate.com/archives/776#comment-28468</link>
		<dc:creator>おで</dc:creator>
		<pubDate>Fri, 03 Aug 2007 10:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-28468</guid>
		<description>＞めぐみさん
おやー、何ででしょうね。
上にも書いていますが、エントリの内容によってはmixi側でエラーを出してしまって、途中で切れてしまうような投稿ができてしまいます。
配布元さんでも更新の様子がないようなので、ちょっと難しそうですねぇ。</description>
		<content:encoded><![CDATA[<p>＞めぐみさん<br />
おやー、何ででしょうね。<br />
上にも書いていますが、エントリの内容によってはmixi側でエラーを出してしまって、途中で切れてしまうような投稿ができてしまいます。<br />
配布元さんでも更新の様子がないようなので、ちょっと難しそうですねぇ。</p>
]]></content:encoded>
	</item>
	<item>
		<title>めぐみ より</title>
		<link>http://www.odysseygate.com/archives/776#comment-27344</link>
		<dc:creator>めぐみ</dc:creator>
		<pubDate>Sun, 29 Jul 2007 16:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-27344</guid>
		<description>はじめまして。いつもこちらでお勉強させていただいてます。

mixiとブログを併用している私には、このプラグインは凄く魅力的なのですが（現在は、mixiにも落としたい記事はコピペで対応してます/苦笑）、どうやってもmixiに記事が反映されません…。
mixi側のセキュリティ強化のせいだと仰る方もいらっしゃるようですが、Odyさんはもちろん、他にも成功されてる方がいらっしゃるようなので、どうしてダメなんだろう…とがっくり。うまくいってる方々が羨ましいです（涙）</description>
		<content:encoded><![CDATA[<p>はじめまして。いつもこちらでお勉強させていただいてます。</p>
<p>mixiとブログを併用している私には、このプラグインは凄く魅力的なのですが（現在は、mixiにも落としたい記事はコピペで対応してます/苦笑）、どうやってもmixiに記事が反映されません…。<br />
mixi側のセキュリティ強化のせいだと仰る方もいらっしゃるようですが、Odyさんはもちろん、他にも成功されてる方がいらっしゃるようなので、どうしてダメなんだろう…とがっくり。うまくいってる方々が羨ましいです（涙）</p>
]]></content:encoded>
	</item>
	<item>
		<title>おで より</title>
		<link>http://www.odysseygate.com/archives/776#comment-26118</link>
		<dc:creator>おで</dc:creator>
		<pubDate>Tue, 17 Jul 2007 13:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-26118</guid>
		<description>このプラグインのリリース後、だいぶmixi側の仕様が変わっているので、エントリによってはきちんとmixiに投稿されないことが結構あります。
みなさん、ご利用は計画的に…。</description>
		<content:encoded><![CDATA[<p>このプラグインのリリース後、だいぶmixi側の仕様が変わっているので、エントリによってはきちんとmixiに投稿されないことが結構あります。<br />
みなさん、ご利用は計画的に…。</p>
]]></content:encoded>
	</item>
	<item>
		<title>かとちゃ～はん より</title>
		<link>http://www.odysseygate.com/archives/776#comment-25907</link>
		<dc:creator>かとちゃ～はん</dc:creator>
		<pubDate>Tue, 17 Jul 2007 01:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-25907</guid>
		<description>とても有意義な情報ありがとうございます。
おかげで無事プラグインを走らせる事ができました。
自分も有意義な情報を発信出来るよう精進したいと思います。</description>
		<content:encoded><![CDATA[<p>とても有意義な情報ありがとうございます。<br />
おかげで無事プラグインを走らせる事ができました。<br />
自分も有意義な情報を発信出来るよう精進したいと思います。</p>
]]></content:encoded>
	</item>
	<item>
		<title>ClearGreen より</title>
		<link>http://www.odysseygate.com/archives/776#comment-22486</link>
		<dc:creator>ClearGreen</dc:creator>
		<pubDate>Sun, 17 Jun 2007 14:32:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-22486</guid>
		<description>&lt;strong&gt;ClearGreen mixi≫UEoﾂ､￢ﾂ､Cﾂ､-ﾂ､Tﾂ､・ﾂ､ﾂｿ...&lt;/strong&gt;

ﾂ､Eﾂ､ﾂ､ﾂ､&#124;ﾂ､iﾂ､±ﾂ､CWordPressﾂ､E×e°ﾂ､o
!OWp-MixiPublisher 1.0.0 RC2!×ﾂ､oAoﾂ､Aﾂ､eﾂ､3ﾂ､Eﾂ､Eﾂ､eﾂ､e!￠ﾂ､3ﾂ､Aﾂ､eﾂ､Eﾂｽnﾂ､ﾂ､ﾂ､ﾂｿμ-≫oﾂ､￢
mixiﾂ､EA±≫tﾂ､E￠A×ﾂ､μﾂ､iﾂ､eﾂ､eﾂ､&#124;ﾂ､Eﾂ､Eﾂ､eﾂ､Tﾂ､・ﾂ､ﾂｿ!...</description>
		<content:encoded><![CDATA[<p><strong>ClearGreen mixi≫UEoﾂ､￢ﾂ､Cﾂ､-ﾂ､Tﾂ､・ﾂ､ﾂｿ&#8230;</strong></p>
<p>ﾂ､Eﾂ､ﾂ､ﾂ､|ﾂ､iﾂ､±ﾂ､CWordPressﾂ､E×e°ﾂ､o<br />
!OWp-MixiPublisher 1.0.0 RC2!×ﾂ､oAoﾂ､Aﾂ､eﾂ､3ﾂ､Eﾂ､Eﾂ､eﾂ､e!￠ﾂ､3ﾂ､Aﾂ､eﾂ､Eﾂｽnﾂ､ﾂ､ﾂ､ﾂｿμ-≫oﾂ､￢<br />
mixiﾂ､EA±≫tﾂ､E￠A×ﾂ､μﾂ､iﾂ､eﾂ､eﾂ､|ﾂ､Eﾂ､Eﾂ､eﾂ､Tﾂ､・ﾂ､ﾂｿ!&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>大 より</title>
		<link>http://www.odysseygate.com/archives/776#comment-22463</link>
		<dc:creator>大</dc:creator>
		<pubDate>Sun, 17 Jun 2007 08:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-22463</guid>
		<description>同様のエラーが出ていましたが、こちらの方法で見事解決しました。
サンプルコードが大変参考になりました。ありがとうございます。</description>
		<content:encoded><![CDATA[<p>同様のエラーが出ていましたが、こちらの方法で見事解決しました。<br />
サンプルコードが大変参考になりました。ありがとうございます。</p>
]]></content:encoded>
	</item>
	<item>
		<title>ksnn diary &#187; Blog Archive &#187; wordpress から mixi に投稿 より</title>
		<link>http://www.odysseygate.com/archives/776#comment-21387</link>
		<dc:creator>ksnn diary &#187; Blog Archive &#187; wordpress から mixi に投稿</dc:creator>
		<pubDate>Fri, 25 May 2007 01:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.odysseygate.com/archives/776#comment-21387</guid>
		<description>[...] [wordpress plugins] 投稿をmixiに同時投稿するWp-MixiPublisher導入 [...]</description>
		<content:encoded><![CDATA[<p>[...] [wordpress plugins] 投稿をmixiに同時投稿するWp-MixiPublisher導入 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
