<?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>lllnorikolll@online &#187; CORESERVER</title>
	<atom:link href="http://blog.lllnorikolll.com/archives/tag/coreserver/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.lllnorikolll.com</link>
	<description>オンライン - WEBアプリケーション開発関連のメモなど</description>
	<lastBuildDate>Sat, 15 Oct 2011 05:08:36 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>WP2.8にアップグレードしたらCORESERVERで管理画面がデザインくずれした</title>
		<link>http://blog.lllnorikolll.com/archives/295</link>
		<comments>http://blog.lllnorikolll.com/archives/295#comments</comments>
		<pubDate>Mon, 15 Jun 2009 18:08:33 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CORESERVER]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=295</guid>
		<description><![CDATA[調べたら解決方法ありました。 どうやらCORESERVERがセーフモードのため、PHPをCGI版で動かす設定をドキュメントルート直下の.htaccessに書いていたのが原因のようです。 http://ja.forums. [...]]]></description>
			<content:encoded><![CDATA[<p>調べたら解決方法ありました。<br />
どうやらCORESERVERがセーフモードのため、PHPをCGI版で動かす設定をドキュメントルート直下の.htaccessに書いていたのが原因のようです。</p>
<p>http://ja.forums.wordpress.org/topic/1927</p>
<p>↑のコメントを参考にし、<br />
ドキュメントルート直下の.htaccessから下記設定部分を削除</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">vi</span> .htaccess</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #00007f;">AddHandler</span> application/x-httpd-php5cgi .php</pre></div></div>

<p>そして、wp-adminディレクトリに新しく.htaccessファイルを作成し、下記を追加。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">vi</span> .htaccess</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #00007f;">AddHandler</span> application/x-httpd-phpcgi .php</pre></div></div>

<p>そしてWordPressの管理画面にブラウザでアクセスすると、無事管理画面が正しく表示されました。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/295/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS10.5 LeopardからSSH公開鍵認証でCORESERVERにログイン</title>
		<link>http://blog.lllnorikolll.com/archives/267</link>
		<comments>http://blog.lllnorikolll.com/archives/267#comments</comments>
		<pubDate>Sun, 03 May 2009 07:17:49 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[CORESERVER]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=267</guid>
		<description><![CDATA[CORESERVERにSSH接続する際の手順が面倒だ。。。 １．管理画面上からホストを登録しなくてはいけない。 ２．ホストを登録してからSSH接続できるようになるまで数分かかる。 ３．SSH接続の際のパスワードがCORE [...]]]></description>
			<content:encoded><![CDATA[<p>CORESERVERにSSH接続する際の手順が面倒だ。。。<br />
１．管理画面上からホストを登録しなくてはいけない。<br />
２．ホストを登録してからSSH接続できるようになるまで数分かかる。<br />
３．SSH接続の際のパスワードがCORESERVERから発行されたものなので、覚えていられない。<br />
<br />
と、思っていたら、どうやらSSH公開鍵認証でSSH接続ができるとのこと。<br />
やってみた。<br />
結果。。。<br />
ホスト登録しているIPからは、SSH公開鍵認証できたが、IPが変わると管理画面上からホスト登録しなおさなくてはいけないようなので、パスワードをコピペする手間が省けた程度のメリットだろうか。。。</p>
<h3>[CORESERVER側で下準備]</h3>
<p>まずはSSHでCORESERVERにログイン。<br />
（CORESERVER管理画面でssh登録を事前にすませておく）</p>
<pre>ssh [ユーザー名]@s[数字].coreserver.jp [ユーザー名]@s[数字].coreserver.jp's password:</pre>
<p>パスワードを入力し、Enter。<br />
ホームディレクトリに.sshというディレクトリを作成し、その中にauthorized_keysというファイルを作成。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> .ssh
$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">700</span> .ssh
$ <span style="color: #7a0874; font-weight: bold;">cd</span> .ssh
$ <span style="color: #c20cb9; font-weight: bold;">touch</span> authorized_keys</pre></div></div>

<h3>[Mac側でSSH公開鍵を作成]</h3>
<p>ターミナル上で「ssh-keygen」と打つと、「/Users/[ユーザー名]/.ssh/id_rsa」というファイルで作ってよいか聞かれる。<br />
パスやファイル名を変更したい場合は、直接指定。<br />
聞かれたとおりでよければ何も書かずにEnter。<br />
パスフレーズを2回聞かれるので、入力してEnter。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ssh-keygen</span>
Generating public<span style="color: #000000; font-weight: bold;">/</span>private rsa key pair.
Enter <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #c20cb9; font-weight: bold;">which</span> to save the key <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>ユーザー名<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa<span style="color: #7a0874; font-weight: bold;">&#41;</span>:
Enter passphrase <span style="color: #7a0874; font-weight: bold;">&#40;</span>empty <span style="color: #000000; font-weight: bold;">for</span> no passphrase<span style="color: #7a0874; font-weight: bold;">&#41;</span>:
Enter same passphrase again:</pre></div></div>

<h3>[SSH公開鍵ファイルをMacからCORESERVERにコピー]</h3>
<p>作成した鍵ファイルをscpコマンドでCORESERVERにコピー。<br />
（鍵ファイルへのパスは、↑でEnter file in which to save the keyで聞かれたときのもの）</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">scp</span> <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">&#91;</span>ユーザー名<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa.pub <span style="color: #7a0874; font-weight: bold;">&#91;</span>ユーザー名<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">@</span>s<span style="color: #7a0874; font-weight: bold;">&#91;</span>数字<span style="color: #7a0874; font-weight: bold;">&#93;</span>.coreserver.jp:~<span style="color: #000000; font-weight: bold;">/</span>.ssh
<span style="color: #7a0874; font-weight: bold;">&#91;</span>ユーザー名<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">@</span>s<span style="color: #7a0874; font-weight: bold;">&#91;</span>数字<span style="color: #7a0874; font-weight: bold;">&#93;</span>.coreserver.jp<span style="color: #ff0000;">'s password:
id_rsa.pub                                              100%  638     0.6KB/s   00:00</span></pre></div></div>

<h3>[CORESERVER側で鍵ファイルを設定]</h3>
<p>authorized_keysファイルにid_rsa.pubの内容を追記。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">cat</span> ~<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>id_rsa.pub <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> ~<span style="color: #000000; font-weight: bold;">/</span>.ssh<span style="color: #000000; font-weight: bold;">/</span>authorized_keys</pre></div></div>

<h3>[今後SSH接続するときは]</h3>
<p>↓だけで、パスフレーズを利用してログインできるようになる。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>ユーザー名<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">@</span>s<span style="color: #7a0874; font-weight: bold;">&#91;</span>数字<span style="color: #7a0874; font-weight: bold;">&#93;</span>.coreserver.jp</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/267/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CORESERVERにgitをインストールしたメモ</title>
		<link>http://blog.lllnorikolll.com/archives/238</link>
		<comments>http://blog.lllnorikolll.com/archives/238#comments</comments>
		<pubDate>Tue, 03 Mar 2009 05:14:02 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[メモ箱]]></category>
		<category><![CDATA[CORESERVER]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=238</guid>
		<description><![CDATA[sshでCORESERVERにログイン。 （CORESERVER管理画面でssh登録を事前にすませておく） $ ssh &#91;アカウント&#93;@s&#91;数字&#93;.coreserver.jp ソースをCO [...]]]></description>
			<content:encoded><![CDATA[<p><strong>sshでCORESERVERにログイン。</strong><br />
（CORESERVER管理画面でssh登録を事前にすませておく）</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>アカウント<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">@</span>s<span style="color: #7a0874; font-weight: bold;">&#91;</span>数字<span style="color: #7a0874; font-weight: bold;">&#93;</span>.coreserver.jp</pre></div></div>

<p><strong>ソースをCORESERVERで取得</strong><br />
ここ↓から最新番のtar.gzファイルのリンクURLをコピー。（現在の最新は1.6.1.3）<br />
<a href="http://git-scm.com/" target="_blank">http://git-scm.com/</a></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>http:<span style="color: #000000; font-weight: bold;">//</span>からはじまる、コピーしたtar.gzのURL<span style="color: #7a0874; font-weight: bold;">&#93;</span>
$ <span style="color: #c20cb9; font-weight: bold;">tar</span> xvzf <span style="color: #7a0874; font-weight: bold;">&#91;</span>tar.gzファイル名<span style="color: #7a0874; font-weight: bold;">&#93;</span>
$ <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>解凍してできたディレクトリ名<span style="color: #7a0874; font-weight: bold;">&#93;</span>
$ .<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #007800;">$HOME</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span>
$ <span style="color: #c20cb9; font-weight: bold;">gmake</span>
$ <span style="color: #c20cb9; font-weight: bold;">gmake</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>インストールされたか確認。下記をうつと、gitのバージョンが表示されていればOK</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">git</span> <span style="color: #660033;">--version</span></pre></div></div>

<p><strong>リポジトリ作成</strong><br />
適当な場所にディレクトリとファイルを作成し、リポジトリを作成してコミットしてみる。</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$HOME</span>
$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> gitrepos
$ <span style="color: #7a0874; font-weight: bold;">cd</span> gitrepos
$ <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;sample&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> README
$ <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$HOME</span><span style="color: #000000; font-weight: bold;">/</span>gitrepos
$ <span style="color: #c20cb9; font-weight: bold;">git</span> init
$ <span style="color: #c20cb9; font-weight: bold;">git</span> add .
$ <span style="color: #c20cb9; font-weight: bold;">git</span> commit</pre></div></div>

<p>コミットしたよー的な.git/COMMIT_EDITMSGファイルの内容が表示されればOK</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/238/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concrete5をCORESERVERにつっこんでみた</title>
		<link>http://blog.lllnorikolll.com/archives/169</link>
		<comments>http://blog.lllnorikolll.com/archives/169#comments</comments>
		<pubDate>Tue, 11 Nov 2008 05:46:34 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[Concrete5]]></category>
		<category><![CDATA[CORESERVER]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=169</guid>
		<description><![CDATA[phpspot開発日誌で紹介されていたConcrete5というPHPでできたCMSをこのブログをのっけているCORESERVERというレンタルサーバーにのっけてみました。 【のっけてみたページ】 http://c5.ll [...]]]></description>
			<content:encoded><![CDATA[<p>phpspot開発日誌で紹介されていたConcrete5というPHPでできたCMSをこのブログをのっけているCORESERVERというレンタルサーバーにのっけてみました。</p>
<p>【のっけてみたページ】<br />
<a href="http://c5.lllnorikolll.com/" target="_blank">http://c5.lllnorikolll.com/</a></p>
<p>【phpspot開発日誌での紹介ページ】<br />
<a href="http://phpspot.org/blog/archives/2008/11/phpmysqlcmsconc.html" target="_blank">http://phpspot.org/blog/archives/2008/11/phpmysqlcmsconc.html</a></p>
<p>【Concrete5ご本家サイト】<br />
<a href="http://www.concrete5.org/" target="_blank">http://www.concrete5.org/</a></p>
<p>インストールは、ありえないほど簡単！<br />
ご本家サイトのダウンロードボタンからソースをダウンロード。</p>
<p>ダウンロードしたzipファイルを回答して、その中に入っているファイルたちをFTPでCORESERVERにUP！<br />
そのままブラウザでアクセスすると初期設定画面が表示される！</p>
<p>データベースはMySQLで文字コードはutf-8で作っておいて、あとは初期設定画面に入力して設定するだけ！<br />
もうこれで動いちゃう。</p>
<p>他のレンタルサーバーの場合はGDモジュールが入っているかどうか確認したほうがよいらしいことを、こちらのページ→（<a href="http://d.hatena.ne.jp/YOSIZO/20081107/1226047877" target="_blank">http://d.hatena.ne.jp/YOSIZO/20081107/1226047877</a>）で発見。</p>
<p>つくりが多言語対応にはなっていないようなので、日本語化されるのはまだ先のことかもしれませんが、とにかく直観でも操作できちゃうくらいの管理パネルの使いやすさ。</p>
<p>ご本家デモサイト（<a href="http://www.concrete5.org/demo" target="_blank">http://www.concrete5.org/demo</a>）で体感してみてください。</p>
<p>ただし、デモサイトで使用しているテーマはlang=&#8221;en&#8221;でcharset=iso-8859-1&#8243;なので、日本語が一部文字化けします。<br />
これは日本語OKのテーマを作成すればよいだけのことなので、ご安心あれ。（phpの中身的に日本語まずいかどうかはまだ見きれていないけれど）</p>
<p>MODxに挫折し、Drupalではものたりない私に、Concrete5は何かをもたらしてくれそうな予感がする。。。しばらく<a href="http://c5.lllnorikolll.com/" target="_blank">http://c5.lllnorikolll.com/</a>は、実験場として使い倒す予定。</p>
<p>テーマつくってみたいーとかいう方いましたら、アカウント発行しますのでコメントくださいー。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/169/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CORESERVER 気になるPHP6</title>
		<link>http://blog.lllnorikolll.com/archives/129</link>
		<comments>http://blog.lllnorikolll.com/archives/129#comments</comments>
		<pubDate>Sun, 05 Oct 2008 14:20:20 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[メモ箱]]></category>
		<category><![CDATA[CORESERVER]]></category>
		<category><![CDATA[PHP6]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=129</guid>
		<description><![CDATA[レンタルサーバーはCORESERVER(http://www.coreserver.jp/)を利用しているのですが、PHP6が使えるようなことを書いてあるページ(http://www.coreserver.jp/help [...]]]></description>
			<content:encoded><![CDATA[<p>レンタルサーバーはCORESERVER(<a href="http://www.coreserver.jp/" target="_blank">http://www.coreserver.jp/</a>)を利用しているのですが、PHP6が使えるようなことを書いてあるページ(<a href="http://www.coreserver.jp/help/index.php/phpcgi/" target="_blank">http://www.coreserver.jp/help/index.php/phpcgi/</a>)を発見！</p>
<p>うむ。。。ものっすごい気になる。後でやってみよう。。。</p>
<p>で、CORESERVERではphp.iniを独自のものにできるのね！<br />
何ができるか隅々まで呼んでいなかった私が悪いのだけれど、今までかなり損をしてしまっていた気分。。。（笑）</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/129/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CORESERVERでCakePHPを使う</title>
		<link>http://blog.lllnorikolll.com/archives/77</link>
		<comments>http://blog.lllnorikolll.com/archives/77#comments</comments>
		<pubDate>Tue, 05 Aug 2008 06:22:47 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[メモ箱]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[CORESERVER]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=77</guid>
		<description><![CDATA[インストールしようとしたら、SAFE_MODEのためrealpathでエラーがいっぱい。。。 ここのサイト→（coreserverでcakephp 1.2を使う） を参考に/cake/libs/configure.php [...]]]></description>
			<content:encoded><![CDATA[<p>インストールしようとしたら、SAFE_MODEのためrealpathでエラーがいっぱい。。。</p>
<p>ここのサイト→（<a href="http://www.nodahayato.com/blog/2008/07/coreserver%E3%81%A7cakephp-12%E3%82%92%E4%BD%BF%E3%81%86/" target="_blank">coreserverでcakephp 1.2を使う</a>）<br />
を参考に/cake/libs/configure.phpに追記したら、エラーは回避できた。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/77/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mandigoというテーマが素晴らしい</title>
		<link>http://blog.lllnorikolll.com/archives/49</link>
		<comments>http://blog.lllnorikolll.com/archives/49#comments</comments>
		<pubDate>Wed, 30 Jul 2008 05:12:40 +0000</pubDate>
		<dc:creator>lllnorikolll</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CORESERVER]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://blog.lllnorikolll.com/?p=49</guid>
		<description><![CDATA[こんなに設定がいっぱいあります。 感動した。。。 http://www.onehertz.com/portfolio/wordpress/mandigo/ 【追記です】 CORESERVERではeval関数でのエラーが出 [...]]]></description>
			<content:encoded><![CDATA[<p>こんなに設定がいっぱいあります。</p>
<p>感動した。。。</p>
<p><a href="http://www.onehertz.com/portfolio/wordpress/mandigo/">http://www.onehertz.com/portfolio/wordpress/mandigo/</a></p>
<p><a href="http://blog.lllnorikolll.com/files/2008/07/82dd2916688faf5916120195d0783d6c.png"><img src="http://blog.lllnorikolll.com/files/2008/07/82dd2916688faf5916120195d0783d6c.png" alt="" title="mandigo" width="440" height="309" class="alignnone size-full wp-image-503" /></a></p>
<p>【追記です】<br />
CORESERVERではeval関数でのエラーが出てしまうため、CSSが適用されたりされなかったり。<br />
突然文字が大きくなったりします。<br />
そのような場合は、<br />
/wp-content/themes/mandigo/style.css.php<br />
の26行目にあるevalの前に「@」をつけると、とりあえず文字が不安定に大きくなることは避けられます。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lllnorikolll.com/archives/49/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

