<?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>Hexe19 &#187; PHP</title>
	<atom:link href="http://hexe19.net/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://hexe19.net</link>
	<description>*scratch*</description>
	<lastBuildDate>Sat, 16 May 2009 03:54:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>php-mode.el (2)</title>
		<link>http://hexe19.net/2008/04/30/44/php-modeel-2/</link>
		<comments>http://hexe19.net/2008/04/30/44/php-modeel-2/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 15:43:02 +0000</pubDate>
		<dc:creator>you</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://hexe19.net/?p=44</guid>
		<description><![CDATA[php-mode.el を修正。
↓の様なインデントをサポートするように改造。
$a = array(
    'aaaa' => 1,
    'bbbb' => 2,
);
あと、もともと入っていた template という、ウィザード形式の入力支援が苦手だったので、全部その処理をしているところをばっさり削除。
便利な入力支援は yasnippet を使うことにする方がいいかも。
http://code.google.com/p/yasnippet/

php-mode.el (2008/04/30)
過去の php-mode.el

]]></description>
			<content:encoded><![CDATA[<p>php-mode.el を修正。</p>
<p>↓の様なインデントをサポートするように改造。</p>
<pre class="code">$a = array(
    'aaaa' => 1,
    'bbbb' => 2,
);</pre>
<p>あと、もともと入っていた template という、ウィザード形式の入力支援が苦手だったので、全部その処理をしているところをばっさり削除。<br />
便利な入力支援は <a href='http://code.google.com/p/yasnippet/' target='_blank'>yasnippet</a> を使うことにする方がいいかも。<br />
http://code.google.com/p/yasnippet/</p>
<ul>
<li><a href='/wp/wp-content/uploads/2008/04/php-mode1.el'>php-mode.el (2008/04/30)</a></li>
<li><a href='/2008/03/01/5/'>過去の php-mode.el</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hexe19.net/2008/04/30/44/php-modeel-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php-mode.el</title>
		<link>http://hexe19.net/2008/03/01/5/php-modeel/</link>
		<comments>http://hexe19.net/2008/03/01/5/php-modeel/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 08:04:11 +0000</pubDate>
		<dc:creator>you</dc:creator>
				<category><![CDATA[Emacs]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://hexe19.net/wp/2008/03/01/5/</guid>
		<description><![CDATA[※新しい php-mode.el (2008/04/30)
PHP を使うことになったので emacs の php-mode を入れてみたけど、非常に使いにくい状態。
不満噴出で、いろいろ調べて既存の２つの php-mode をくっつけて修正したバージョン。
php-mode.el ver 0.0.4 と php-mode.el var 1.2.0を混ぜて少し修正。
meadow で動作確認。
site-lisp に php-mode.el　をコピーして、
.emacs に以下の行を追加。
(autoload 'php-mode "php-mode" "PHP mode" t)

(setq auto-mode-alist
      (cons '("\\.\\(php\\&#124;php5\\&#124;inc\\)$" . php-mode) auto-mode-alist))
(add-hook 'php-mode-hook '(lambda ()
			    (setq php-intelligent-tab nil)
			    (setq intelligent-tab nil)
			    (setq [...]]]></description>
			<content:encoded><![CDATA[<p><strong>※<a href='http://hexe19.net/2008/04/30/44/'>新しい php-mode.el (2008/04/30)</a></strong><br />
PHP を使うことになったので emacs の php-mode を入れてみたけど、非常に使いにくい状態。<br />
不満噴出で、いろいろ調べて既存の２つの php-mode をくっつけて修正したバージョン。</p>
<p><a href="http://mewde.googlecode.com/files/php-mode.el" title='php-mode.el ver 0.0.4' target="_blank">php-mode.el ver 0.0.4</a> と <a href="http://www.emacswiki.org/cgi-bin/wiki/PhpMode" title='php-mode.el var 1.2.0' target="_blank">php-mode.el var 1.2.0</a>を混ぜて少し修正。</p>
<p>meadow で動作確認。</p>
<p>site-lisp に <a href='http://hexe19.net/wp/wp-content/uploads/2008/03/php-mode.el' title='php-mode.el'>php-mode.el</a>　をコピーして、<br />
.emacs に以下の行を追加。</p>
<pre class="code">(autoload 'php-mode "php-mode" "PHP mode" t)

(setq auto-mode-alist
      (cons '("\\.\\(php\\|php5\\|inc\\)$" . php-mode) auto-mode-alist))
(add-hook 'php-mode-hook '(lambda ()
			    (setq php-intelligent-tab nil)
			    (setq intelligent-tab nil)
			    (setq indent-tabs-mode t)
			    (setq c-basic-offset 4)
			    (setq tab-width 4)
			    ) t)
</pre>
<ul>
<li><a href='http://hexe19.net/wp/wp-content/uploads/2008/03/php-mode.el' title='php-mode.el'>php-mode.el 2008/03/01</a></li>
<li><a href='http://hexe19.net/wp/wp-content/uploads/2008/03/php-mode.el-02' title='php-mode.el ちょっと修正 02'>php-mode.el ※追記 2008/03/18 ちょっと修正版</a></li>
<li><a href='http://hexe19.net/wp/wp-content/uploads/2008/04/php-mode.el' title='php-mode.el 2008/04/24'>php-mode.el ※追記 2008/04/24 # のコメントはないことにして、コメント内で#以降の色がおかしくなるのを修正。</li>
<li><a href='http://hexe19.net/2008/04/30/44/'>新しい php-mode.el (2008/04/30)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hexe19.net/2008/03/01/5/php-modeel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 日本語版 2.3.3 on Xserver</title>
		<link>http://hexe19.net/2008/03/01/3/wordpress-%e6%97%a5%e6%9c%ac%e8%aa%9e%e7%89%88-233-on-xserver/</link>
		<comments>http://hexe19.net/2008/03/01/3/wordpress-%e6%97%a5%e6%9c%ac%e8%aa%9e%e7%89%88-233-on-xserver/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 20:20:47 +0000</pubDate>
		<dc:creator>you</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://hexe19.net/wp/2008/03/01/wordpress-%e6%97%a5%e6%9c%ac%e8%aa%9e%e7%89%88-233-on-xserver/</guid>
		<description><![CDATA[
http://ja.wordpress.org/ から wordpress-2.3.3-ja.zip をっとってきてインストール。
けれども、インストール画面 wp-admin/install.php へアクセスすると長時間待たされたあげく、 Internal Server Error を吐いて終了してしまう。
コードを追っていくと、wp-includes/wp-db.php の164行目付近の error_log($error_str, 0); から戻ってこない。どうやらこれをコメントアウトする必要あり。
error_log($error_str, 0);↓
//error_log($error_str, 0);
これで、インストールが問題なく進む。無事インストール完了。
おそらく php.ini の error_log 辺りの設定をちゃんとすればいいのだと思うけど、ひとまずこれで。
]]></description>
			<content:encoded><![CDATA[<p><a href='http://hexe19.net/2008/03/01/3/wordpress-logo-2/' rel='attachment wp-att-17' title='WordPress Logo' target="_blank"><img src='http://hexe19.net/wp/wp-content/uploads/2008/03/wordpress-logo-mini.png' alt='WordPress Logo' class="entry-image" /></a><br />
<a href="http://ja.wordpress.org/" target="_blank">http://ja.wordpress.org/</a> から wordpress-2.3.3-ja.zip をっとってきてインストール。</p>
<p>けれども、インストール画面 wp-admin/install.php へアクセスすると長時間待たされたあげく、 Internal Server Error を吐いて終了してしまう。</p>
<p>コードを追っていくと、wp-includes/wp-db.php の164行目付近の error_log($error_str, 0); から戻ってこない。どうやらこれをコメントアウトする必要あり。</p>
<p><code>error_log($error_str, 0);</code>↓<br />
<code>//error_log($error_str, 0);</code></p>
<p>これで、インストールが問題なく進む。無事インストール完了。</p>
<p>おそらく php.ini の error_log 辺りの設定をちゃんとすればいいのだと思うけど、ひとまずこれで。</p>
]]></content:encoded>
			<wfw:commentRss>http://hexe19.net/2008/03/01/3/wordpress-%e6%97%a5%e6%9c%ac%e8%aa%9e%e7%89%88-233-on-xserver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
