<?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>Life &#187; 開発環境</title>
	<atom:link href="http://life.co-hey.com/tag/%e9%96%8b%e7%99%ba%e7%92%b0%e5%a2%83/feed/" rel="self" type="application/rss+xml" />
	<link>http://life.co-hey.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 08:15:38 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Macにapacheとかインストール（その後）</title>
		<link>http://life.co-hey.com/2010/02/mac%e3%81%abapache%e3%81%a8%e3%81%8b%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%ef%bc%88%e3%81%9d%e3%81%ae%e5%be%8c%ef%bc%89/</link>
		<comments>http://life.co-hey.com/2010/02/mac%e3%81%abapache%e3%81%a8%e3%81%8b%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%ef%bc%88%e3%81%9d%e3%81%ae%e5%be%8c%ef%bc%89/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 03:17:33 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com/?p=532</guid>
		<description><![CDATA[先日、こんな記事を書きました。 http://life.co-hey.com/2010/02/macにapacheとかインストール インストールは無事に終了。日を改めてapache経由でphpを動かそうとしたところ全然動 [...]]]></description>
			<content:encoded><![CDATA[<p>
先日、こんな記事を書きました。<br />
<a href="http://life.co-hey.com/2010/02/mac%E3%81%ABapache%E3%81%A8%E3%81%8B%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB/">http://life.co-hey.com/2010/02/macにapacheとかインストール<br />
</a><br />
インストールは無事に終了。日を改めてapache経由でphpを動かそうとしたところ全然動かない。さて、困った。index.htmlおいてみたところ、これも表示されない。んー、さらに困った。ということで調べて、httpd.confを修正。<br />
<br />
・修正点1<br />
Directory設定の、&#8221;Deny from all&#8221; を &#8220;Allow from all&#8221; へ。<br />
これで自分で作成したvirtualhostのdocumentrootでアクセス可能になった。index.htmlはこの時点で参照可能に。<br />
<br />

<div class="wp_codebox"><table><tr id="p5324"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p532code4"><pre class="php" style="font-family:Osaka-mono,monospace;"><span style="color: #339933;">&lt;</span>Directory <span style="color: #339933;">/&gt;</span>
    Options FollowSymLinks
    AllowOverride None
    Order deny<span style="color: #339933;">,</span>allow
<span style="color: #666666; font-style: italic;">#    Deny from all
</span>    Allow from all
<span style="color: #339933;">&lt;/</span>Directory<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<br />
<br />
<br />
・修正点2<br />
phpのmodulleを読み込みむように以下の行を追加。<br />
ソースからインストールしたときにこれどっかのタイミングで自動で記述されてた気がしたが、今回なかったので追加。<br />
index.phpがこの時点で参照可能に。<br />
<br />

<div class="wp_codebox"><table><tr id="p5325"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p532code5"><pre class="php" style="font-family:Osaka-mono,monospace;">LoadModule php5_module        modules<span style="color: #339933;">/</span>libphp5<span style="color: #339933;">.</span>so</pre></td></tr></table></div>

<br />
<br />
<br />
・修正点3<br />
http://test.local/ 等にアクセスした際に、index.htmlまたはindex.phpを読み込んでくれるように以下の設定を追加。<br />
<br />

<div class="wp_codebox"><table><tr id="p5326"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p532code6"><pre class="php" style="font-family:Osaka-mono,monospace;">DirectoryIndex index<span style="color: #339933;">.</span>html index<span style="color: #339933;">.</span>php</pre></td></tr></table></div>

<br />
<br />
<br />
これで http://test.local/ にて index.phpが読み込まれることに成功。<br />
環境構築ってたまにしかやらないから、やる度に同じところ調べてしまいますね。そして自分の残念さにがっかりします。あと何回か作り直したら覚えるでしょうか。<br />
<br />
あとは、php経由でMySQLにつなげれたら、OK。無事にいきますように。</p>

<a href="http://twitter.com/?status=RT%20%40%3A%20Mac%E3%81%ABapache%E3%81%A8%E3%81%8B%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%EF%BC%88%E3%81%9D%E3%81%AE%E5%BE%8C%EF%BC%89%20-%20Life%20http%3A%2F%2Ftinyurl.com%2F25txnou" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2010/02/mac%e3%81%abapache%e3%81%a8%e3%81%8b%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%ef%bc%88%e3%81%9d%e3%81%ae%e5%be%8c%ef%bc%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ViとSubversion</title>
		<link>http://life.co-hey.com/2008/06/visubversion/</link>
		<comments>http://life.co-hey.com/2008/06/visubversion/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 23:46:10 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=132</guid>
		<description><![CDATA[Mac OSX Leopardに入っているサブバージョンを使おうと 調べていたら...]]></description>
			<content:encoded><![CDATA[<p>
<p>Mac OSX Leopardに入っているサブバージョンを使おうと<br /><br />
調べていたら、eclipseが出てきて文字化けでめんどくさくなったり、<br /><br />
viを使いやすいようにすることに興味が出たり。</p>
<br />
<p>結局、サブバージョンのクライアントを決めきれずに、今日は終了。<br /><br />
eclipseはphpファイルはいいのだけど、smartyを使ったhtmlファイルの<br /><br />
デフォルト文字コードがSJISになってしまって、文字化け。。。<br /><br />
htdocsを書いていないと、UTF-8になってくれない。</p>
<br />
<p>また時間見つけて調査すると思う。</p>
<br />
<p>見つけた資料となるサイト</p>
<br />
<p>http://d.hatena.ne.jp/tenkousei/20080120/1200825816<br /><br />
http://d.hatena.ne.jp/zariganitosh/20071103/1194140667<br /><br />
http://www.moongift.jp/2008/06/versions/<br /><br />
<br />
http://scplugin.tigris.org/servlets/ProjectDocumentList</p>
<br />
<p><br />
http://www.minfish.jp/blog/archives/2006/01/osxvi.html<br /><br />
http://www.asahi-net.or.jp/~wv7y-kmr/memo/vim_php.html<br /><br />
<br />
http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/</p>
</p>

<a href="http://twitter.com/?status=RT%20%40%3A%20Vi%E3%81%A8Subversion%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fyfonksn" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/06/visubversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse3.3にした</title>
		<link>http://life.co-hey.com/2008/06/eclipse33/</link>
		<comments>http://life.co-hey.com/2008/06/eclipse33/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 20:40:15 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=131</guid>
		<description><![CDATA[PDTを使うのに、3.3にしようとしたが、Eclipse Classicから い...]]></description>
			<content:encoded><![CDATA[<p>
<p>PDTを使うのに、3.3にしようとしたが、Eclipse Classicから<br /><br />
いろいろインストールして、動くようになった。<br /><br />
けれど、ヘルプ→ソフトウェア更新から、更新しようとするとエラー多数。</p>
<br />
<p>なんでだ？と思い、PDTのall-in-oneパッケージもインストールしてみる。<br /><br />
これならエラーでないかと思ったけど、やっぱり出る。<br /><br />
使えるならいいやと思わないといけないものなのか！？</p>
<br />
<p>とりあえず、今のまま仕事で使ってみよう。<br /><br />
家で開発するときは、ターミナルでviで十分だなと思っているんだけど、<br /><br />
いい感じなら、家にもEclipse入れてみようかな。<br /><br />
家なら、ApacheもMySQLもPHPもローカルにインストールされているから、<br /><br />
ちゃんと統合開発環境を作れそう。</p>
<br />
<p>それをやるなら、サブバージョンもやってみようかな。<br /><br />
ソース消えたら、かなりショックだし。</p>
<br />
<p>参考にさせていただいたサイト<br /><br />
http://download.eclipse.org/webtools/downloads/<br /><br />
http://download.eclipse.org/tools/pdt/downloads/<br /><br />
http://www.eclipse.org/mylyn/downloads/<br /><br />
http://server.seasar.org/manual/install_subclipse.html<br /><br />
http://hp.vector.co.jp/authors/VA000137/eclipse/smarty_editor/smarty_editor.html<br /><br />
http://zone.maple4ever.net/documents/xampp_eclipse06.html<br /><br />
<br />
http://de-lab.com/article/eclipse_aptana</p>
<br />
<p>6月8日追記<br /><br />
Macにインストールすときの注意点<br /><br />
<br />
http://d.hatena.ne.jp/alice_qux/20080209/1202551093</p>
</p>

<a href="http://twitter.com/?status=RT%20%40%3A%20Eclipse3.3%E3%81%AB%E3%81%97%E3%81%9F%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fybckttg" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/06/eclipse33/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vimrcの項目</title>
		<link>http://life.co-hey.com/2008/06/vimrc/</link>
		<comments>http://life.co-hey.com/2008/06/vimrc/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 11:28:27 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=130</guid>
		<description><![CDATA[結構前に、オオヒダさんに教えてもらったのが出てきた。 忘れないようにここにメモっ...]]></description>
			<content:encoded><![CDATA[<p>
<p>結構前に、オオヒダさんに教えてもらったのが出てきた。<br /><br />
忘れないようにここにメモっておく</p>
<br />
<p>~/.vimrc においてください</p>
<br />
<p>set nonumber<br /><br />
set showmode<br /><br />
set showmatch<br /><br />
set matchtime=1<br /><br />
set cmdheight=2<br /><br />
set autoindent<br /><br />
set tabstop=4<br /><br />
set expandtab<br /><br />
set shiftwidth=4<br /><br />
set ignorecase<br /><br />
set smartcase<br /><br />
set wrapscan<br /><br />
set laststatus=2<br /><br />
set showcmd</p></p>

<a href="http://twitter.com/?status=RT%20%40%3A%20vimrc%E3%81%AE%E9%A0%85%E7%9B%AE%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fyz89o7j" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/06/vimrc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDTとかいうもの</title>
		<link>http://life.co-hey.com/2008/05/pdt/</link>
		<comments>http://life.co-hey.com/2008/05/pdt/#comments</comments>
		<pubDate>Tue, 27 May 2008 16:17:57 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=128</guid>
		<description><![CDATA[http://www.thinkit.co.jp/article/73/3/ ラ...]]></description>
			<content:encoded><![CDATA[<p>
<p><a href="http://www.thinkit.co.jp/article/73/3/" target="_blank">http://www.thinkit.co.jp/article/73/3/</a></p>
<br />
<p>ラインデバッグができるのは、便利だと思う。<br /><br />
特にZendだと、例外がthrowされたら、全部Error_Controllerに行くから、<br /><br />
どこでエラーが起こったかを特定するのに、データ取得用の処理が必要。<br /><br />
（サービスとしてリリースするときは必ず必要だけれど）</p>
<br />
<p>ラインデバッグができたら、開発中は手間が低減される。<br /><br />
そこが魅力的。どのくらい使えるものなのか、試してみる価値はありそう。</p></p>

<a href="http://twitter.com/?status=RT%20%40%3A%20PDT%E3%81%A8%E3%81%8B%E3%81%84%E3%81%86%E3%82%82%E3%81%AE%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fyf2vmmt" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/05/pdt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.htacessでRewriteを可能にする</title>
		<link>http://life.co-hey.com/2008/05/htacessrewrite/</link>
		<comments>http://life.co-hey.com/2008/05/htacessrewrite/#comments</comments>
		<pubDate>Thu, 08 May 2008 11:09:52 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=124</guid>
		<description><![CDATA[今作っているプログラムは、Zend Frameworkを利用しているので、 .h...]]></description>
			<content:encoded><![CDATA[<p>
<p>今作っているプログラムは、Zend Frameworkを利用しているので、<br /><br />
.htaccessが利用できる必要があります。</p>
<br />
<p>前回の記事で書いたphpMyAdminを設置した後、作りかけのプログラムを<br /><br />
サーバからダウンロードしてきて設置したところ、見事に動きません。<br /><br />
調べていくと、RewriteEngineが動いてない様子。</p>
<br />
<p>Apacheの設定に問題がありました。<br /><br />
configureのオプションも、httpd.confの記述も不足していました。<br /><br />
以下のサイトを参考に、Apacheのmakeをやりなおして解決！！</p>
<br />
<p>こちらの記事に書いていた configureの内容も修正してあります。<br /><br />
一番最後の &#8220;&#8211;enable-rewrite=shared&#8221; の部分が付け足したところです。</p>
<br />
<p><br />
mod_rewriteを有効にする方法<br /><br />
<br />
http://memorva.jp/memo/linux/mod_rewrite.php</p>
<br />
<p>htaccessを有効にする方法<br /><br />
http://www.site-cooler.com/tips/apache_htaccess.htm<br /><br />
<br />
http://httpd.apache.org/docs/2.2/ja/mod/core.html#allowoverride</p>
</p>

<a href="http://twitter.com/?status=RT%20%40%3A%20.htacess%E3%81%A7Rewrite%E3%82%92%E5%8F%AF%E8%83%BD%E3%81%AB%E3%81%99%E3%82%8B%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fyflfebp" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/05/htacessrewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpMyAdmin 2.11.6をインストール</title>
		<link>http://life.co-hey.com/2008/05/phpmyadmin_2116/</link>
		<comments>http://life.co-hey.com/2008/05/phpmyadmin_2116/#comments</comments>
		<pubDate>Sat, 03 May 2008 14:52:39 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=123</guid>
		<description><![CDATA[Mac OS X (Leopard)に、phpMyAdmin 2.1.16をイン...]]></description>
			<content:encoded><![CDATA[<p>
<p>Mac OS X (Leopard)に、phpMyAdmin 2.1.16をインストールしました。</p>
<br />
<p>普段は、ターミナルからコマンドラインで、DBは扱うのですが、<br /><br />
データのインポート、エクスポートは、phpMyAdminが楽だと思っているので。<br /><br />
たまに、alterコマンドで、カラムの型変換等のコマンドラインを忘れますが、<br /><br />
phpMyAdminがあれば、ど忘れしたときでも平気です。</p>
<br />
<p>簡単にインストールできたので、開発環境構築時についでに<br /><br />
インストールしておいて損はないと思います。</p>
<br />
<p>参考にさせていただいたページはこちらです。<br /><br />
<br />
http://www.kadoppe.net/2007/12/mac-os-xleopardphpmyadmin.html</p>
</p>

<a href="http://twitter.com/?status=RT%20%40%3A%20phpMyAdmin%202.11.6%E3%82%92%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fyhpqotc" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/05/phpmyadmin_2116/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualHost設定</title>
		<link>http://life.co-hey.com/2008/05/virtualhost/</link>
		<comments>http://life.co-hey.com/2008/05/virtualhost/#comments</comments>
		<pubDate>Fri, 02 May 2008 13:31:47 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=121</guid>
		<description><![CDATA[作成するサイトのURLを決め、hosts、VirtualHostにサーバ名を追加...]]></description>
			<content:encoded><![CDATA[<p>
<p>作成するサイトのURLを決め、hosts、VirtualHostにサーバ名を追加して、Apache再起動。</p>
<br />
<p>今回は、3つのVirrualHostを設定したのですが、この3つのドメイン名を打ち込んでも、<br /><br />
一番最初に記述してあるVirtualHostのDocumentRootを見にいってしまっている。</p>
<br />
<p>なんでだろう？30分くらい調べてたけど、よくわからなかったのです。<br /><br />
さきほど、再度調べていたら、もしかしたら NameVirtualHost の記述忘れな気がしてきました。</p>
<br />
<p>&lt;VirtualHost xx&gt;～&lt;/VirtualHost&gt;の部分ばかり調べてて、頭から抜けてました。<br /><br />
そして、多分これ基本ですよね。自分のサーバ周りの知識のなさが浮き彫りに。。</p>
<br />
<p>早速、時間が取れたときに試してみます。</p>
<br />
<p>==== 追記 2008/05/03 ===<br /><br />
NameVirrualHostの記述を追記して、Apache再起動したら正常に動作しました。<br /><br />
</p></p>

<a href="http://twitter.com/?status=RT%20%40%3A%20VirtualHost%E8%A8%AD%E5%AE%9A%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fylq3xwj" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/05/virtualhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>環境構築一区切り</title>
		<link>http://life.co-hey.com/2008/05/post_67/</link>
		<comments>http://life.co-hey.com/2008/05/post_67/#comments</comments>
		<pubDate>Thu, 01 May 2008 03:33:52 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=120</guid>
		<description><![CDATA[Apache2.0.61、mysql-5.1.23-rc、php-5.2.4のイ...]]></description>
			<content:encoded><![CDATA[<p>
<p>Apache2.0.61、mysql-5.1.23-rc、php-5.2.4のインストール終了。<br /><br />
http://localhost/でphpinfo();を表示できるところまで確認。<br /><br />
mysqlもターミナルからコマンドラインでなら接続可能なことも確認。</p>
<br />
<p>次は、phpプログラムからmysqlに接続できることを確認しよう。<br /><br />
あんまり理解は深まってはいないけど、前に進んでいる感じがうれしい。<br /><br />
configureのオプションって、迷いますね。</p>
<br />
<p><br />
参考にさせていただいたのは、このあたりです。<br /><br />
http://www.kadoppe.net/2007/12/mac-os-xleopardxcode.html<br /><br />
http://www.kadoppe.net/2007/12/mac-os-xmysql5051.html<br /><br />
http://www.kadoppe.net/2007/12/mac-os-xleopardapache-2061-1.html<br /><br />
http://www.kadoppe.net/2007/12/mac-os-xleopardphp-512.html<br /><br />
http://hivelogic.com/articles/2007/11/installing-mysql-on-mac-os-x<br /><br />
<br />
http://d.hatena.ne.jp/heavenshell/20071114</p>
<br />
<p>configureは以下のとおりです</p>
<br />
<p>【mysql】<br /><br />
<div class="code2"><br />
CC=gcc CFLAGS=&#8221;-O3 -fno-omit-frame-pointer&#8221; CXX=gcc CXXFLAGS=&#8221;-O3 -fno-omit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti&#8221; ./configure &#8211;prefix=/opt/local/mysql  &#8211;enable-assembler &#8211;with-mysqld-ldflags=-all-static -with-charset=utf8 &#8211;with-extra-charsets=complex &#8211;enable-thread-safe-client &#8211;enable-local-infile &#8211;disable-shared<br /><br />
</div></p>
<br />
<p>【apache】<br /><br />
<div class="code2"><br />
./configure &#8211;prefix=/opt/local/apache2 &#8211;enable-force-cgi-redirect &#8211;with-gd &#8211;enable-ftp &#8211;enable-memory-limit &#8211;with-ttf &#8211;enable-track-vars &#8211;enable-trans-sid &#8211;enable-zend-multibyte &#8211;enable-mbstring &#8211;enable-mbstr-enc-trans &#8211;enable-mbregex &#8211;enable-exif &#8211;with-curl &#8211;enable-soap &#8211;enable-so  &#8211;enable-rewrite=shared<br /><br />
</div></p>
<br />
<p>【php】<br /><br />
<div class="code2"><br />
./configure &#8211;prefix=/opt/local/php &#8211;with-apxs2=/opt/local/apache2/bin/apxs &#8211;with-zlib=/opt/local &#8211;enable-calendar &#8211;enable-exif &#8211;enable-zend-multibyte &#8211;enable-mbstring &#8211;enable-mbregex &#8211;with-libxml-dir=/opt/local &#8211;with-mysql=/opt/local/mysql &#8211;with-jpeg-dir=/opt/local &#8211;with-png-dir=/opt/local &#8211;with-t1lib=/opt/local &#8211;with-iconv &#8211;with-iconv-dir=/usr &#8211;with-mcrypt=/opt/local &#8211;with-curl=/opt/local &#8211;with-freetype-dir=/opt/local &#8211;with-gettext=/opt/local &#8211;with-xmlrpc &#8211;with-pear &#8211;enable-soap &#8211;with-pdo-mysql=/opt/local/mysql &#8211;enable-cli<br /><br />
</div></p></p>

<a href="http://twitter.com/?status=RT%20%40%3A%20%E7%92%B0%E5%A2%83%E6%A7%8B%E7%AF%89%E4%B8%80%E5%8C%BA%E5%88%87%E3%82%8A%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fyhfhput" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/05/post_67/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Book Pro買いました</title>
		<link>http://life.co-hey.com/2008/04/mac_book_pro/</link>
		<comments>http://life.co-hey.com/2008/04/mac_book_pro/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 16:07:14 +0000</pubDate>
		<dc:creator>co-hey</dc:creator>
				<category><![CDATA[web & pc]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[開発環境]]></category>

		<guid isPermaLink="false">http://life.co-hey.com//wp/?p=119</guid>
		<description><![CDATA[今までデスクトップのみでやってきましたが、 ノートが必要になってきて、どうせなら...]]></description>
			<content:encoded><![CDATA[<p>
<p>今までデスクトップのみでやってきましたが、<br /><br />
ノートが必要になってきて、どうせならってことで、Mac Book Proを買いました。</p>
<br />
<p>今、MySQLをインストールしたりしています。<br /><br />
今回、ソースからコンパイルしてインストールしようとしてますが、<br /><br />
今のところ、エラーが出てうまくいっていません。</p>
<br />
<p>これから、やったことを少しずつまとめていきます。自分で忘れないためにも。</p>
<br />
<p>無線LANも今回初めて導入したのですが、ケーブルがないことが<br /><br />
こんなに快適だってことに、驚いています。</p>
<br />
<p>そして、電源ケーブルのプラスチックのキャップを初日になくしました。<br /><br />
こういうところは相変わらずです。がさつなのです。</p></p>

<a href="http://twitter.com/?status=RT%20%40%3A%20Mac%20Book%20Pro%E8%B2%B7%E3%81%84%E3%81%BE%E3%81%97%E3%81%9F%20-%20Life%20http%3A%2F%2Ftinyurl.com%2Fyfg9wmn" class="tweet-this" ><img src="http://life.co-hey.com/wp-content/plugins/simple-tweet/img/tweet.gif" title="つぶやく" alt="つぶやく" /></a>]]></content:encoded>
			<wfw:commentRss>http://life.co-hey.com/2008/04/mac_book_pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

