<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>森の夢 &#187; php</title>
	<atom:link href="http://morinoyume.com/category/techs/php-server-techs/feed/" rel="self" type="application/rss+xml" />
	<link>http://morinoyume.com</link>
	<description>渋谷で働く若手ＳＥの日々の日記。</description>
	<lastBuildDate>Thu, 11 Feb 2010 05:10:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/category/techs/php-server-techs/feed/" />
		<item>
		<title>Symfony(1.4)でZendのライブラリを使う。</title>
		<link>http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/</link>
		<comments>http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 15:56:16 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[技術]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=415</guid>
		<description><![CDATA[今日はsymfonyでzendのライブラリを使うお話。
zendってのは、pearと同じように色々便利なことができるモジュール群と考えてもよい。
例えば、phpでHTTPリクエストしたり、XMLを解析したり、など一般的な [...]]]></description>
			<content:encoded><![CDATA[<p>今日はsymfonyでzendのライブラリを使うお話。<br />
zendってのは、pearと同じように色々便利なことができるモジュール群と考えてもよい。<br />
例えば、phpでHTTPリクエストしたり、XMLを解析したり、など一般的なものからtwitterやAmazonのapiを扱うものまでかなり便利なものが多い。<br />
種類こそpearより少ないが、使いやすさはpearよりもはるかに使いやすいと思われる。</p>
<p>まずは、zendのインストール。今回は「/usr/local/」配下にインストールする。</p>
<pre class="brush: plain;">
cd /usr/local
wget http://framework.zend.com/releases/ZendFramework-1.10.0/ZendFramework-1.10.0.tar.gz
tar -xvzf ZendFramework-1.10.0.tar.gz
mv ZendFramework-1.10.0 Zend
</pre>
<p>こんな感じ。最後のmvは名前をなんとなく「Zend」にしておきたいだけで、意味はない。<br />
最新のZendは<a href="http://framework.zend.com/download/latest">ココ</a>でチェック。</p>
<p>次にphp.iniに以下を追記する。<br />
これがないとうまく動かない。<br />
(すでにinclude_pathが定義されている場合は「:/usr/local/Zend/library」を足してください。)</p>
<pre class="brush: plain;">
include_path=&quot;.:/usr/local/Zend/library&quot;
</pre>
<p>んで、次にsymfonyのautoload.ymlに以下のように記述する。<br />
autoload.ymlはデフォｒフトでは設置されていないので、アプリケーションのconfigディレクトリの下に作成する。<br />
（プロジェクトのコンフィグ配下でもよいと思われる。）</p>
<pre class="brush: plain;">
autoload:
  # zendframework
  zendframework_lib:
    name:           zendframework lib
    path:           /usr/local/Zend/library
    recursive:      on
</pre>
<p>これで</p>
<pre class="brush: plain;">
symfony cc
</pre>
<p>うって完了。<br />
あとはソース上のすきなとこに</p>
<pre class="brush: plain;">
$twitter = new Zend_Service_Twitter('morinoyume', 'morinoyume');
</pre>
<p>見たいな感じで、zendのライブラリを呼べばＯＫ！簡単♪<br />
上記はzendのtwitter用のライブラリですね。</p>
<p>zendは扱いやすいので、みなさんも是非！</p>
<p>参考:<a href="http://ueblog.natural-wave.com/2008/03/24/symfony-zend-framework/">ueblog</a></p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2010 年 1 月 26 日 -- <a href="http://morinoyume.com/techs/symfony1-4symfony1-3%e3%81%a7%e3%83%90%e3%83%83%e3%83%81%e5%87%a6%e7%90%86/" title="Symfony1.4(Symfony1.3)でバッチ処理">Symfony1.4(Symfony1.3)でバッチ処理</a></li><li>2009 年 11 月 29 日 -- <a href="http://morinoyume.com/techs/propel-schema-reversethere-was-an-error-building-xml-from-metadatacould-not-find-driver/" title="[propel-schema-reverse]there was an error building XML from metadata:could not find driver">[propel-schema-reverse]there was an error building XML from metadata:could not find driver</a></li><li>2010 年 1 月 30 日 -- <a href="http://morinoyume.com/techs/php%e3%81%a7twitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%80%82servicestwitter-php/" title="phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)">phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)</a></li><li>2010 年 1 月 20 日 -- <a href="http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/" title="PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）">PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）</a></li><li>2010 年 1 月 18 日 -- <a href="http://morinoyume.com/techs/ethna%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82/" title="Ethnaをインストールしてみた。">Ethnaをインストールしてみた。</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/" />
	</item>
		<item>
		<title>PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）</title>
		<link>http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/</link>
		<comments>http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 15:52:29 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[技術]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=398</guid>
		<description><![CDATA[今日はエラー系の投稿。
phpでバッチを作成していた際にコマンドラインの引数が渡らないというお話。
phpのコマンドライン引数についてはこちらを参照。
test.php

&#60;?php
echo $argv[1];
 [...]]]></description>
			<content:encoded><![CDATA[<p>今日はエラー系の投稿。<br />
phpでバッチを作成していた際にコマンドラインの引数が渡らないというお話。<br />
phpのコマンドライン引数については<a href="http://php.net/manual/ja/reserved.variables.argv.php">こちら</a>を参照。</p>
<p>test.php</p>
<pre class="brush: plain;">
&lt;?php
echo $argv[1];
?&gt;
</pre>
<p>例えば、上記スクリプトの場合</p>
<pre class="brush: plain;">
php test.php &quot;Hello World!&quot;
</pre>
<p>と入力すれば、「Hello World!」とターミナルに出力されるはずである。<br />
しかし、</p>
<pre class="brush: plain;">
PHP Notice: Undefined variable: argv
</pre>
<p>となってしまい、argvそのものが定義されていないようだ・・・。<br />
原因はphp.ini。</p>
<pre class="brush: plain;">
register_argc_argv = Off
</pre>
<p>となっていたら</p>
<pre class="brush: plain;">
register_argc_argv = On
</pre>
<p>としよう。これで解決。<br />
以外と日本語のドキュメントがなかったので、残しておく。</p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2010 年 2 月 7 日 -- <a href="http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/" title="Symfony(1.4)でZendのライブラリを使う。">Symfony(1.4)でZendのライブラリを使う。</a></li><li>2010 年 1 月 30 日 -- <a href="http://morinoyume.com/techs/php%e3%81%a7twitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%80%82servicestwitter-php/" title="phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)">phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)</a></li><li>2010 年 1 月 26 日 -- <a href="http://morinoyume.com/techs/symfony1-4symfony1-3%e3%81%a7%e3%83%90%e3%83%83%e3%83%81%e5%87%a6%e7%90%86/" title="Symfony1.4(Symfony1.3)でバッチ処理">Symfony1.4(Symfony1.3)でバッチ処理</a></li><li>2010 年 1 月 18 日 -- <a href="http://morinoyume.com/techs/ethna%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82/" title="Ethnaをインストールしてみた。">Ethnaをインストールしてみた。</a></li><li>2009 年 11 月 29 日 -- <a href="http://morinoyume.com/techs/phpmyadmin%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%af%e3%81%aa%e3%81%84%e3%81%8c%e3%83%ad%e3%82%b0%e3%82%a4%e3%83%b3%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e7%8f%be%e8%b1%a1%e3%81%ab%e3%81%a4%e3%81%84/" title="phpMyAdminでエラーはないがログインできない現象について">phpMyAdminでエラーはないがログインできない現象について</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/" />
	</item>
		<item>
		<title>Ethnaをインストールしてみた。</title>
		<link>http://morinoyume.com/techs/ethna%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82/</link>
		<comments>http://morinoyume.com/techs/ethna%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 03:35:10 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[技術]]></category>
		<category><![CDATA[Ethna]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=390</guid>
		<description><![CDATA[基本的に私はPHPで開発するときはSymfonyだが、今回Ethnaを入れてみた。
今回はそのEthnaについて思いのまま書いてみる。
基本的にはココを見れば一通りのドキュメントがそろっているので、
そちらを見たほうがよ [...]]]></description>
			<content:encoded><![CDATA[<p>基本的に私はPHPで開発するときはSymfonyだが、今回Ethnaを入れてみた。<br />
今回はそのEthnaについて思いのまま書いてみる。<br />
基本的には<a href="http://ethna.jp/">ココ</a>を見れば一通りのドキュメントがそろっているので、<br />
そちらを見たほうがよいだろう。</p>
<h2>Ethnaとは</h2>
<p>Ethna(えすな)とは、Greeが開発した和製のPHPフレームワークである。<br />
日本でＰＨＰフレームワークといったら、Cake , Symfony , Zendなんかがポピュラーだが、Ethnaはそれに続く立ち位置だと思う。<br />
和製ＰＨＰﾌﾚｰﾑﾜｰｸとしては、一番使われていると思われる。もちろんGREEもEthnaを使ってできている。</p>
<h2>Ethnaをインストール</h2>
<p>インストールはPearでサクッと入る。</p>
<pre class="brush: plain;">
pear channel-discover pear.ethna.jp
pear update-channels
pear install -a ethna/ethna
</pre>
<p>上記コマンドで打ったら</p>
<pre class="brush: plain;">
/usr/share/pear
</pre>
<p>以下にEthnaのソースが展開されたので、ここにphpのパスを通しておく必要がある。<br />
php.iniに以下を追加。</p>
<pre class="brush: plain;">
include_path=&quot;.:/usr/share/pear&quot;
</pre>
<p>ethnaが入っているか確認</p>
<pre class="brush: plain;">
ethna -v
Ethna 2.5.0 (using PHP 5.2.9)
</pre>
<h2>Ethnaを使ってみて思った全体感</h2>
<p>まず思ったことは、フレームワークはやりのＭＶＣがしっかりしている。<br />
<a href="http://ethna.jp/">公式ドキュメント</a>を見ても分かるが、<br />
コントローラーやアクションに余計なものは書かないように推奨されている。(アクションに２００行以上書いちゃだめとか)<br />
逆に言うと、MVCって何？的な人がEthnaを使えばMVCってのが何となく理解できるのではないだろうか。</p>
<h2>Ethnaのテンプレートエンジン Smarty</h2>
<p>Ethnaの特徴の一つは、テンプレートエンジンとしてsmartyを採用している。<br />
また、バリデート時のエラーメッセージやformのデフォルト値、viewオブジェクトでセットした値が非常にアクセスしやすくなっている。<br />
さらに、ユーザーが入力したform値に関してはデフォルトでエスケープ処理がされているという便利設計。<br />
しかし、ヘッダー、フッターを都度かからなければならずsymfonyのlayout.phpみたいな便利な機能がない。<br />
ヘッダー、フッターのインクルードファイルを作るほかないだろう。</p>
<h2>Ethnaの文字コード</h2>
<p>当初はEUC-JPがデフォルトだったが、最新版ではUTF-8がデフォルト。<br />
やはりUTF-8がよい。</p>
<h2>EthnaのＤＢ接続</h2>
<p>ﾒｲﾝはPEAR::DBを継承したEthna_DB_PEARを使っている。<br />
whileでresultセットを回して、１件、１件fetchする感じ。<br />
直感的にＳＱＬをかけるのは良い。<br />
便利なことに、マスター用の接続、スレーブ用の接続（複数セットした場合は自動で振分け機能付き）など色々な接続を簡単に設定できる。</p>
<p>一応、O/Rマッパーも独自で実装されている。<br />
ぱっと見は使いやすそうだが、やはりSymfonyのマッパー等にくらべると少々弱い感じがする・・・。<br />
オブジェクトの配列を一気に取得して、がんがん回して、がんがんセットしていきたい。見た目、一つずつしか取得できない？<br />
ただ、webのform値を一気にimport(set)できるのは便利そう！スクリプトが綺麗になる。</p>
<h2>コレは便利formについて</h2>
<p>チュートリアルをサクッと見ると、すごく便利に見えたのはformについて。<br />
formのバリデートはそれ専用に書くところがあるし、エラーハンドリングやエラーメッセージもテンプレート側でsmartyを使ってアクセスしやすい。またエラー時にvalue値としてformの値をセットするが、デフォルトでエスケープされている。<br />
また、バリーデート済みのform値はO/Rマッパーを使用してそのままオブジェクトにset->updateできる。</p>
<p>symfonyにも同様の機能があるが、こちらの方がテンプレートも自由にかける等少しライトに実装されており、つかいやすそう。</p>
<h2>Ethnaのパフォーマンス</h2>
<p>symfonyとethnaで「Hello World」を出力するアプリを作ってみて、各１０回計測し、それの平均値をもとめてみた。</p>
<ul>
<li>Ethna : 0.0724179</li>
<li>Symfony : 0.0970384</li>
</ul>
<p>すくなくともsymfonyより早いので問題ないでしょう。symfonyが重すぎ・・・。<br />
あとはＤＢ接続周りに依存するでしょうね。</p>
<h2>まとめ</h2>
<p>とりあえず思ったことは、EthnaはライトなWebアプリケーションを作るのにはすごく向いているなと思う。<br />
また、全体的に分かりやすいので習得コストもそれほどかからないだろう。<br />
ただし、Symfonyなどと比べるとやはり機能が少ない（symfonyが多すぎ）。<br />
もし、大規模なアプリケーションを開発するのであれば、EthnaではなくSymfonyなどを検討してみても良いと思う。</p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2010 年 2 月 7 日 -- <a href="http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/" title="Symfony(1.4)でZendのライブラリを使う。">Symfony(1.4)でZendのライブラリを使う。</a></li><li>2010 年 1 月 30 日 -- <a href="http://morinoyume.com/techs/php%e3%81%a7twitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%80%82servicestwitter-php/" title="phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)">phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)</a></li><li>2010 年 1 月 26 日 -- <a href="http://morinoyume.com/techs/symfony1-4symfony1-3%e3%81%a7%e3%83%90%e3%83%83%e3%83%81%e5%87%a6%e7%90%86/" title="Symfony1.4(Symfony1.3)でバッチ処理">Symfony1.4(Symfony1.3)でバッチ処理</a></li><li>2010 年 1 月 20 日 -- <a href="http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/" title="PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）">PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）</a></li><li>2009 年 11 月 29 日 -- <a href="http://morinoyume.com/techs/phpmyadmin%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%af%e3%81%aa%e3%81%84%e3%81%8c%e3%83%ad%e3%82%b0%e3%82%a4%e3%83%b3%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e7%8f%be%e8%b1%a1%e3%81%ab%e3%81%a4%e3%81%84/" title="phpMyAdminでエラーはないがログインできない現象について">phpMyAdminでエラーはないがログインできない現象について</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/ethna%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/ethna%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82/" />
	</item>
		<item>
		<title>phpMyAdminでエラーはないがログインできない現象について</title>
		<link>http://morinoyume.com/techs/phpmyadmin%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%af%e3%81%aa%e3%81%84%e3%81%8c%e3%83%ad%e3%82%b0%e3%82%a4%e3%83%b3%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e7%8f%be%e8%b1%a1%e3%81%ab%e3%81%a4%e3%81%84/</link>
		<comments>http://morinoyume.com/techs/phpmyadmin%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%af%e3%81%aa%e3%81%84%e3%81%8c%e3%83%ad%e3%82%b0%e3%82%a4%e3%83%b3%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e7%8f%be%e8%b1%a1%e3%81%ab%e3%81%a4%e3%81%84/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 03:33:14 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[技術]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[エラー解決]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=322</guid>
		<description><![CDATA[前回の記事でapacheのphp.iniのパスを変更したところ、今度はphpMyAdminにログインできなくなった。
ログインしてもなんども同じログイン画面にリダイレクトされてくる。
しかも、エラーログ等にまったく出てな [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://morinoyume.com/techs/%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E3%83%A9%E3%82%A4%E3%83%B3%E3%81%A8apache%E3%81%AEconfiguration-file-php-ini-path-%E3%81%AE%E3%83%91%E3%82%B9%E3%81%8C%E9%81%95%E3%81%86%E4%BB%B6%E3%81%AB/">前回の記事</a>でapacheのphp.iniのパスを変更したところ、今度はphpMyAdminにログインできなくなった。</p>
<p>ログインしてもなんども同じログイン画面にリダイレクトされてくる。<br />
しかも、エラーログ等にまったく出てないので意味がわからない。<br />
php.iniの読み込みを外すとログインできるので、ＩＤ・ＰＡＳＳなどのmysqlの設定ではなさそうだ。</p>
<p>んで、アクセスログをよく見ると毎回セッションＩＤが違うことに気づく・・・<br />
なるほど、セッションが繋がれていないのね。<br />
php.iniのセッションを見直す。</p>
<pre class="brush: plain;">
session.save_path = &quot;/var/lib/php/session&quot;
</pre>
<p>phpはrootユーザーでインストールして、apacheのユーザーはrootユーザーでもないし、グループも違うのでここには書き込めないはず。<br />
権限を変更。</p>
<pre class="brush: plain;">
chmod 777 /var/lib/php/session
</pre>
<p>無事セッションが繋がり解決しました。<br />
セッションを保存するパスを変更するのもありだと思います。<br />
phpMyAdminだけの問題ではないですね。</p>
<p>あーエラーばっか・・・・</p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2009 年 5 月 30 日 -- <a href="http://morinoyume.com/techs/mcrypt-%e6%8b%a1%e5%bc%b5%e3%82%92%e3%83%ad%e3%83%bc%e3%83%89%e3%81%a7%e3%81%8d%e3%81%be%e3%81%9b%e3%82%93%e3%80%82php-%e3%81%ae%e8%a8%ad%e5%ae%9a%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%a6%e3%81%8f/" title="mcrypt 拡張をロードできません。PHP の設定を確認してください。">mcrypt 拡張をロードできません。PHP の設定を確認してください。</a></li><li>2010 年 2 月 7 日 -- <a href="http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/" title="Symfony(1.4)でZendのライブラリを使う。">Symfony(1.4)でZendのライブラリを使う。</a></li><li>2010 年 1 月 30 日 -- <a href="http://morinoyume.com/techs/php%e3%81%a7twitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%80%82servicestwitter-php/" title="phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)">phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)</a></li><li>2010 年 1 月 26 日 -- <a href="http://morinoyume.com/techs/symfony1-4symfony1-3%e3%81%a7%e3%83%90%e3%83%83%e3%83%81%e5%87%a6%e7%90%86/" title="Symfony1.4(Symfony1.3)でバッチ処理">Symfony1.4(Symfony1.3)でバッチ処理</a></li><li>2010 年 1 月 20 日 -- <a href="http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/" title="PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）">PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/phpmyadmin%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%af%e3%81%aa%e3%81%84%e3%81%8c%e3%83%ad%e3%82%b0%e3%82%a4%e3%83%b3%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e7%8f%be%e8%b1%a1%e3%81%ab%e3%81%a4%e3%81%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/phpmyadmin%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%af%e3%81%aa%e3%81%84%e3%81%8c%e3%83%ad%e3%82%b0%e3%82%a4%e3%83%b3%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e7%8f%be%e8%b1%a1%e3%81%ab%e3%81%a4%e3%81%84/" />
	</item>
		<item>
		<title>コマンドラインとapacheのConfiguration File (php.ini) Path のパスが違う件について</title>
		<link>http://morinoyume.com/techs/%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a8apache%e3%81%aeconfiguration-file-php-ini-path-%e3%81%ae%e3%83%91%e3%82%b9%e3%81%8c%e9%81%95%e3%81%86%e4%bb%b6%e3%81%ab/</link>
		<comments>http://morinoyume.com/techs/%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a8apache%e3%81%aeconfiguration-file-php-ini-path-%e3%81%ae%e3%83%91%e3%82%b9%e3%81%8c%e9%81%95%e3%81%86%e4%bb%b6%e3%81%ab/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 03:19:39 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[技術]]></category>
		<category><![CDATA[インフラ]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=318</guid>
		<description><![CDATA[コマンドラインからphpを実行したときのphp.iniのパス

Configuration File (php.ini) Path =&#62; /etc
Loaded Configuration File =&#62; / [...]]]></description>
			<content:encoded><![CDATA[<p>コマンドラインからphpを実行したときのphp.iniのパス</p>
<pre class="brush: plain;">
Configuration File (php.ini) Path =&gt; /etc
Loaded Configuration File =&gt; /etc/php.ini
</pre>
<p>apacheからphpを実行したときのphp.iniのパス。</p>
<pre class="brush: plain;">
Configuration File (php.ini) Path =&gt; /usr/local/bin/php/lib
Loaded Configuration File =&gt; (none)
</pre>
<p>となっているので、いくらphp.iniを修正しても読み込まれない現象が起きていた。<br />
apacheのphp.iniのパスを変えたかったがどうにも変えられない。</p>
<p>しかたないので今日もシンボリックリンクで逃げる。</p>
<pre class="brush: plain;">
ln -s /etc/php.ini /usr/local/bin/php/lib/.
</pre>
<p>無事解決。<br />
apacheの再起動も忘れずに。</p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2009 年 5 月 30 日 -- <a href="http://morinoyume.com/techs/mcrypt-%e6%8b%a1%e5%bc%b5%e3%82%92%e3%83%ad%e3%83%bc%e3%83%89%e3%81%a7%e3%81%8d%e3%81%be%e3%81%9b%e3%82%93%e3%80%82php-%e3%81%ae%e8%a8%ad%e5%ae%9a%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%a6%e3%81%8f/" title="mcrypt 拡張をロードできません。PHP の設定を確認してください。">mcrypt 拡張をロードできません。PHP の設定を確認してください。</a></li><li>2009 年 4 月 21 日 -- <a href="http://morinoyume.com/techs/yum%e3%81%a7php%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/" title="yumでphpのインストール">yumでphpのインストール</a></li><li>2010 年 2 月 7 日 -- <a href="http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/" title="Symfony(1.4)でZendのライブラリを使う。">Symfony(1.4)でZendのライブラリを使う。</a></li><li>2010 年 1 月 30 日 -- <a href="http://morinoyume.com/techs/php%e3%81%a7twitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%80%82servicestwitter-php/" title="phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)">phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)</a></li><li>2010 年 1 月 26 日 -- <a href="http://morinoyume.com/techs/symfony1-4symfony1-3%e3%81%a7%e3%83%90%e3%83%83%e3%83%81%e5%87%a6%e7%90%86/" title="Symfony1.4(Symfony1.3)でバッチ処理">Symfony1.4(Symfony1.3)でバッチ処理</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a8apache%e3%81%aeconfiguration-file-php-ini-path-%e3%81%ae%e3%83%91%e3%82%b9%e3%81%8c%e9%81%95%e3%81%86%e4%bb%b6%e3%81%ab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a8apache%e3%81%aeconfiguration-file-php-ini-path-%e3%81%ae%e3%83%91%e3%82%b9%e3%81%8c%e9%81%95%e3%81%86%e4%bb%b6%e3%81%ab/" />
	</item>
		<item>
		<title>/usr/bin/ld: cannot find -lltdl</title>
		<link>http://morinoyume.com/techs/usrbinld-cannot-find-lltdl/</link>
		<comments>http://morinoyume.com/techs/usrbinld-cannot-find-lltdl/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 01:42:58 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[技術]]></category>
		<category><![CDATA[自宅サーバー]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=315</guid>
		<description><![CDATA[phpを再コンパイルしてたら以下のエラーがでた。

/usr/bin/ld: cannot find -lltdl

追加したオプションでなにかひっかかったのか？
ググッてみたら以下でよいとのこと

yum instal [...]]]></description>
			<content:encoded><![CDATA[<p>phpを再コンパイルしてたら以下のエラーがでた。</p>
<pre class="brush: plain;">
/usr/bin/ld: cannot find -lltdl
</pre>
<p>追加したオプションでなにかひっかかったのか？<br />
ググッてみたら以下でよいとのこと</p>
<pre class="brush: plain;">
yum install libtool-ltdl libtool-ltdl-devel
</pre>
<p>解決に結構時間がかかったので、残しておく。</p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2009 年 4 月 21 日 -- <a href="http://morinoyume.com/techs/yum%e3%81%a7php%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/" title="yumでphpのインストール">yumでphpのインストール</a></li><li>2010 年 2 月 7 日 -- <a href="http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/" title="Symfony(1.4)でZendのライブラリを使う。">Symfony(1.4)でZendのライブラリを使う。</a></li><li>2010 年 1 月 30 日 -- <a href="http://morinoyume.com/techs/php%e3%81%a7twitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%80%82servicestwitter-php/" title="phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)">phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)</a></li><li>2010 年 1 月 26 日 -- <a href="http://morinoyume.com/techs/symfony1-4symfony1-3%e3%81%a7%e3%83%90%e3%83%83%e3%83%81%e5%87%a6%e7%90%86/" title="Symfony1.4(Symfony1.3)でバッチ処理">Symfony1.4(Symfony1.3)でバッチ処理</a></li><li>2010 年 1 月 20 日 -- <a href="http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/" title="PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）">PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/usrbinld-cannot-find-lltdl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/usrbinld-cannot-find-lltdl/" />
	</item>
		<item>
		<title>[propel-schema-reverse]there was an error building XML from metadata:could not find driver</title>
		<link>http://morinoyume.com/techs/propel-schema-reversethere-was-an-error-building-xml-from-metadatacould-not-find-driver/</link>
		<comments>http://morinoyume.com/techs/propel-schema-reversethere-was-an-error-building-xml-from-metadatacould-not-find-driver/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 18:15:56 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[技術]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=312</guid>
		<description><![CDATA[propel.iniでmysqlを使用することを記述し

symfony propel-build-schema

って打ったら

[propel-schema-reverse]there was an error bu [...]]]></description>
			<content:encoded><![CDATA[<p>propel.iniでmysqlを使用することを記述し</p>
<pre class="brush: plain;">
symfony propel-build-schema
</pre>
<p>って打ったら</p>
<pre class="brush: plain;">
[propel-schema-reverse]there was an error building XML from metadata:could not find driver
</pre>
<p>と出てきた。<br />
かなり悩んだ。困っている人もいると思うので解決方法を残しておく。</p>
<p>まず、ここでいうdriverというのはPDO(PHP Data Objects)のこと。<br />
phpでmysqlに接続しにいくdriverってことですね。windowsのodbcみたいなものかー<br />
なので、phpにpdoとpdo_mysqlっていうライブラリが無いと動かない。</p>
<p>peclで簡単にインストールできる。<br />
まずpdo</p>
<pre class="brush: plain;">
pecl install pdo
</pre>
<p>そして、pdo_mysql</p>
<pre class="brush: plain;">
pecl install pdo_mysql
</pre>
<p>この２つのインストールがエラーで落ちることもあるが、ググッってがんばる。<br />
たいていyumでインストールすれば治る系ばかり。</p>
<p>インストールしたらphp.iniに</p>
<pre class="brush: plain;">
extension=pdo.so
extension=pdo_mysql.so
</pre>
<p>の2行を足す。<br />
かならず、↑の順番で書かないといけない。<br />
（私は、順番がだめということに気づかず2時間以上も悩んだ・・・）</p>
<p>さて、ここまで来たらいけるかとおもいきや、</p>
<pre class="brush: plain;">
Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock'
</pre>
<p>ソケットがないだと！？pdo_mysqlのソケットの指定が「/var/lib/mysql/mysql.sock」になっている。<br />
なんとかこのソケットの向き先を本来の向き先に変えたいのだが方法が見つからない・・・<br />
仕方なくシンボリックリンクで逃げることに。</p>
<pre class="brush: plain;">
ln -s /tmp/mysql.sock /var/lib/mysql/mysql.sock
</pre>
<p>ようやく実行</p>
<pre class="brush: plain;">
symfony propel-build-schema
</pre>
<p>いけました。これでやっと開発できる。</p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2010 年 2 月 7 日 -- <a href="http://morinoyume.com/techs/symfony1-4%e3%81%a7zend%e3%81%ae%e3%83%a9%e3%82%a4%e3%83%96%e3%83%a9%e3%83%aa%e3%82%92%e4%bd%bf%e3%81%86%e3%80%82/" title="Symfony(1.4)でZendのライブラリを使う。">Symfony(1.4)でZendのライブラリを使う。</a></li><li>2010 年 1 月 26 日 -- <a href="http://morinoyume.com/techs/symfony1-4symfony1-3%e3%81%a7%e3%83%90%e3%83%83%e3%83%81%e5%87%a6%e7%90%86/" title="Symfony1.4(Symfony1.3)でバッチ処理">Symfony1.4(Symfony1.3)でバッチ処理</a></li><li>2010 年 1 月 30 日 -- <a href="http://morinoyume.com/techs/php%e3%81%a7twitter%e3%81%ab%e3%81%a4%e3%81%b6%e3%82%84%e3%81%8f%e3%80%82servicestwitter-php/" title="phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)">phpでtwitterにつぶやく。(&#8221;Services/Twitter.php&#8221;)</a></li><li>2010 年 1 月 20 日 -- <a href="http://morinoyume.com/techs/php%e3%81%ae%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7argv%e3%81%8cnull%e3%81%ae%e3%81%be%e3%81%be%ef%bc%88php-notice-undefined-variable-argv%ef%bc%89/" title="PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）">PHPのコマンドラインで$argvがNULLのまま（PHP Notice: Undefined variable: argv）</a></li><li>2010 年 1 月 18 日 -- <a href="http://morinoyume.com/techs/ethna%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82/" title="Ethnaをインストールしてみた。">Ethnaをインストールしてみた。</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/propel-schema-reversethere-was-an-error-building-xml-from-metadatacould-not-find-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/propel-schema-reversethere-was-an-error-building-xml-from-metadatacould-not-find-driver/" />
	</item>
		<item>
		<title>mcrypt 拡張をロードできません。PHP の設定を確認してください。</title>
		<link>http://morinoyume.com/techs/mcrypt-%e6%8b%a1%e5%bc%b5%e3%82%92%e3%83%ad%e3%83%bc%e3%83%89%e3%81%a7%e3%81%8d%e3%81%be%e3%81%9b%e3%82%93%e3%80%82php-%e3%81%ae%e8%a8%ad%e5%ae%9a%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%a6%e3%81%8f/</link>
		<comments>http://morinoyume.com/techs/mcrypt-%e6%8b%a1%e5%bc%b5%e3%82%92%e3%83%ad%e3%83%bc%e3%83%89%e3%81%a7%e3%81%8d%e3%81%be%e3%81%9b%e3%82%93%e3%80%82php-%e3%81%ae%e8%a8%ad%e5%ae%9a%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%a6%e3%81%8f/#comments</comments>
		<pubDate>Fri, 29 May 2009 17:47:51 +0000</pubDate>
		<dc:creator>YSU</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[サーバー構築]]></category>
		<category><![CDATA[技術]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[インフラ]]></category>

		<guid isPermaLink="false">http://morinoyume.com/?p=256</guid>
		<description><![CDATA[僕はインフラがとっても苦手。
そんな僕がサーバーをいじるとエラーの嵐である。
今日は、phpmyadminをインストールしていたら、
「mcrypt 拡張をロードできません。PHP の設定を確認してください。」
というエ [...]]]></description>
			<content:encoded><![CDATA[<p>僕はインフラがとっても苦手。<br />
そんな僕がサーバーをいじるとエラーの嵐である。<br />
今日は、phpmyadminをインストールしていたら、</p>
<p>「mcrypt 拡張をロードできません。PHP の設定を確認してください。」</p>
<p>というエラーが・・・。<br />
しらべてみると</p>
<pre class="brush: xml;">
yum install php-mcrypt
</pre>
<p>こんな簡単らしい・・・・</p>
<p>けど、できない。<br />
そのほかにもrpmでいれるだの、php.iniを編集するだのいろいろ試すが一向に直らない。<br />
僕の場合はphpのコンパイルからやり直さないとだめだったみたい。</p>
<pre class="brush: xml;">
--with-mcrypt --disable-posix-threads
</pre>
<p>よくわからんが、上記の2オプションつけたらうまくいきました。<br />
インストールはやけに時間かかったけど、<br />
再コンパイルはさっくりいけるんですね。</p>
<h3  class="related_post_title">関連の記事</h3><ul class="related_post"><li>2009 年 12 月 8 日 -- <a href="http://morinoyume.com/techs/mysql%e3%83%91%e3%83%bc%e3%83%86%e3%82%a3%e3%82%b7%e3%83%a7%e3%83%8b%e3%83%b3%e3%82%b0%e3%81%ae%e3%81%be%e3%81%a8%e3%82%81%e2%91%a0-%e8%a8%ad%e5%ae%9a%e3%83%bb%e5%86%8d%e3%82%b3%e3%83%b3%e3%83%91/" title="mysqlパーティショニングのまとめ① &#8211; 設定・再コンパイル">mysqlパーティショニングのまとめ① &#8211; 設定・再コンパイル</a></li><li>2009 年 11 月 29 日 -- <a href="http://morinoyume.com/techs/phpmyadmin%e3%81%a7%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%af%e3%81%aa%e3%81%84%e3%81%8c%e3%83%ad%e3%82%b0%e3%82%a4%e3%83%b3%e3%81%a7%e3%81%8d%e3%81%aa%e3%81%84%e7%8f%be%e8%b1%a1%e3%81%ab%e3%81%a4%e3%81%84/" title="phpMyAdminでエラーはないがログインできない現象について">phpMyAdminでエラーはないがログインできない現象について</a></li><li>2009 年 11 月 29 日 -- <a href="http://morinoyume.com/techs/%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a8apache%e3%81%aeconfiguration-file-php-ini-path-%e3%81%ae%e3%83%91%e3%82%b9%e3%81%8c%e9%81%95%e3%81%86%e4%bb%b6%e3%81%ab/" title="コマンドラインとapacheのConfiguration File (php.ini) Path のパスが違う件について">コマンドラインとapacheのConfiguration File (php.ini) Path のパスが違う件について</a></li><li>2009 年 5 月 30 日 -- <a href="http://morinoyume.com/techs/mysql%e3%81%8c%e7%ab%8b%e3%81%a1%e4%b8%8a%e3%81%8c%e3%82%89%e3%81%aa%e3%81%84%ef%bc%81%ef%bc%88starting-mysqlmanager-of-pid-file-quit-without-updating-fi/" title="mysqlが立ち上がらない！（Starting MySQL.Manager of pid-file quit without updating file)">mysqlが立ち上がらない！（Starting MySQL.Manager of pid-file quit without updating file)</a></li><li>2009 年 4 月 21 日 -- <a href="http://morinoyume.com/techs/yum%e3%81%a7php%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/" title="yumでphpのインストール">yumでphpのインストール</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://morinoyume.com/techs/mcrypt-%e6%8b%a1%e5%bc%b5%e3%82%92%e3%83%ad%e3%83%bc%e3%83%89%e3%81%a7%e3%81%8d%e3%81%be%e3%81%9b%e3%82%93%e3%80%82php-%e3%81%ae%e8%a8%ad%e5%ae%9a%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%a6%e3%81%8f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://morinoyume.com/techs/mcrypt-%e6%8b%a1%e5%bc%b5%e3%82%92%e3%83%ad%e3%83%bc%e3%83%89%e3%81%a7%e3%81%8d%e3%81%be%e3%81%9b%e3%82%93%e3%80%82php-%e3%81%ae%e8%a8%ad%e5%ae%9a%e3%82%92%e7%a2%ba%e8%aa%8d%e3%81%97%e3%81%a6%e3%81%8f/" />
	</item>
	</channel>
</rss>
