<?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>WEBあくまこ &#187; WordPress MU</title>
	<atom:link href="http://wb.corekuuma.com/archives/tag/wordpress-mu/feed" rel="self" type="application/rss+xml" />
	<link>http://wb.corekuuma.com</link>
	<description>WEB制作している人のメモ。</description>
	<lastBuildDate>Wed, 17 Jun 2009 07:57:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ダッシュボードへのリンクがおかしい</title>
		<link>http://wb.corekuuma.com/archives/89</link>
		<comments>http://wb.corekuuma.com/archives/89#comments</comments>
		<pubDate>Mon, 18 May 2009 07:54:00 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WPMUエラー]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[ダッシュボード]]></category>
		<category><![CDATA[管理画面]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=89</guid>
		<description><![CDATA[WPMU2.6→WPMU2.7.1にアップグレードしたときに起きた現象。
WP2.7～の管理画面で、ダッシュボードへのリンクを押すと、コンテンツの内画面になってしまいました。
本来、index.phpへのリンクが、admin.php?page=index.phpになってしまっています。
mu-plugins（pluginsも？）にindex.phpがあるのが原因で、mu-plugins内のindex.phpを削除すればOKさ！
]]></description>
			<content:encoded><![CDATA[<p>WPMU2.6→WPMU2.7.1にアップグレードしたときに起きた現象。<br />
WP2.7～の管理画面で、ダッシュボードへのリンクを押すと、コンテンツの内画面になってしまいました。</p>
<p>本来、index.phpへのリンクが、admin.php?page=index.phpになってしまっています。</p>
<p>mu-plugins（pluginsも？）にindex.phpがあるのが原因で、mu-plugins内のindex.phpを削除すればOKさ！</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/89/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XAMPPにWordPress mu</title>
		<link>http://wb.corekuuma.com/archives/78</link>
		<comments>http://wb.corekuuma.com/archives/78#comments</comments>
		<pubDate>Wed, 09 Jul 2008 07:00:49 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=78</guid>
		<description><![CDATA[XAMPPにWordPress muを入れてみました。
まず、muのいれてあるディレクトリを、http://○○.localhost/でアクセスできるようにします。
localhostのサブドメインってことね。
今回は、D:/（フォルダ名）に入れました。
次に、RewriteEngineが動くようにします。
XAMPPのhttpd.conf,httpd-vhosts.confの設定を変えます。
あとは、インストールするときにサブドメインじゃなくて、サブディレクトリ運用にすればOK。
ワイルドカードサブドメインは出来ませんでした。
それでは、ひとつずつ、手順をメモ。
Apatchの設定
1.httpd-vhosts.confの設定
C:\xampp\apache\conf\extra\httpd-vhosts.confの最後に以下を追加。
D:/（フォルダ名）のところは、muを設置したフォルダを参照。

NameVirtualHost *:80
&#60;VirtualHost *:80&#62;
    DocumentRoot C:/xampp/htdocs
    ServerName localhost
&#60;/VirtualHost&#62;

&#60;VirtualHost *:80&#62;
    DocumentRoot D:/（フォルダ名）
    ServerName ○○.localhost
&#60;/VirtualHost&#62;

&#60;Directory &#34;D:/（フォルダ名）&#34;&#62;
order deny,allow
allow from ALL
AllowOverride All
&#60;/Directory&#62;

2.httpd.confの設定
C:\xampp\apache\conf\httpd.confの119行目あたりにある、rewrite_moduleのところの#をはずし、rewrite_moduleを有効に。

LoadModule rewrite_module modules/mod_rewrite.so

3.サブドメインでlocalhostにアクセスできるようにする
C:\WINDOWS\system32\drivers\etc\hostsをテキストエディタで開き、サブドメインを追加。
127.0.0.1       localhost　のあとに、
127.0.0.1       ○○.localhost
4.XAMPPを再起動
できたら、XAMPPを再起動。忘れずに。。。
]]></description>
			<content:encoded><![CDATA[<p>XAMPPにWordPress muを入れてみました。</p>
<p>まず、muのいれてあるディレクトリを、http://○○.localhost/でアクセスできるようにします。<br />
localhostのサブドメインってことね。<br />
今回は、D:/（フォルダ名）に入れました。</p>
<p>次に、RewriteEngineが動くようにします。<br />
XAMPPのhttpd.conf,httpd-vhosts.confの設定を変えます。</p>
<p>あとは、インストールするときにサブドメインじゃなくて、サブディレクトリ運用にすればOK。<br />
ワイルドカードサブドメインは出来ませんでした。</p>
<p>それでは、ひとつずつ、手順をメモ。<span id="more-78"></span></p>
<h3>Apatchの設定</h3>
<h4>1.httpd-vhosts.confの設定</h4>
<p>C:\xampp\apache\conf\extra\httpd-vhosts.confの最後に以下を追加。<br />
D:/（フォルダ名）のところは、muを設置したフォルダを参照。</p>
<pre name="code" class="php">
NameVirtualHost *:80
&lt;VirtualHost *:80&gt;
    DocumentRoot C:/xampp/htdocs
    ServerName localhost
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
    DocumentRoot D:/（フォルダ名）
    ServerName ○○.localhost
&lt;/VirtualHost&gt;

&lt;Directory &quot;D:/（フォルダ名）&quot;&gt;
order deny,allow
allow from ALL
AllowOverride All
&lt;/Directory&gt;
</pre>
<h4>2.httpd.confの設定</h4>
<p>C:\xampp\apache\conf\httpd.confの119行目あたりにある、rewrite_moduleのところの#をはずし、rewrite_moduleを有効に。</p>
<pre name="code" class="php">
LoadModule rewrite_module modules/mod_rewrite.so
</pre>
<h4>3.サブドメインでlocalhostにアクセスできるようにする</h4>
<p>C:\WINDOWS\system32\drivers\etc\hostsをテキストエディタで開き、サブドメインを追加。</p>
<p>127.0.0.1       localhost　のあとに、<br />
127.0.0.1       ○○.localhost</p>
<h4>4.XAMPPを再起動</h4>
<p>できたら、XAMPPを再起動。忘れずに。。。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/78/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MUでSyntaxHighlighterは動きませんが</title>
		<link>http://wb.corekuuma.com/archives/74</link>
		<comments>http://wb.corekuuma.com/archives/74#comments</comments>
		<pubDate>Mon, 30 Jun 2008 13:28:37 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WPMUエラー]]></category>
		<category><![CDATA[WPMUプラグイン]]></category>
		<category><![CDATA[WPプラグイン]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[CORESERVER]]></category>
		<category><![CDATA[SyntaxHighlighter]]></category>
		<category><![CDATA[WordPress2.5]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/?p=74</guid>
		<description><![CDATA[wordpressのお話。
SyntaxHighlighterは、コードをそれっぽく表示してくれるプラグインです。
http://wordpress.org/extend/plugins/syntaxhighlighter/
こちらからダウンロードできます。
しかし、MUではそのままでは動きません。
というのも、プラグインの中に、filesフォルダがあって、その名前が不具合を起こすのです。
だから、files→fileなどに変更し、syntaxhighlighter.phpの70行目あたりを

 $this-&#62;pluginurl = apply_filters( 'agsyntaxhighlighter_url', get_bloginfo( 'wpurl' ) . '/wp-content/plugins/syntaxhighlighter/file/' );

にすればOKよ。
MUは、.htaccessでfilesをrewriteするようになってるので、filesフォルダがある場合は注意です。
当方環境はMU1.5です。
]]></description>
			<content:encoded><![CDATA[<p>wordpressのお話。<br />
SyntaxHighlighterは、コードをそれっぽく表示してくれるプラグインです。</p>
<p><a href="http://wordpress.org/extend/plugins/syntaxhighlighter/">http://wordpress.org/extend/plugins/syntaxhighlighter/</a><br />
こちらからダウンロードできます。</p>
<p>しかし、MUではそのままでは動きません。<span id="more-74"></span></p>
<p>というのも、プラグインの中に、filesフォルダがあって、その名前が不具合を起こすのです。<br />
だから、files→fileなどに変更し、syntaxhighlighter.phpの70行目あたりを</p>
<pre name="code" class="php">
 $this-&gt;pluginurl = apply_filters( 'agsyntaxhighlighter_url', get_bloginfo( 'wpurl' ) . '/wp-content/plugins/syntaxhighlighter/file/' );
</pre>
<p>にすればOKよ。</p>
<p>MUは、.htaccessでfilesをrewriteするようになってるので、filesフォルダがある場合は注意です。</p>
<p>当方環境はMU1.5です。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/74/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CORESERVERにWordPressMU1.3 を入れてみました。</title>
		<link>http://wb.corekuuma.com/archives/9</link>
		<comments>http://wb.corekuuma.com/archives/9#comments</comments>
		<pubDate>Fri, 14 Dec 2007 19:45:29 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[CORESERVER]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2007/12/15/coreserver%e3%81%abwordpressmu13-%e3%82%92%e5%85%a5%e3%82%8c%e3%81%a6%e3%81%bf%e3%81%be%e3%81%97%e3%81%9f%e3%80%82/</guid>
		<description><![CDATA[１．DLして解凍 
まず、WordPressMU1.3をダウンロード、解凍。
日本語化ファイルをwp-content/languages/に入れるんだけど、MUのインストール後に。それまでは英語で。
２．サーバーにアップロード
サブドメインコースにしたかったもんで、default.XXXXXXX.comフォルダを作成し、そこにMUのファイルを全部いれる。てか、MUの解凍してできたものをリネームすればいいんだけど。
MUの入ったdefault.XXXXXXX.comをアップロード。
3.ドメイン・同期の設定
CORESERVERのドメインウェブのところで、default.XXXXXXX.comと、XXXXXXX.comを設定し、同期設定で、default.XXXXXXX.comにXXXXXXX.comを同期させる。
４．インストール開始
インストールの前に、CORESERVERのツールから「ファイル所有者の修正」をしておこう。これを忘れたので、wp-config.phpが削除・変更できなくなった。
→chmodするphpファイルで直した。
XXXXXXX.comにアクセス。
パーミッションが、とか言ってくるので、言われるままに変更。
そうそう、データベースも作っておかなくちゃだね。
画面の指示に従って進んでいくと、すぐ終わります。
最後に、パーミッションを元に戻しておしまいです。
簡単だね。
最初はうまくいかなかったけど、実際に動くとうれしい。うれしいよ。
]]></description>
			<content:encoded><![CDATA[<h4>１．DLして解凍 </h4>
<p>まず、WordPressMU1.3をダウンロード、解凍。<br />
日本語化ファイルをwp-content/languages/に入れるんだけど、MUのインストール後に。それまでは英語で。</p>
<h4>２．サーバーにアップロード</h4>
<p>サブドメインコースにしたかったもんで、default.XXXXXXX.comフォルダを作成し、そこにMUのファイルを全部いれる。てか、MUの解凍してできたものをリネームすればいいんだけど。<br />
MUの入ったdefault.XXXXXXX.comをアップロード。</p>
<h3>3.ドメイン・同期の設定</h3>
<p>CORESERVERのドメインウェブのところで、default.XXXXXXX.comと、XXXXXXX.comを設定し、同期設定で、default.XXXXXXX.comにXXXXXXX.comを同期させる。</p>
<h4>４．インストール開始</h4>
<p>インストールの前に、CORESERVERのツールから「ファイル所有者の修正」をしておこう。これを忘れたので、wp-config.phpが削除・変更できなくなった。<br />
→chmodするphpファイルで直した。</p>
<p>XXXXXXX.comにアクセス。</p>
<p>パーミッションが、とか言ってくるので、言われるままに変更。<br />
そうそう、データベースも作っておかなくちゃだね。</p>
<p>画面の指示に従って進んでいくと、すぐ終わります。</p>
<p>最後に、パーミッションを元に戻しておしまいです。</p>
<p>簡単だね。<br />
最初はうまくいかなかったけど、実際に動くとうれしい。うれしいよ。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPressのサムネイルがちっさい。</title>
		<link>http://wb.corekuuma.com/archives/8</link>
		<comments>http://wb.corekuuma.com/archives/8#comments</comments>
		<pubDate>Fri, 14 Dec 2007 19:29:48 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[CORESERVER]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2007/12/15/wordpress%e3%81%ae%e3%82%b5%e3%83%a0%e3%83%8d%e3%82%a4%e3%83%ab%e3%81%8c%e3%81%a1%e3%81%a3%e3%81%95%e3%81%84%e3%80%82/</guid>
		<description><![CDATA[WordPressのサムネイルはデフォルトでは小さいので、大きくしたいと。
Flexible UploadがCORESERVERではうまく動かないので、他のものを。
http://phpbb.xwd.jp/viewtopic.php?t=972
pluginフォルダにthumbnail.phpをアップロードして、有効化すればOK。
MUで一括変更するときは、mu-pluginsにthumbnail.phpをアップロードするだけでOK。
とても便利です。
]]></description>
			<content:encoded><![CDATA[<p>WordPressのサムネイルはデフォルトでは小さいので、大きくしたいと。</p>
<p>Flexible UploadがCORESERVERではうまく動かないので、他のものを。<br />
<a href="http://phpbb.xwd.jp/viewtopic.php?t=972">http://phpbb.xwd.jp/viewtopic.php?t=972</a></p>
<p>pluginフォルダにthumbnail.phpをアップロードして、有効化すればOK。</p>
<p>MUで一括変更するときは、mu-pluginsにthumbnail.phpをアップロードするだけでOK。</p>
<p>とても便利です。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/8/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CORESERVERで画像がアップロードできない件。</title>
		<link>http://wb.corekuuma.com/archives/7</link>
		<comments>http://wb.corekuuma.com/archives/7#comments</comments>
		<pubDate>Fri, 14 Dec 2007 19:19:25 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[CORESERVER]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2007/12/15/coreserver%e3%81%a7%e7%94%bb%e5%83%8f%e3%81%8c%e3%82%a2%e3%83%83%e3%83%97%e3%83%ad%e3%83%bc%e3%83%89%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e4%bb%b6%e3%80%82/</guid>
		<description><![CDATA[CORESERVERに入れたWordPressMu、どうも画像がアップロードできないと思ったら、CORESERVERでは、PHPをCGIモードにしないと、画像をアップロードできないようです。
wp-admin/に、.htaccessを
AddHandler application/x-httpd-phpcgi .php
このように書いてアップロードすればOKでした。
そしたら、いつのまにか投稿画面の右のカテゴリー追加がうまく機能しなってしまった。
カテゴリーを追加しても、画面上に追加されない（リロードすれば出てくる）。
なので、さくほどの.htaccessを
&#60;files upload.php&#62;
AddHandler application/x-httpd-phpcgi .php
&#60;/files&#62;
このように修正。これはupload.phpのみの指定です。
これでOK。
]]></description>
			<content:encoded><![CDATA[<p>CORESERVERに入れたWordPressMu、どうも画像がアップロードできないと思ったら、CORESERVERでは、PHPをCGIモードにしないと、画像をアップロードできないようです。<br />
wp-admin/に、.htaccessを</p>
<blockquote><p>AddHandler application/x-httpd-phpcgi .php</p></blockquote>
<p>このように書いてアップロードすればOKでした。</p>
<p>そしたら、いつのまにか投稿画面の右のカテゴリー追加がうまく機能しなってしまった。<br />
カテゴリーを追加しても、画面上に追加されない（リロードすれば出てくる）。</p>
<p>なので、さくほどの.htaccessを</p>
<blockquote><p>&lt;files upload.php&gt;<br />
AddHandler application/x-httpd-phpcgi .php<br />
&lt;/files&gt;</p></blockquote>
<p>このように修正。これはupload.phpのみの指定です。<br />
これでOK。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flexible Uploadが動かない</title>
		<link>http://wb.corekuuma.com/archives/6</link>
		<comments>http://wb.corekuuma.com/archives/6#comments</comments>
		<pubDate>Fri, 14 Dec 2007 19:02:54 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2007/12/15/flexible-upload%e3%81%8c%e5%8b%95%e3%81%8b%e3%81%aa%e3%81%84/</guid>
		<description><![CDATA[CORESERVERでの現象。
さくらでは問題なく動いてます。
画像のアップロード時にサムネイルのサイズを変更できたり、いろいろ便利で気に入ってたプラグインのFlexible Uploadですが、CORESERVERではうまく動きません。
症状として、記事投稿時に、Flexible Uploadのフォームが表示されず、デフォルトの画像アップロードフォームが表示されます。
この部分は、iframeなので、そこだけ右クリック→「最新の情報に更新」すると、Flexible Uploadのフォームが現れます。
実はこれ、Firefoxでは問題なく動いてるので、IEでの現象だと思います。
解決方法は・・・Firefoxを使う、というくらいかなぁ。
[追加2008.03.19]　IE7ならOKでした。
]]></description>
			<content:encoded><![CDATA[<p>CORESERVERでの現象。<br />
さくらでは問題なく動いてます。</p>
<p>画像のアップロード時にサムネイルのサイズを変更できたり、いろいろ便利で気に入ってたプラグインのFlexible Uploadですが、CORESERVERではうまく動きません。</p>
<p>症状として、記事投稿時に、Flexible Uploadのフォームが表示されず、デフォルトの画像アップロードフォームが表示されます。<br />
この部分は、iframeなので、そこだけ右クリック→「最新の情報に更新」すると、Flexible Uploadのフォームが現れます。</p>
<p>実はこれ、Firefoxでは問題なく動いてるので、IEでの現象だと思います。</p>
<p>解決方法は・・・Firefoxを使う、というくらいかなぁ。</p>
<p>[追加2008.03.19]　IE7ならOKでした。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CORE SERVERを使ってみました。</title>
		<link>http://wb.corekuuma.com/archives/3</link>
		<comments>http://wb.corekuuma.com/archives/3#comments</comments>
		<pubDate>Fri, 14 Dec 2007 04:01:36 +0000</pubDate>
		<dc:creator>daisukew</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[CORESERVER]]></category>
		<category><![CDATA[EC-CUBE]]></category>
		<category><![CDATA[WordPress MU]]></category>

		<guid isPermaLink="false">http://wb.corekuuma.com/2007/12/14/core-server%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6%e3%81%bf%e3%81%be%e3%81%97%e3%81%9f%e3%80%82/</guid>
		<description><![CDATA[いままでさくらのレンタルサーバー1Gを使ってましたが、CORESERVERってサーバーに乗り換えました。
EC-CUBEを使ってみたくてCORESERVERを試用したら、いろいろ便利なことがわかったので。
主な魅力的機能として、EC-CUBEを使える、容量が15GB、再販可能、ワイルドカードサブドメイン可能、料金同じ、などなどです。
ということで、とりあえずEC-CUBE2.0と、WordPressMU1.3を入れてみたので、忘れないようにその手順をメモ。
]]></description>
			<content:encoded><![CDATA[<p>いままでさくらのレンタルサーバー1Gを使ってましたが、CORESERVERってサーバーに乗り換えました。<br />
EC-CUBEを使ってみたくてCORESERVERを試用したら、いろいろ便利なことがわかったので。</p>
<p>主な魅力的機能として、EC-CUBEを使える、容量が15GB、再販可能、ワイルドカードサブドメイン可能、料金同じ、などなどです。</p>
<p>ということで、とりあえずEC-CUBE2.0と、WordPressMU1.3を入れてみたので、忘れないようにその手順をメモ。</p>
]]></content:encoded>
			<wfw:commentRss>http://wb.corekuuma.com/archives/3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
