<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/ME2.2.3" -->
<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/"
	>

<channel>
	<title>findxfine</title>
	<link>http://www.findxfine.com</link>
	<description>WordPress ME 2.2 - Capriccioso</description>
	<pubDate>Tue, 06 Jan 2009 05:07:39 +0900</pubDate>
	<generator>http://wordpress.org/?v=ME2.2.3</generator>
	<language>ja</language>
			<item>
		<title>WordPress2.7へのアップグレードとセキュリティ対策</title>
		<link>http://www.findxfine.com/wordpress/793.html</link>
		<comments>http://www.findxfine.com/wordpress/793.html#comments</comments>
		<pubDate>Fri, 26 Dec 2008 18:16:33 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/wordpress/793.html</guid>
		<description><![CDATA[2.2.1から2.7へWordPressをバージョンアップした際の覚書。
※バージョンの確認 : p-includes/version.phpに記載がある。
アップグレードの情報源

アップグレード
WordPress のアップグレード
WordPress のアップグレード/詳細

wordpress.orgの記載
     「アップグレードの前に、index.php など変更した可能性のあるすべてのファイルのバックアップコピーを必ずとってください。
1. 変更したファイルを保存し、古い WP ファイルを削除します
2. 新しいファイルをアップロードします
3. ブラウザで /wp-admin/upgrade.phpにアクセスします
4. もっと何かしたかったですか ? これだけです !」
さらに詳しい手順は Codex 日本語版の「WordPress のアップグレード」を参照してください。」
セキュリティ対策
ファイルの削除
wp-admin/install.php,wp-admin/upgrade.phpの削除
wp-config.phpのパーミッション
604へ変更
認証用ユニークキーの設定(2.6以降から追加)
wp-config.phpで設定する。

define('AUTH_KEY', 'キーの値'); // 固有の語句に変更してください。
define('SECURE_AUTH_KEY', 'キーの値'); // 固有の語句に変更してください。
define('LOGGED_IN_KEY', 'キーの値'); // 固有の語句に変更してください。
認証用ユニークキーは2.7でも必須ではないが、セキュリティのために設定することが推奨される。
ユニークキー作成アドレス http://api.wordpress.org/secret-key/1.1/
adminの変更
新たに管理者権限のユーザーを作成。
ログアウトし、作成したユーザーでログインしてadminを削除。
wp-adminディレクトリ(管理者画面)のアクセス制限
.htaccessによるアクセス制限
テーブル接頭字(プレフィックス)の変更
wp_からwp_1234_へ変更する場合の例(実際は推測されにくい文字列)。
1.wp-config.phpの設定
$table_prefix  = &#8216;wp_1234_’
2.DBの変更
2-1 テーブル名の変更
RENAME TABLE `wp_comments` TO `wp_1234_comments`;

RENAME TABLE `wp_links` TO `wp_1234_links`;

RENAME TABLE `wp_options` TO `wp_1234_options`;

RENAME TABLE `wp_postmeta` TO `wp_1234_postmeta`;

RENAME TABLE [...]]]></description>
		<wfw:commentRss>http://www.findxfine.com/wordpress/793.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>IE7, IE6に対するCSSハック : CSS</title>
		<link>http://www.findxfine.com/css/792.html</link>
		<comments>http://www.findxfine.com/css/792.html#comments</comments>
		<pubDate>Tue, 16 Dec 2008 13:30:35 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[hack]]></category>

		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/css/792.html</guid>
		<description><![CDATA[IE6,7専用のハックのまとめ。

#hoge {			/* 一般のブラウザに適用 */
	margin: 10px;
	padding: 6px;
}
* html #hoge { 		/* IE6にのみ適用 */
	padding: 4px;
}
*+html #hoge { 		/* IE7にのみ適用 */
	padding: 2px;
}
同一セレクタ内で、IE6以前にのみ適用したい場合

#hoge {
	margin: 10px;
	padding: 6px !important;	/* 一般のモダンブラウザに適用 */
	padding: 4px;		/* IE6以前にのみ適用 */
}
IE6以前が!importantを解釈しないことを利用。
]]></description>
		<wfw:commentRss>http://www.findxfine.com/css/792.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>stage, rootの覚書</title>
		<link>http://www.findxfine.com/as3/791.html</link>
		<comments>http://www.findxfine.com/as3/791.html#comments</comments>
		<pubDate>Wed, 10 Dec 2008 18:00:46 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript3]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/as3/791.html</guid>
		<description><![CDATA[表示リストに追加していないオブジェクトはstage,rootを参照できない。
]]></description>
		<wfw:commentRss>http://www.findxfine.com/as3/791.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>ActionScript 3.0を始めました : AS3</title>
		<link>http://www.findxfine.com/as3/790.html</link>
		<comments>http://www.findxfine.com/as3/790.html#comments</comments>
		<pubDate>Wed, 10 Dec 2008 17:54:06 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ActionScript3]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/as3/790.html</guid>
		<description><![CDATA[本ブログはAS3用にActionScript3を追加しました。ActionScriptカテゴリーは、AS2について記載しています。
]]></description>
		<wfw:commentRss>http://www.findxfine.com/as3/790.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>シンプルなFireworksのテクスチャ2</title>
		<link>http://www.findxfine.com/fireworks/787.html</link>
		<comments>http://www.findxfine.com/fireworks/787.html#comments</comments>
		<pubDate>Mon, 24 Nov 2008 16:15:51 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Fireworks]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/fireworks/787.html</guid>
		<description><![CDATA[シンプルなFireworksのテクスチャを作成。
]]></description>
		<wfw:commentRss>http://www.findxfine.com/fireworks/787.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>PEAR : PHP</title>
		<link>http://www.findxfine.com/php/784.html</link>
		<comments>http://www.findxfine.com/php/784.html#comments</comments>
		<pubDate>Mon, 10 Nov 2008 12:55:13 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[pear]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/php/784.html</guid>
		<description><![CDATA[PEARをレンタルサーバで利用する覚書。
]]></description>
		<wfw:commentRss>http://www.findxfine.com/php/784.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>動画をFLV形式に変換してFlash MX 2004で表示 : ActionScript</title>
		<link>http://www.findxfine.com/actionscript/783.html</link>
		<comments>http://www.findxfine.com/actionscript/783.html#comments</comments>
		<pubDate>Sun, 09 Nov 2008 17:56:10 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[movie]]></category>

		<category><![CDATA[ActionScript]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/actionscript/783.html</guid>
		<description><![CDATA[動画をFLV形式に変換してFlash MX 2004で表示する覚書。
]]></description>
		<wfw:commentRss>http://www.findxfine.com/actionscript/783.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>ローカル環境でPerlを試す : Perl</title>
		<link>http://www.findxfine.com/perl/782.html</link>
		<comments>http://www.findxfine.com/perl/782.html#comments</comments>
		<pubDate>Wed, 29 Oct 2008 16:45:50 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/perl/782.html</guid>
		<description><![CDATA[1.ActivePerlをインストール
2.Apacheをインストール
3.Apache設定ファイルhttpd.confのScriptAliasを設定
4.Perlファイルの先頭にperl.exeへのパスを記述。C:/perl/bin/perl.exeの場合。
#!C:/perl/bin/perl
]]></description>
		<wfw:commentRss>http://www.findxfine.com/perl/782.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>ScriptAlias : Apache</title>
		<link>http://www.findxfine.com/apache/781.html</link>
		<comments>http://www.findxfine.com/apache/781.html#comments</comments>
		<pubDate>Wed, 29 Oct 2008 16:41:50 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/apache/781.html</guid>
		<description><![CDATA[ScriptAliasはCGIの動作ディレクトリを設定する。
ScriptAlias /cgi-bin/ "C:/Program Files/Apache Group/Apache2/cgi-bin/"
programディレクトリに変更する場合。
ScriptAlias /program/ "C:/Program Files/Apache Group/Apache2/program/"
]]></description>
		<wfw:commentRss>http://www.findxfine.com/apache/781.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>DocumentRoot : Apache</title>
		<link>http://www.findxfine.com/apache/780.html</link>
		<comments>http://www.findxfine.com/apache/780.html#comments</comments>
		<pubDate>Wed, 29 Oct 2008 16:35:59 +0900</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.findxfine.com/apache/780.html</guid>
		<description><![CDATA[DocumentRootはWeb上へ公開するディレクトリ(	ドキュメントルート)を設定する。
DocumentRoot "c:/Program Files/Apache Group/Apache2/htdocs"
htdocsディレクトリにindex.htmlがある場合、下記のアドレスでアクセスできる。
http://localhost/index.html
http://127.0.0.1/index.html
]]></description>
		<wfw:commentRss>http://www.findxfine.com/apache/780.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
