<?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>Square MI &#187; commerce</title>
	<atom:link href="http://www.square-mi.com/wp/author/commerce/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.square-mi.com/wp</link>
	<description>oracle, php, java, etc... technical memo &#38; つれづれなこと</description>
	<lastBuildDate>Tue, 12 Feb 2013 12:22:08 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Notice: Undefined offset &#8230; PHPExcel.php on line 191</title>
		<link>http://www.square-mi.com/wp/263/notice-undefined-offset-phpexcel-php-on-line-191/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=notice-undefined-offset-phpexcel-php-on-line-191</link>
		<comments>http://www.square-mi.com/wp/263/notice-undefined-offset-phpexcel-php-on-line-191/#comments</comments>
		<pubDate>Thu, 01 Nov 2012 06:00:13 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHPExcel]]></category>
		<category><![CDATA[開発]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=263</guid>
		<description><![CDATA[で、掲題の Notice: Undefined offset &#8230; PHPExcel.php on line 191 が、出てしまう。 出現箇所は、 $writer-&#62;save(&#8216;new.xl &#8230; <a href="http://www.square-mi.com/wp/263/notice-undefined-offset-phpexcel-php-on-line-191/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<pre class="brush: php; light: true; title: ; notranslate">
$reader = PHPExcel_IOFactory::createReader('Excel5');
$excel = $reader-&gt;load('template.xls');
$tempSheet = $excel-&gt;getSheet(0);

for( ある回数分繰り返し ) {
  $cloneSheet = $tempSheet-&gt;copy();
  $excel-&gt;addSheet( $cloneSheet );
  ( $cloneSheet への編集処理 )
}

$excel-&gt;removeSheetByIndex( 0 );

$writer =
  PHPExcel_IOFactory::createWriter($excel, 'Excel5');
$writer-&gt;save('new.xls');
</pre>
<p>で、掲題の<br />
Notice: Undefined offset &#8230; PHPExcel.php on line 191<br />
が、出てしまう。</p>
<p>出現箇所は、<br />
$writer-&gt;save(&#8216;new.xls&#8217;);</p>
<p>編集処理のところに</p>
<p>$cloneSheet-&gt;getStyle(&#8216;A1&#8242;)-&gt;getFont()-&gt;setBold(true);</p>
<p>を入れた時点で、このメッセージが出るようになった。</p>
<p>それで、メッセージ内容に従い、PHPExcel.php 191行目をみてみると getActiveSheet() の中で出ていることが判明。</p>
<p>echo &#8220;count=&#8221; . $this-&gt;_workSheetCollection;<br />
echo &#8220;index=&#8221; . $this-&gt;_activeSheetIndex;</p>
<p>とやって、配列数とインデックスを表示するという調査を行ったところ、</p>
<p>$excel-&gt;removeSheetByIndex(0)</p>
<p>でシート削除した後も</p>
<p>$excel-&gt;addSheet()</p>
<p>した、最終Sheetのインデックスを$this-&gt;_activeSheetIndex<br />
として、内部で持っているようである。</p>
<p>なので、シート削除直後に</p>
<p><strong>$excel-&gt;setActiveSheetIndex(0);</strong></p>
<p>を挿入することで、掲題のメッセージは表示されなくなった。</p>
<p>なんか、バグっぽい！！</p>
<p>それともうひとつ、</p>
<p>$cloneSheet への編集処理を</p>
<p>$excel-&gt;addSheet( $cloneSheet );</p>
<p>の後で行なっているのは何故か？</p>
<p>先に編集処理を行うと、また　編集処理中の setBold() のせいで</p>
<h4>PHP Fatal error:  Call to a member function getStyle() on a non-object in Style/Font.php on line 386</h4>
<p>になってしまう。</p>
<p>それで、またメッセージ内容に従い、Font.php 386行目を見てみた。</p>
<p>$this-&gt;getActiveSheet()-&gt;getStyle(&#8230;);</p>
<p>でエラーになっているらしい。</p>
<p>つまり、コピーしたばかりの $cloneSheet には、所属するBook(PHPExcelオブジェクト)がなく、getActiveSheet() が失敗するということらしい。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/263/notice-undefined-offset-phpexcel-php-on-line-191/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apachectl status で、ステータスが表示されない</title>
		<link>http://www.square-mi.com/wp/246/apachectl-status-%e3%81%a7%e3%80%81%e3%82%b9%e3%83%86%e3%83%bc%e3%82%bf%e3%82%b9%e3%81%8c%e8%a1%a8%e7%a4%ba%e3%81%95%e3%82%8c%e3%81%aa%e3%81%84/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apachectl-status-%25e3%2581%25a7%25e3%2580%2581%25e3%2582%25b9%25e3%2583%2586%25e3%2583%25bc%25e3%2582%25bf%25e3%2582%25b9%25e3%2581%258c%25e8%25a1%25a8%25e7%25a4%25ba%25e3%2581%2595%25e3%2582%258c%25e3%2581%25aa%25e3%2581%2584</link>
		<comments>http://www.square-mi.com/wp/246/apachectl-status-%e3%81%a7%e3%80%81%e3%82%b9%e3%83%86%e3%83%bc%e3%82%bf%e3%82%b9%e3%81%8c%e8%a1%a8%e7%a4%ba%e3%81%95%e3%82%8c%e3%81%aa%e3%81%84/#comments</comments>
		<pubDate>Mon, 29 Oct 2012 04:00:26 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Webサーバー]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=246</guid>
		<description><![CDATA[でステータスが表示されなかったので、調査しました。 【環境】 CentOS 6.2 x86_64 Apache 2.2.15 The &#8216;links&#8217; package is required for &#8230; <a href="http://www.square-mi.com/wp/246/apachectl-status-%e3%81%a7%e3%80%81%e3%82%b9%e3%83%86%e3%83%bc%e3%82%bf%e3%82%b9%e3%81%8c%e8%a1%a8%e7%a4%ba%e3%81%95%e3%82%8c%e3%81%aa%e3%81%84/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<pre class="brush: bash; light: true; title: ; notranslate">$ apachectl status</pre>
<p>でステータスが表示されなかったので、調査しました。</p>
<p>【環境】<br />
CentOS 6.2 x86_64<br />
Apache 2.2.15</p>
<h4>The &#8216;links&#8217; package is required for this functionality.</h4>
<p><strong>apachectl</strong> スクリプトの中身を解析してみると、<strong>/usr/bin/links</strong> というコマンドがないため発生しているエラーのようです。/usr/bin/links とは何かを調べてみると <strong>elinks</strong> というテキストブラウザのことでした。</p>
<p>elinks をインストールします。</p>
<pre class="brush: bash; light: true; title: ; notranslate">$ yum -y install elinks</pre>
<p>インストール後再度</p>
<pre class="brush: bash; light: true; title: ; notranslate">$ apachectl status</pre>
<h4>The requested URL /server-status was not found on this server.</h4>
<p>やはり、上記エラーメッセージが表示されステータスは表示されません。</p>
<p>また調べてみると、httpd.conf の中に</p>
<pre class="brush: bash; light: true; title: ; notranslate">
#&lt;Location /server-status&gt;;
#  SetHandler server-status
#  Order deny,allow
#  Deny from all
#  Allow from .example.com
#&lt;/Location&gt;;
</pre>
<p>という記述が、コメントアウトされていました。 ということで、何も考えずにコメントを外し,</p>
<pre class="brush: bash; light: true; title: ; notranslate">$ apachectl status</pre>
<h4>You don&#8217;t have permission to access /server-status on this server.</h4>
<p>まだ、うまくいきません。</p>
<p>エラー文言も変わっていたので前回の修正部分を再度見直しました。 &#8220;.example.com&#8221; これは、明らかに変なので、localhost に修正しました。</p>
<pre class="brush: bash; light: true; title: ; notranslate">
&lt;Location /server-status&gt;
  SetHandler server-status
  Order deny,allow
  Deny from all
  Allow from localhost
&lt;/Location&gt;
</pre>
<pre class="brush: bash; light: true; title: ; notranslate">
$ apachectl status
Apache Server Status for localhost
Server Version: Apache/2.2.15 (Unix) DAV/2 PHP/5.3.3
Server Built: Dec 8 2011 18:10:49
--------------------------------------------------------------------------
Current Time: Monday, 29-Oct-2012 12:13:43 JST
Restart Time: Monday, 29-Oct-2012 12:13:36 JST
Parent Server Generation: 5
Server uptime: 6 seconds
1 requests currently being processed, 7 idle workers

W_______........................................................
................................................................
................................................................
................................................................

Scoreboard Key:
&quot;_&quot; Waiting for Connection, &quot;S&quot; Starting up, &quot;R&quot; Reading Request,
&quot;W&quot; Sending Reply, &quot;K&quot; Keepalive (read), &quot;D&quot; DNS Lookup,
&quot;C&quot; Closing connection, &quot;L&quot; Logging, &quot;G&quot; Gracefully finishing,
&quot;I&quot; Idle cleanup of worker, &quot;.&quot; Open slot with no current process
</pre>
<p>正しくステータスが表示されたようです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/246/apachectl-status-%e3%81%a7%e3%80%81%e3%82%b9%e3%83%86%e3%83%bc%e3%82%bf%e3%82%b9%e3%81%8c%e8%a1%a8%e7%a4%ba%e3%81%95%e3%82%8c%e3%81%aa%e3%81%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows版PHP実行時のエラー</title>
		<link>http://www.square-mi.com/wp/223/windows%e7%89%88php%e5%ae%9f%e8%a1%8c%e6%99%82%e3%81%ae%e3%82%a8%e3%83%a9%e3%83%bc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows%25e7%2589%2588php%25e5%25ae%259f%25e8%25a1%258c%25e6%2599%2582%25e3%2581%25ae%25e3%2582%25a8%25e3%2583%25a9%25e3%2583%25bc</link>
		<comments>http://www.square-mi.com/wp/223/windows%e7%89%88php%e5%ae%9f%e8%a1%8c%e6%99%82%e3%81%ae%e3%82%a8%e3%83%a9%e3%83%bc/#comments</comments>
		<pubDate>Tue, 23 Oct 2012 06:20:56 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=223</guid>
		<description><![CDATA[Windows版PHP5をインストールし、 コマンドラインから、php -v としたとき発生したエラー。 その解決策をメモしました。 Windows 7 Ultimate (x86) PHP 5.3.18 （１）エラー「 &#8230; <a href="http://www.square-mi.com/wp/223/windows%e7%89%88php%e5%ae%9f%e8%a1%8c%e6%99%82%e3%81%ae%e3%82%a8%e3%83%a9%e3%83%bc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Windows版PHP5をインストールし、<br />
コマンドラインから、<strong>php -v</strong> としたとき発生したエラー。<br />
その解決策をメモしました。</p>
<p>Windows 7 Ultimate (x86)<br />
PHP 5.3.18</p>
<p><strong><span style="color: #0000ff;">（１）エラー「Cannot find module &#8230;」が表示される</span></strong></p>
<pre class="brush: bash; light: true; title: ; notranslate">
No log handling enabled - turning on stderr logging
Cannot find module (IP-MIB): At line 0 in (none)
Cannot find module (IF-MIB): At line 0 in (none)
Cannot find module (TCP-MIB): At line 0 in (none)
Cannot find module (UDP-MIB): At line 0 in (none)
Cannot find module (HOST-RESOURCES-MIB): At line 0 in (none)
Cannot find module (SNMPv2-MIB): At line 0 in (none)
Cannot find module (SNMPv2-SMI): At line 0 in (none)
Cannot find module (NOTIFICATION-LOG-MIB): At line 0 in (none)
Cannot find module (UCD-SNMP-MIB): At line 0 in (none)
Cannot find module (UCD-DEMO-MIB): At line 0 in (none)
Cannot find module (SNMP-TARGET-MIB): At line 0 in (none)
Cannot find module (NET-SNMP-AGENT-MIB): At line 0 in (none)
Cannot find module (DISMAN-EVENT-MIB): At line 0 in (none)
Cannot find module (SNMP-VIEW-BASED-ACM-MIB): At line 0 in (none)
Cannot find module (SNMP-COMMUNITY-MIB): At line 0 in (none)
Cannot find module (UCD-DLMOD-MIB): At line 0 in (none)
Cannot find module (SNMP-FRAMEWORK-MIB): At line 0 in (none)
Cannot find module (SNMP-MPD-MIB): At line 0 in (none)
Cannot find module (SNMP-USER-BASED-SM-MIB): At line 0 in (none)
Cannot find module (SNMP-NOTIFICATION-MIB): At line 0 in (none)
Cannot find module (SNMPv2-TM): At line 0 in (none)
</pre>
<p>【原因となるExtension】<br />
php_snmp.dll<br />
【解決策】<br />
net-snmp を正しくインストールするか、php.ini の extension=php_snmp.dll の部分をコメントする。<br />
snmp をどうこうすることもないので、後者を実施しました。</p>
<p><span style="color: #0000ff;"><strong>（２）メッセージボックスに「コンピューターに libcs.dll がないため、プログラムを開始できません。」のエラーが表示。</strong></span></p>
<p>【原因となるExtension】<br />
php_sybase_ct.dll<br />
【解決策】<br />
データベースはMySQLを使用。　sybase は使わないのでコメント</p>
<p><strong><span style="color: #0000ff;">（３）メッセージボックスに「コンピューターに libcs.dll がないため、プログラムを開始できません。」のエラーが表示</span></strong></p>
<p>【原因となるExtension】<br />
php_intl.dll<br />
【解決策】<br />
Moodleという授業用のWebページを作るためのソフトウェアを使用する際に必要らしいが、その予定もないのでコメント</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/223/windows%e7%89%88php%e5%ae%9f%e8%a1%8c%e6%99%82%e3%81%ae%e3%82%a8%e3%83%a9%e3%83%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Warning</title>
		<link>http://www.square-mi.com/wp/217/php-warning/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-warning</link>
		<comments>http://www.square-mi.com/wp/217/php-warning/#comments</comments>
		<pubDate>Mon, 22 Oct 2012 03:42:56 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=217</guid>
		<description><![CDATA[PHP Warning:  date(): It is not safe to rely on the system&#8217;s timezone settings. You are *required* to us &#8230; <a href="http://www.square-mi.com/wp/217/php-warning/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h4>PHP Warning:  date(): It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function.</h4>
<p>読んで字の通り、php.ini に</p>
<pre class="brush: bash; light: true; title: ; notranslate">date.timezone = 'Asia/Tokyo'</pre>
<p>とするか、コード中に</p>
<pre class="brush: php; light: true; title: ; notranslate">date_default_timezone_set('Asia/Tokyo')</pre>
<p>とすれば、このワーニングはなくなる。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/217/php-warning/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MySQLをインストールし、.NET 接続する。</title>
		<link>http://www.square-mi.com/wp/194/mysql%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%80%81-net-%e6%8e%a5%e7%b6%9a%e3%81%99%e3%82%8b%e3%80%82/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mysql%25e3%2582%2592%25e3%2582%25a4%25e3%2583%25b3%25e3%2582%25b9%25e3%2583%2588%25e3%2583%25bc%25e3%2583%25ab%25e3%2581%2597%25e3%2580%2581-net-%25e6%258e%25a5%25e7%25b6%259a%25e3%2581%2599%25e3%2582%258b%25e3%2580%2582</link>
		<comments>http://www.square-mi.com/wp/194/mysql%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%80%81-net-%e6%8e%a5%e7%b6%9a%e3%81%99%e3%82%8b%e3%80%82/#comments</comments>
		<pubDate>Fri, 19 Oct 2012 08:58:43 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[データベース]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=194</guid>
		<description><![CDATA[ずっと前、少しだけ MySQL を使ったことはあったのですが、もう殆ど忘れていました。Linux にインストールするところから Visual Studio 2008 のサーバーエクスプローラーを使ってリモートからデータ接 &#8230; <a href="http://www.square-mi.com/wp/194/mysql%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%80%81-net-%e6%8e%a5%e7%b6%9a%e3%81%99%e3%82%8b%e3%80%82/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>ずっと前、少しだけ MySQL を使ったことはあったのですが、もう殆ど忘れていました。Linux にインストールするところから Visual Studio 2008 のサーバーエクスプローラーを使ってリモートからデータ接続を行うまでの記録です。</p>
<p>環境は、サーバーが、</p>
<p style="padding-left: 30px">CentOS 6.2 x86_64</p>
<p style="padding-left: 30px">MySQL 5.1.61</p>
<p>クライアントが、</p>
<p style="padding-left: 30px">Windows 7 Ultimate SP1 32bit</p>
<p style="padding-left: 30px">Visual Studio 2008 Professional Edition SP1</p>
<p style="padding-left: 30px">.Net Framework 3.5 SP1</p>
<p style="padding-left: 30px">MySQL Connector/Net 6.5.4</p>
<h2>サーバー側</h2>
<h3>MySQLのインストール</h3>
<p style="padding-left: 30px">あまり時間もなかったので、最も簡単なGNOMEデスクトップからGUIによるインストールを行いました。一応手順を記述します。</p>
<ol>
<li>
<h3>メニューから[システム]-[管理]-[ソフトウェアのの追加／削除]をクリックします。</h3>
</li>
<li>左側ツリーから<br />
Database<br />
┗MySQLデータベースサーバー<br />
を選択すると右側に現れる<br />
mysql-server-5.1.61-4.el6(x86_64)にチェックし[適用]ボタンをクリックします。</li>
<li>指示に従いインストールを続けます。<br />
以下が自動で追加インストールされます。<br />
・perl-DBD-MySQL-4.013-3.el6(x86_64)<br />
・perl-DBl-1.609-4.el6(x86_64)<br />
・mysql-libs-5.1.61-4.el6(x86_64)<br />
・mysql-5.1.61-4.el6(x86_64)</li>
<li>インストールが終わったら、言語セットをUTF8に設定します。<br />
キャラクタセットをUTF8に設定するために &#8220;/etc/my.cnf&#8221; を編集します。</p>
<pre class="brush: bash; light: true; title: ; notranslate">
[mysqld]
default-character-set=utf8
character-set-server=utf8
[client]
default-character-set=utf8
</pre>
<ul>
<li>[mysqld]の中に &#8220;default-character-set=utf8&#8243; と<br />
&#8220;character-set-server=utf8&#8243; を追加します。</li>
<li>[client]を追加し、その中に &#8220;default-character-set=utf8&#8243; を追加します。</li>
</ul>
</li>
<li>OSの起動時、サービスが自動起動するようにします。(userは、root)<br />
※ここからは、ターミナルからキャラクタベースでコマンド入力します。</p>
<pre class="brush: bash; light: true; title: ; notranslate">$ chkconfig mysqld on</pre>
</li>
<li>確認
<pre class="brush: bash; light: true; title: ; notranslate">$ chkconfig --list mysqld
mysqld  0:off 1:off 2:on  3:on  4:on  5:on  6:off
</pre>
<p>→ 2,3,4,5 が on になっていることを確認します。</li>
<li>サービスの手動制御コマンド
<pre class="brush: bash; light: true; title: ; notranslate">$ /etc/rc.d/init.d/mysqld start</pre>
<p style="font-family: ＭＳ　ゴシック;font-size: 14px;text-decoration: none">【引数説明】<br />
start　　　　　　　…　開始<br />
stop　　　　　　　…　停止<br />
status　　　　　　…　実行状態を表示<br />
restart　　　　　　…　stop, start を順に実行<br />
condrestart　　　…　動作していれば停止し、再起動する</p>
</li>
</ol>
<h3>DBユーザの作成</h3>
<ul>
<li>rootユーザで実施しました。<br />
db_user というDBユーザーを作成します。</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$mysql
mysql&gt; grant select,insert,delete,update,create,drop,file,alter,index on *.* to db_user@'%' identified by 'password';
mysql&gt; grant select,insert,delete,update,create,drop,file,alter,index on *.* to db_user@'localhost' identified by 'password';</pre>
</li>
<li>最初、上の行(to db_user@&#8217;%')を実施したのですが、ssh接続したターミナルからdb_userで接続できなかったため下の行(db_user@&#8217;localhost&#8217;)を実施しました。これでよかったのかどうかはわかりませんが結果オーライでここに記述します。</li>
</ul>
<h3>データベースの作成</h3>
<ol>
<li>データベースの確認<br />
db_user というDBユーザーで接続します。Linux User は、root 権限のない普通のユーザーで実施しています。</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ mysql -u db_user -p

mysql&gt; show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+
</pre>
</li>
<li>データベースの作成<br />
user_db というデータベースを作成します。</p>
<pre class="brush: bash; light: true; title: ; notranslate">
mysql&gt; create database user_db;</pre>
</li>
<li>データベースの確認<br />
ちゃんとできているか確認します。最後に &#8220;user_db&#8221; <span style="color: #444444;line-height: 23px">の一行が追加されているのでOK.</span></p>
<pre class="brush: bash; light: true; title: ; notranslate">mysql&gt; show databases
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
| user_db            |
+--------------------+
mysql&gt; exit
</pre>
</li>
<li>言語セットの確認<br />
作成したデータベースの言語セットがUTF8になっていることを確認します。<br />
作成したデータベースにログインするため、一旦 &#8220;\q&#8221; で mysql インタプリタを抜けてから以下を実行します。</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ mysql -u db_user -D user_db -p
mysql&gt; show variables like &quot;char%&quot;;
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | utf8                       |
| character_set_connection | utf8                       |
| character_set_database   | utf8                       |
| character_set_filesystem | binary                     |
| character_set_results    | utf8                       |
| character_set_server     | utf8                       |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.00 sec)
</pre>
</li>
</ol>
<h3>テスト用テーブルの作成</h3>
<ul>
<li>DBユーザ db_user で、データベース user_db に接続し、テスト用のダミーテーブル test_tbl を作成します。
<pre class="brush: bash; light: true; title: ; notranslate">
$ mysql -u db_user -D user_db -p
mysql&gt; create table test_tbl (
    -&gt; id INT NOT NULL AUTO_INCREMENT,
    -&gt; title VARCHAR(10) NOT NULL,
    -&gt; update_date DATE,
    -&gt; PRIMARY KEY (id)
    -&gt; );
</pre>
</li>
</ul>
<h2>クライアント側</h2>
<p style="padding-left: 30px">.NET で接続したいので、MySQL用データプロバイダーを入手し、Visual Studio から、作成したデータベースに接続し、テスト用のテーブルにデータを挿入してみる。</p>
<h3 style="padding-left: 30px">ダウンロード＆ データプロバイダのインストール</h3>
<ol>
<li><a title="dev.mysql.com" href="http://dev.mysql.com/downloads/">http://dev.mysql.com/downloads/</a> の <a href="http://dev.mysql.com/downloads/connector/net/">Connector/Net</a> をクリックしジャンプしたページの　Windows (x86, 32-bit), MSI Installer [Download] をダウンロードする。</li>
<li>ダウンロードした msi ファイルを実行、ウィザードに従い、インストール</li>
<li>Visual Studio 2008 &#8211; サーバーエクスプローラー を開き、データ接続の上で右クリック</li>
<li>コンテキストメニューから [接続の追加] を選択</li>
<li>接続の追加ダイアログにて、サーバー名(またはIP)、ユーザー名／パスワード、データベース名を入力し、[テスト接続] をクリックし、接続を確認。<br />
<a href="http://www.square-mi.com/wp/194/mysql%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%80%81-net-%e6%8e%a5%e7%b6%9a%e3%81%99%e3%82%8b%e3%80%82/mysql-vsnet-settings/" rel="attachment wp-att-211"><img class="alignnone  wp-image-211" src="http://www.square-mi.com/wp/wp-content/uploads/mysql-vsnet-settings.png" alt="" width="277" height="312" /></a></li>
<li>接続確認がOKなら、言語セットをUTF8に設定するため、[詳細設定(V)]のボタンをクリック<br />
<a href="http://www.square-mi.com/wp/194/mysql%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%80%81-net-%e6%8e%a5%e7%b6%9a%e3%81%99%e3%82%8b%e3%80%82/mysql-vsnet-detail/" rel="attachment wp-att-258"><img class="alignnone  wp-image-258" src="http://www.square-mi.com/wp/wp-content/uploads/mysql-vsnet-detail.png" alt="" width="251" height="346" /></a><br />
詳細プロパティダイアログにて、Character Set の内容を &#8220;utf8&#8243; に設定。後は[OK]クリックでVS2008 サーバーエクスプローラーに戻る。<br />
※このとき、必ず &#8220;utf8&#8243; は、小文字で入力してください。
</li>
<li>Server Name に指定したサーバー名(例ではcentos6)でツリーが構成される。テスト用テーブル &#8220;test_tbl&#8221; をダブルクリックすると、デザインモードで開かれ、また右クリックして「データの取得」を選択するとグリッドがオープンされ、データを挿入したり、修正したり加工ができる。<br />
<a href="http://www.square-mi.com/wp/194/mysql%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%80%81-net-%e6%8e%a5%e7%b6%9a%e3%81%99%e3%82%8b%e3%80%82/vs-svrexplorer-connect/" rel="attachment wp-att-213"><img class="alignnone  wp-image-213" src="http://www.square-mi.com/wp/wp-content/uploads/vs-svrexplorer-connect.png" alt="" width="201" height="204" /></a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/194/mysql%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%80%81-net-%e6%8e%a5%e7%b6%9a%e3%81%99%e3%82%8b%e3%80%82/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPフレームワークsymfonyをインストールする</title>
		<link>http://www.square-mi.com/wp/138/php%e3%83%95%e3%83%ac%e3%83%bc%e3%83%a0%e3%83%af%e3%83%bc%e3%82%afsymfony%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php%25e3%2583%2595%25e3%2583%25ac%25e3%2583%25bc%25e3%2583%25a0%25e3%2583%25af%25e3%2583%25bc%25e3%2582%25afsymfony%25e3%2582%2592%25e3%2582%25a4%25e3%2583%25b3%25e3%2582%25b9%25e3%2583%2588%25e3%2583%25bc%25e3%2583%25ab%25e3%2581%2599%25e3%2582%258b</link>
		<comments>http://www.square-mi.com/wp/138/php%e3%83%95%e3%83%ac%e3%83%bc%e3%83%a0%e3%83%af%e3%83%bc%e3%82%afsymfony%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b/#comments</comments>
		<pubDate>Wed, 17 Oct 2012 03:33:47 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[開発]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=138</guid>
		<description><![CDATA[PHP上で動作するアプリケーション開発フレームワーク symfony を導入します。プロジェクト，アプリケーション，モジュールを作成し、ブラウザで確認するところまでをまとめました。　http://www.symfony- &#8230; <a href="http://www.square-mi.com/wp/138/php%e3%83%95%e3%83%ac%e3%83%bc%e3%83%a0%e3%83%af%e3%83%bc%e3%82%afsymfony%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>PHP上で動作するアプリケーション開発フレームワーク symfony を導入します。プロジェクト，アプリケーション，モジュールを作成し、ブラウザで確認するところまでをまとめました。　<a href="http://www.symfony-project.org/" target="_blank">http://www.symfony-project.org</a> を参考にしていますので、詳細はそちらをご覧ください。</p>
<p>下記環境に PEAR を用いて <strong>symfony 1.4.19</strong> をインストールしました。</p>
<p style="padding-left: 30px">CentOS 6.2 x86_64(サーバー名:centos6)</p>
<p style="padding-left: 30px">Apache 2.2.15</p>
<p style="padding-left: 30px">PHP 5.3.3 (Zend Engine v2.3.0)</p>
<p style="padding-left: 30px">　symfonyはMITライセンスに基づいています。　商用利用もOKで、GPLなどとは違い、コピーレフトではなく（二次著作物のライセンス変更可）ソースコードを公開する必要もないので、ライセンスについてあまり気にする必要はありません。（著作権表示の義務はありますが）</p>
<h3>symfonyのインストール</h3>
<p style="padding-left: 30px">root で実行しました。</p>
<ol>
<li>pearを アップグレード
<pre class="brush: bash; light: true; title: ; notranslate">$ pear upgrade PEAR
Nothing to upgrade</pre>
</li>
<li>symfonyのチャネルに接続
<pre class="brush: bash; light: true; title: ; notranslate">$ pear channel-discover pear.symfony-project.com
Adding Channel &quot;pear.symfony-project.com&quot; succeeded
Discovery of channel &quot;pear.symfony-project.com&quot; succeeded</pre>
</li>
<li>インストールの実行
<pre class="brush: bash; highlight: [1]; light: true; title: ; notranslate">$ pear install symfony/symfony-beta
downloading symfony-1.4.19.tgz ...
Starting to download symfony-1.4.19.tgz(3,188,169 bytes)
......................................................
......................................................
......................................................
......................................................
......................................................
......................................................
......................................................
done: 3,188,169 bytes
install ok:
channel://pear.symfony-project.com/symfony-1.4.19</pre>
</li>
<li>確認（バージョンを表示してみる）
<pre class="brush: bash; light: true; title: ; notranslate">$ symfony -V
symfony version 1.4.19 (/usr/share/pear/symfony)</pre>
</li>
</ol>
<h3> プロジェクトの作成</h3>
<p style="padding-left: 30px"> Linux user <strong>smi</strong> でディレクトリ &#8220;/home/smi&#8221; 配下に作成しました。</p>
<ol>
<li> プロジェクト &#8220;jobeet&#8221; を作成する。
<pre class="brush: bash; highlight: [4]; light: true; title: ; notranslate">$ cd /home/smi
$ mkdir jobeet
$ cd jobeet
$ symfony generate:project jobeet</pre>
</li>
<li>/home/smi/jobeet 配下に symfony プロジェクトに必要な以下ディレクトリが作成される。<br />
apps/ プロジェクトのすべてのアプリケーションを格納する<br />
cache/ フレームワークによってキャッシュされるファイル<br />
config/ プロジェクトの設定ファイル<br />
data/<br />
lib/ プロジェクトのライブラリとクラス<br />
log/ フレームワークのログファイル<br />
plugins/ インストールされたプラグイン<br />
test/ ユニットテストと機能テストのファイル<br />
web/ Web 公開ルートディレクトリ</li>
</ol>
<h3><span style="font-size: 14px;line-height: 23px">アプリケーションの作成</span></h3>
<ol>
<li>アプリケーション &#8220;frontend&#8221; を作成する
<pre class="brush: bash; light: true; title: ; notranslate">$ symfony generate:app frontend</pre>
</li>
<li>/home/smi/jobeet/apps/frontend 配下にアプリケーションに必要な以下ディレクトリが作成される。<br />
config/ アプリケーションの設定ファイル<br />
i18n/<br />
lib/ アプリケーションのライブラリとクラス<br />
modules/ アプリケーションのコード (MVC)<br />
templates/ グローバルテンプレートファイル</li>
</ol>
<h3><span style="font-size: 14px;line-height: 23px">WEBサーバーの設定</span></h3>
<ul>
<li><strong>httpd.conf</strong> を編集します。(httpd.confのパスは環境により異なります)
<pre class="brush: bash; light: true; title: ; notranslate">$ vi /etc/httpd/conf/httpd.conf</pre>
</li>
</ul>
<ol>
<li>User<br />
<strong>User smi</strong><br />
Linuxユーザーsmiの$HOMEディレクトリをプロジェクトホームにしているので、便宜上ユーザーをsmiに変更します。プロジェクトホームをどこにするかなどPermissionをどう与えるかなど基本設計の部分で適宜決める必要があります。</li>
<li>Listen<br />
Listen は、デフォルトでポート番号 80 が1つ記述されています。<br />
<strong>Listen 80</strong><br />
デフォルトの80番ポートを使うならそのまま何もしません。<br />
80番ポートは、通常のhtmlを表示し、symfonyプロジェクトは 8080番ポートを使うといった場合は、もう一行<br />
<strong>Listen 8080</strong><br />
を追加で記述します。<br />
→この場合、8080ポートに対して Firewall の設定が必要です。</li>
<li>VirtualHost<br />
Apacheのバーチャルホスト機能を使用し、公開用ルートディレクトリ /home/smi/jobeet/web を直接アクセスできるように設定します。</p>
<pre class="brush: bash; light: true; title: ; notranslate">NameVirtualHost *:80
&lt;VirtualHost *:80&gt;
  DocumentRoot &quot;/home/smi/jobeet/web&quot;
  DirectoryIndex index.php
  ServerName centos6:80
  ErrorLog logs/centos6-error_log
  CustomLog logs/centos6-access_log common
  &lt;Directory &quot;/home/smi/jobeet/web&quot;&gt;
    AllowOverride All
    Allow from All

  Alias /sf &quot;/usr/share/pear/data/symfony/web/sf&quot;
  &lt;Directory &quot;/usr/share/pear/data/symfony/web/sf&quot;&gt;
    AllowOverride All
    Allow from All
&lt;/VirtualHost&gt;
</pre>
<p>別のポート番号を使用する場合、80 の部分に別のポート番号を指定します。</li>
</ol>
<ul>
<li>Apache を起動(再起動)します。
<pre class="brush: bash; light: true; title: ; notranslate">$ apachectl start
or
$ apachectl restart
</pre>
</li>
</ul>
<h3><span style="line-height: 23px">ブラウザでの確認（プロジェクト)</span></h3>
<ol>
<li>これまでのタスクで、&#8221;/home/smi/jobeet/web&#8221; に &#8220;index.php&#8221; が作成されていますので、PCブラウザから確認します。<br />
<strong>http://centos6/</strong><br />
→当該環境では、IP:192.168.1.100 のWEBサーバーへの名前解決についてhostsファイルを使用します。 PC hostsファイルに1行追加します。</p>
<pre class="brush: bash; light: true; title: ; notranslate">C:\&gt; notepad %windir%\system32\drivers\etc\hosts</pre>
<pre class="brush: bash; highlight: [19]; title: ; notranslate">
# Copyright (c) 1993-2006 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host
127.0.0.1       localhost
192.168.1.100   centos6</pre>
</li>
<li>「Congratulations! You have successfully created your symfony project.」のメッセージが表示されていればOKです。</li>
</ol>
<p style="padding-left: 60px"><span style="font-size: 14px;line-height: 23px"><a href="http://www.square-mi.com/wp/wp-content/uploads/symfony-create-project.png"><img class="alignnone  wp-image-171" src="http://www.square-mi.com/wp/wp-content/uploads/symfony-create-project.png" alt="" width="340" height="305" /></a></span></p>
<h3> モジュールの作成</h3>
<ol>
<li>モジュール &#8220;category&#8221; を作成する。
<pre class="brush: bash; light: true; title: ; notranslate">$ cd jobeet
$ symfony generate:module frontend category
</pre>
<p>※「<a title="PHP Warning" href="http://www.square-mi.com/wp/217/php-warning/">PHP Warning</a>」</li>
<li>/home/smi/jobeet/apps/frontend/modules/ の下に &#8220;jobeet&#8221; ディレクトリ、更にその下に &#8220;actions&#8221;, &#8220;templates&#8221; ディレクトリが作成されます。<br />
これらのディレクトリには、初期のアクションファイル、テンプレートファイルが作成されます。</p>
<pre class="brush: bash; light: true; title: ; notranslate">$ ls apps/frontend/modules/category/actions/
actions.class.php
$ ls apps/frontend/modules/category/templates/
indexSuccess.php</pre>
</li>
</ol>
<h3>ブラウザでの確認(モジュール)</h3>
<ol>
<li>ここまでのタスクが完了した時点で、symfony デフォルトページが表示されるようになります。　PCブラウザから確認します。<br />
<strong>http://centos6/category/index</strong></li>
<li>「Congratulations! You have successfully created a symfony module.」のメッセージが表示されていればOKです。</li>
</ol>
<p style="padding-left: 60px"><a href="http://www.square-mi.com/wp/wp-content/uploads/symfony-create-module.png"><img class="alignnone  wp-image-169" src="http://www.square-mi.com/wp/wp-content/uploads/symfony-create-module.png" alt="" width="369" height="283" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/138/php%e3%83%95%e3%83%ac%e3%83%bc%e3%83%a0%e3%83%af%e3%83%bc%e3%82%afsymfony%e3%82%92%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab%e3%81%99%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classic Shell インストール</title>
		<link>http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=classic-shell-%25e3%2582%25a4%25e3%2583%25b3%25e3%2582%25b9%25e3%2583%2588%25e3%2583%25bc%25e3%2583%25ab</link>
		<comments>http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/#comments</comments>
		<pubDate>Wed, 26 Sep 2012 03:21:25 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[フリーソフト]]></category>
		<category><![CDATA[インストール]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=71</guid>
		<description><![CDATA[Classic Shell インストール sourceforge.jpから最新バージョンをダウンロードします。　（現時点での最新は、ClassicShellSetup_3_6_1.exeです。） ※ユーザーアカウント制御 &#8230; <a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1><a href="http://www.square-mi.com/wp/30/classic-shell/classicshell_startmenuicon/" rel="attachment wp-att-24"><img class="alignnone size-full wp-image-24" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShell_StartMenuIcon.png" alt="" width="48" height="48" /></a>Classic Shell インストール</h1>
<p>sourceforge.jpから最新バージョンをダウンロードします。　（現時点での最新は、ClassicShellSetup_3_6_1.exeです。）</p>
<p style="padding-left: 30px"><span style="font-size: small;color: #ff0000">※ユーザーアカウント制御について</span></p>
<p style="padding-left: 30px"><span style="font-size: small;color: #ff0000">「次の不明な発行元からのプログラムにこのコンピューターへの変更を許可しますか？」と表示された場合、［はい(Y)］をクリックしてください。</span></p>
<p>ダウンロードした ClassicShellSetup_3_6_1.exe ファイルを実行します。<a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/classicshellsetup_01/" rel="attachment wp-att-74"><img class="alignnone size-medium wp-image-74" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShellSetup_01-300x233.png" alt="" width="300" height="233" /></a></p>
<p>[Next]ボタンクリック</p>
<p><a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/classicshellsetup_02/" rel="attachment wp-att-75"><img class="alignnone size-medium wp-image-75" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShellSetup_02-300x233.png" alt="" width="300" height="233" /></a></p>
<p>&#8220;I accept the terms in the License Agreement&#8221; にチェックし、[Next]ボタンクリック</p>
<p><a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/classicshellsetup_03/" rel="attachment wp-att-76"><img class="alignnone size-medium wp-image-76" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShellSetup_03-300x233.png" alt="" width="300" height="233" /></a></p>
<p>ここで、インストールするコンポーネントを選択できますので不要なものは除外してください。</p>
<p>インストール先を変更したい場合、[Browse...]ボタンをクリックしフォルダーを選択してください。</p>
<p>&#8220;Create a start menu folder&#8221; をチェックし、[Next]ボタンをクリックします。</p>
<p><a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/classicshellsetup_04/" rel="attachment wp-att-77"><img class="alignnone size-medium wp-image-77" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShellSetup_04-300x233.png" alt="" width="300" height="233" /></a></p>
<p>[Install]ボタンクリックで、インストールが始まります。</p>
<p><a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/classicshellsetup_05/" rel="attachment wp-att-78"><img class="alignnone size-medium wp-image-78" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShellSetup_05-300x233.png" alt="" width="300" height="233" /></a></p>
<p>[Finish]でインストールが終了します。</p>
<p>&#8220;View Readme file&#8221; にチェックがあると、Readme.rtf を開きます。中身は全部英語です。英語が苦手な方はチェックを外してください。</p>
<p>インストール後、スタートボタンをクリックすると、↓この画面が表示されます。</p>
<p><a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/classicshellsetup_06/" rel="attachment wp-att-79"><img class="alignnone size-medium wp-image-79" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShellSetup_06-300x201.png" alt="" width="300" height="201" /></a></p>
<p>初期状態では、&#8221;Start Menu Style&#8221; のタブが開かれた状態で、&#8221;Windows Classic&#8221; が選択されていると思います。　そのまま、[OK]ボタンをクリックしてください。</p>
<p>設定については、<a title="Classic Start Menu の使い方" href="http://www.square-mi.com/wp/59/classic-start-menu/">ここ</a>を参照してください。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classic IE9 の使い方</title>
		<link>http://www.square-mi.com/wp/67/classic-ie9-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=classic-ie9-%25e3%2581%25ae%25e4%25bd%25bf%25e3%2581%2584%25e6%2596%25b9</link>
		<comments>http://www.square-mi.com/wp/67/classic-ie9-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/#comments</comments>
		<pubDate>Wed, 26 Sep 2012 02:07:41 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[フリーソフト]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=67</guid>
		<description><![CDATA[Classic IE9 の使い方 スタートボタン→プログラム→Classic Shell→Classic IE9 Settings をクリック、またはIE9 のメニュー、[ツール(T)]→Classic IE9 Sett &#8230; <a href="http://www.square-mi.com/wp/67/classic-ie9-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1><a href="http://www.square-mi.com/wp/30/classic-shell/classicshell_startmenuicon/" rel="attachment wp-att-24"><img class="alignnone size-full wp-image-24" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShell_StartMenuIcon.png" alt="" width="48" height="48" /></a>Classic IE9 の使い方</h1>
<p>スタートボタン→プログラム→Classic Shell→Classic IE9 Settings をクリック、またはIE9 のメニュー、[ツール(T)]→Classic IE9 Settings をクリックすると、&#8221;Classic IE9&#8243; の設定画面が表示されます。</p>
<h1><a href="http://www.square-mi.com/wp/67/classic-ie9-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/classicie9settings/" rel="attachment wp-att-106"><img class="alignnone  wp-image-106" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicIE9Settings.png" alt="" width="468" height="337" /></a></h1>
<p>&nbsp;</p>
<p><span style="font-size: medium"> <span style="color: #0000ff"><strong>“Basic Settings” タブ</strong></span></span></p>
<p>&#8220;Show caption in the title bar&#8221;</p>
<p style="padding-left: 30px">チェックした場合、IE9のタイトルバーにキャプションを表示します。</p>
<p>&#8220;Show icon in the title bar&#8221;</p>
<p style="padding-left: 30px">チェックした場合、IE9のタイトルバーにアイコンを表示します。　　 &#8221;Show caption in the title bar&#8221; とともにチェックした場合有効となります。</p>
<p>&#8220;Center caption&#8221;</p>
<p style="padding-left: 30px">タイトルバーに表示されたキャプションを中央寄せにします。　&#8221;Show caption in the title bar&#8221; とともにチェックした場合有効となります。</p>
<p>&#8220;Show progress&#8221;</p>
<p style="padding-left: 30px">ステータスバーに現在ページのプログレス（進捗）を表示します。</p>
<p>&#8220;Show zone&#8221;</p>
<p style="padding-left: 30px">ステータスバーに 現在のゾーンで許可されているセキュリティレベルを表示します。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/67/classic-ie9-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classic Explorer の使い方</title>
		<link>http://www.square-mi.com/wp/64/classic-explorer-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=classic-explorer-%25e3%2581%25ae%25e4%25bd%25bf%25e3%2581%2584%25e6%2596%25b9</link>
		<comments>http://www.square-mi.com/wp/64/classic-explorer-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/#comments</comments>
		<pubDate>Wed, 26 Sep 2012 02:04:51 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[フリーソフト]]></category>
		<category><![CDATA[エクスプローラー]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=64</guid>
		<description><![CDATA[Classic Explorer の使い方 インストール手順に従いインストールした場合、エクスプローラーのメニューバーの左側に Classic Explorer ツールバーが表示されるようになります。 もし表示されていな &#8230; <a href="http://www.square-mi.com/wp/64/classic-explorer-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1><a href="http://www.square-mi.com/wp/30/classic-shell/classicshell_startmenuicon/" rel="attachment wp-att-24"><img class="alignnone size-full wp-image-24" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShell_StartMenuIcon.png" alt="" width="48" height="48" /></a>Classic Explorer の使い方</h1>
<p><a title="Classic Shell インストール" href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/">インストール手順</a>に従いインストールした場合、エクスプローラーのメニューバーの左側に Classic Explorer ツールバーが表示されるようになります。 もし表示されていない場合、メニューバーのなにもないところで、右クリックし、&#8221;Classic Explorer Bar&#8221; にチェックしてください。</p>
<p><a href="http://www.square-mi.com/wp/30/classic-shell/classicshell_toolbar/" rel="attachment wp-att-48"><img class="alignnone size-medium wp-image-48" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShell_Toolbar-300x72.jpg" alt="" width="300" height="72" /></a></p>
<p>一番左側の<a href="http://www.square-mi.com/wp/30/classic-shell/classicshell_startmenuicon/" rel="attachment wp-att-24"><img class="alignnone size-full wp-image-24" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShell_StartMenuIcon.png" alt="" width="48" height="48" /></a>をクリックして設定画面を開きます。</p>
<p>スタートボタン→プログラム→Classic Shell→Classic Explorer Settings でも設定画面を開くことができます。</p>
<p><a href="http://www.square-mi.com/wp/?attachment_id=118"><img class="alignnone size-large wp-image-118" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicExplorerSettings-512x343.png" alt="" width="500" height="334" /></a></p>
<p>画面下のラジオボタンで、&#8221;All Settings&#8221; を選択した画面です。以下では、&#8221;All Settings&#8221; 選択時の各機能について説明します。</p>
<p><strong><span style="font-size: medium;color: #0000ff">&#8220;File Pane&#8221; タブ</span></strong></p>
<p>&#8220;Add icon overlay for shared folders&#8221;</p>
<p style="padding-left: 30px">チェックした場合、共有フォルダーアイコンをオーバーレイ表示します。</p>
<p>&#8220;Share overlay icon&#8221;</p>
<p style="padding-left: 30px"><a href="http://www.square-mi.com/wp/?attachment_id=119"><img class="alignnone size-full wp-image-119" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicExplorer_SharedOverlay.png" alt="" width="72" height="22" /></a>　←が、デフォルトの &#8220;imageres.dll&#8221; の No.164 のアイコンをオーバーレイ表示した例です。　この項目を変更することでオーバーレイアイコンを変えることができます。</p>
<p><strong><span style="font-size: medium;color: #0000ff">&#8220;File Operation&#8221; タブ</span></strong></p>
<p>&#8220;Replace file conflict dialog&#8221;</p>
<p style="padding-left: 30px">チェックした場合、ファイルを<span style="color: #444444;line-height: 23px">「コピー」または「移動」</span>しようとした際に、コピー先または移動先にすでに同名のファイルがあれば、XP風のダイアログ↓を表示します。</p>
<p style="padding-left: 30px"><a href="http://www.square-mi.com/wp/?attachment_id=122"><img class="alignnone size-medium wp-image-122" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicExplorer_ConflictDialog-300x187.png" alt="" width="300" height="187" /></a></p>
<p style="padding-left: 30px">[はい(Y)] をクリックすると、上書きで<span style="color: #444444;line-height: 23px">が行われます。　[いいえ(N)]で、「コピー」または「移動」は中断されます。　</span><span style="text-decoration: underline">その他</span>　リンクをクリックすると従来のダイアログが表示されます。</p>
<p> &#8221;Replace folder conflict dialog&#8221;</p>
<p style="padding-left: 30px">ファイルと同様にフォルダー名でコンフリクトがあった場合、やはりXP風にダイアログ↓を表示します。</p>
<p style="padding-left: 30px"><a href="http://www.square-mi.com/wp/?attachment_id=124"><img class="alignnone size-medium wp-image-124" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicExplorer_FolderConflictDlg-300x145.png" alt="" width="300" height="145" /></a></p>
<p style="padding-left: 30px">オペレーションもファイルの時と同様に、[はい(Y)]で上書き、[いいえ(N)]で中断、<span style="text-decoration: underline">その他</span>で従来のダイアログ表示、を行います。</p>
<p><span style="font-size: medium;color: #0000ff"><strong>&#8220;Language&#8221;タブ</strong></span></p>
<p>&#8220;Select a language for the user interface&#8221;</p>
<p style="padding-left: 30px">言語を選択します。Windows が日本語版であれば、 &#8220;Current OS language&#8221; と、&#8221;ja-JP &#8211; 日本語(日本) はどちらを選択しても多分同じです。</p>
<p><span style="font-size: medium;color: #0000ff"><strong>&#8220;Navigation Pane&#8221; タブ</strong></span></p>
<p>&#8220;Navigation pane style&#8221;</p>
<p style="padding-left: 30px">ナビゲーションウィンドウのノードの部分がそれぞれ以下のように描画されます。</p>
<p style="padding-left: 30px">Windows XP Classic</p>
<p style="padding-left: 30px"> <a href="http://www.square-mi.com/wp/64/classic-explorer-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/classicexplorer_navigationpanexpclassic/" rel="attachment wp-att-127"><img class="alignnone size-full wp-image-127" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicExplorer_NavigationPaneXPClassic.png" alt="" width="200" height="76" /></a></p>
<p style="padding-left: 30px">Windows XP Simple</p>
<p style="padding-left: 30px"><a href="http://www.square-mi.com/wp/64/classic-explorer-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/classicexplorer_navigationpanexpsimple/" rel="attachment wp-att-128"><img class="alignnone size-full wp-image-128" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicExplorer_NavigationPaneXPSimple.png" alt="" width="187" height="51" /></a></p>
<p style="padding-left: 30px">Windows Vista</p>
<p style="padding-left: 30px"><a href="http://www.square-mi.com/wp/64/classic-explorer-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/classicexplorer_navigationpanevista/" rel="attachment wp-att-129"><img class="alignnone size-full wp-image-129" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicExplorer_NavigationPaneVista.png" alt="" width="182" height="74" /></a></p>
<p>&#8220;Show horizontal scrollbar&#8221;</p>
<p style="padding-left: 30px">&#8220;Enable&#8221; を選択すると、ナビゲーションウィンドウで、ドライブ名やフォルダー名が表示しきれなかったとき水平スクロールバーが現れます。　それに対して、&#8221;Disable&#8221; を選択すると、ドライブ名やフォルダー名が表示しきれなくても水平スクロールバーは現れません。　&#8221;Default&#8221; の意味するものがわかりませんが、初期の状態ということだと思います。　当方の環境では、&#8221;Disable&#8221; と同じようです。</p>
<p>&#8220;Don&#8217;t fade buttons&#8221;</p>
<p style="padding-left: 30px">&#8220;Navigation pane style&#8221; で、&#8221;Windows XP Simple&#8221; や、&#8221;Windows Vista&#8221; を選択した場合、マウスオーバーでノードアイコンが表示され、マウスアウトしたときノードアイコンはフェードアウトしますが、ここをチェックした場合、常に表示された状態となります。</p>
<p>&#8220;Auto-navigate to the selected folder&#8221;</p>
<p style="padding-left: 30px">Always を選択した場合、右ペインでフォルダーの階層を移動するとそれにつれてナビゲーションウィンドウの選択ノードが変わります。　フォルダーオプションの「自動的に現在のフォルダーまで展開する」にチェック、と同じじゃないかと思います。</p>
<p>&#8220;Enable Alt + Enter in the navigation pane&#8221;</p>
<p style="padding-left: 30px">チェックした場合、ナビゲーションウィンドウのドライブまたはフォルダー上で[Alt] + [Enter]　押下でプロパティを表示します。</p>
<p> &#8221;Fix folder scrolling&#8221;</p>
<p style="padding-left: 30px">ツリーノードを開いたときフォルダー位置がかってに動いてしまうバグをフィックスしています。</p>
<p><strong><span style="font-size: medium;color: #0000ff">&#8220;Toolbar Buttons&#8221;</span></strong></p>
<p style="padding-left: 30px">左側のツリー(Current toolbar buttons)が現在ツールバーに表示されているアイテムです。アイテムを追加するには表示したい位置に右側のリスト(Available commands)からドラッグします。　アイテム上にドロップすることで階層化も可能です。</p>
<p style="padding-left: 30px"><strong>カスタムコマンドの追加方法</strong></p>
<p style="padding-left: 30px">右側のリストの一番後ろの &#8220;Custom Command&#8221; を左側ツリーの表示したい位置にドラッグします。　名称 &#8220;CustomItem&#8221; のアイテムが追加されるので、その上で右クリックします。</p>
<p style="padding-left: 30px">まず、アイテムの名前を変えます。<br />
右クリックして現れるコンテキストメニューから &#8220;Rename Item&#8221; を選択します。アイテム名が入力モードに変わるので変えたい名前に変えてください。　但し、このバージョンでは日本語は無理なようです。</p>
<p style="padding-left: 30px">次に、例としてコマンドプロンプトが現在のフォルダーに開かれるようアイテムを編集します。<br />
右クリックして現れるコンテキストメニューから &#8220;Edit Item&#8221; を選択します。<br />
現れたダイアログに<br />
Command:cmd.exe<br />
Label:コマンドプロンプト<br />
Tips:コマンドプロンプト<br />
Icon:[...]ボタンで適当なアイコンを選択<br />
※Labelを表示したくないときは、未入力でも構いません。<br />
を入力し、[OK]ボタンをクリック。<br />
これで、エクスプローラーで現在選択中のフォルダーでコマンドプロンプトが開けるようになります。<br />
別のプログラムを登録したければ、Command フィールドにそのプログラムを[...]で選択し、Lavel,Tipsに「○○」などと入力し、適当なIconを選択するだけです。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/64/classic-explorer-%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classic Start Menu の使い方</title>
		<link>http://www.square-mi.com/wp/59/classic-start-menu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=classic-start-menu</link>
		<comments>http://www.square-mi.com/wp/59/classic-start-menu/#comments</comments>
		<pubDate>Wed, 26 Sep 2012 01:59:14 +0000</pubDate>
		<dc:creator>commerce</dc:creator>
				<category><![CDATA[フリーソフト]]></category>
		<category><![CDATA[スタートメニュー]]></category>

		<guid isPermaLink="false">http://www.square-mi.com/wp/?p=59</guid>
		<description><![CDATA[Classic Start Menu の使い方 スタートボタン→設定→Classic Start Menu　または、 スタートボタン→プログラム→Classic Shell→Classic Start Menu Sett &#8230; <a href="http://www.square-mi.com/wp/59/classic-start-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1><a href="http://www.square-mi.com/wp/30/classic-shell/classicshell_startmenuicon/" rel="attachment wp-att-24"><img class="alignnone size-full wp-image-24" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShell_StartMenuIcon.png" alt="" width="48" height="48" /></a>Classic Start Menu の使い方</h1>
<p>スタートボタン→設定→Classic Start Menu　または、</p>
<p>スタートボタン→プログラム→Classic Shell→Classic Start Menu Settings</p>
<p>をクリックすると、&#8221;Classic Start Menu&#8221; の設定画面が表示されます。</p>
<p>画面下部のラジオボタンで、&#8221;Basic Settings&#8221;（基本設定) と、&#8221;All Settings&#8221; (詳細設定) の選択を行えます。　以下では、&#8221;Basic Settings&#8221;（基本設定) について説明します。</p>
<p><span style="color: #0000ff"> <span style="font-size: medium"><strong>&#8220;Start Menu Style&#8221; タブ</strong></span></span></p>
<p><a href="http://www.square-mi.com/wp/71/classic-shell-%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/classicshellsetup_06/" rel="attachment wp-att-79"><img class="alignnone size-medium wp-image-79" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicShellSetup_06-300x201.png" alt="" width="300" height="201" /></a></p>
<p>&#8220;Windows Classic&#8221;, &#8220;Windows XP&#8221;, &#8220;Windows Vista/Windows 7&#8243; の中から好みのスタイルを選択します。</p>
<p><span style="color: #0000ff;font-size: medium"><strong>&#8220;Basic Settings&#8221; タブ</strong></span></p>
<p><span style="color: #000000"><a href="http://www.square-mi.com/wp/59/classic-start-menu/classicstartmenusettings/" rel="attachment wp-att-95"><img class="alignnone size-medium wp-image-95" src="http://www.square-mi.com/wp/wp-content/uploads/ClassicStartMenuSettings-300x201.png" alt="" width="300" height="201" /></a></span></p>
<p>&#8221; Left Click opens:&#8221;</p>
<p style="padding-left: 30px">スタートメニューをクリックした際に開くメニューを選択します。</p>
<ul>
<li>&#8220;Nothing&#8221;　は、何も開きません。</li>
<li>&#8220;Classic Start Menu&#8221; は、&#8221;Start Menu Style&#8221; で選択したクラシックスタイルのメニューが開きます。</li>
<li>&#8220;Windows Start Menu&#8221; は、Windows 本来のスタートメニューが開きます。</li>
</ul>
<p>&#8220;Shift + Click opens:&#8221;</p>
<p style="padding-left: 30px">[Shift]キーを押しながらスタートメニューをクリックした際に開くメニューを選択します。</p>
<p style="padding-left: 30px">※選択肢については、&#8221; Left Click opens:&#8221; と同じです。</p>
<p>&#8220;Windows Key opens:&#8221;</p>
<p style="padding-left: 30px">[Win]キーを押した際に開くメニューを選択します。</p>
<p style="padding-left: 30px">※選択肢については、&#8221; Left Click opens:&#8221; と同じです。</p>
<p> &#8221;Shift + Win opens:&#8221;</p>
<p style="padding-left: 30px">[Shift]キーを押しながら[Win]キーを押した際に開くメニューを選択します。</p>
<p style="padding-left: 30px">※選択肢については、&#8221; Left Click opens:&#8221; と同じです。</p>
<p>&#8220;Favorites&#8221;</p>
<p style="padding-left: 30px">「お気に入り」について、クラシックスタートメニューへの表示をコントロールします。</p>
<ul>
<li>&#8220;Don&#8217;t display this item　スタートメニューに表示されません。</li>
<li>&#8220;Display as a link&#8221;　スタートメニューにリンクとして表示されます。</li>
<li>&#8220;Display as a menu&#8221; スタートメニューにメニューアイテムとして表示されます。下位階層がサブメニューとし表示されます。</li>
</ul>
<p>&#8220;Recent documents&#8221;</p>
<p style="padding-left: 30px">「最近使ったファイル」について、クラシックスタートメニューへの表示をコントロールします。</p>
<p style="padding-left: 30px">※選択肢については、&#8221; Favorites&#8221; を参照してください。</p>
<p>&#8220;Control Panel&#8221;</p>
<p style="padding-left: 30px">「コントロールパネル」について、クラシックスタートメニュー→設定　への表示をコントロールします。</p>
<p style="padding-left: 30px">※選択肢については、&#8221; Favorites&#8221; を参照してください。</p>
<p> &#8221;Show Log Off&#8221;</p>
<p style="padding-left: 30px">「ログオフ」について、クラシックスタートメニューへの表示をコントロールします。チェックした場合、クラシックスタートメニュー→シャットダウンの上に、「&lt;ユーザー&gt;のログオフ」が表示されるようになります。</p>
<p> &#8221;Show recent programs&#8221;</p>
<p style="padding-left: 30px">チェックした場合、最近使ったプログラムの一覧がクラシックスタートメニューに表示されるようになります。</p>
<p>&#8220;Menu delay&#8221;</p>
<p style="padding-left: 30px">スタートメニューアイコンをクリックしてからクラシックスタートメニューが表示されるまでの遅延時間を1/1000秒単位で指定します。</p>
<p>&#8220;Show search box&#8221;</p>
<p style="padding-left: 30px">検索ボックスについて、クラシックスタートメニューへの表示をコントロールします。</p>
<ul>
<li>&#8220;No search box&#8221;　検索ボックスを表示しません。</li>
<li>&#8220;Access Normally&#8221; 検索ボックスを表示します。スタートボタンをクリックした後、直ちにカーソルが検索ボックスに移動します。</li>
<li>&#8220;Access with Tab&#8221; 検索ボックスを表示します。スタートボタンをクリックした後、検索ボックスをクリックするか、[Tab]キーを押さなければカーソルは検索ボックスに移動しません。</li>
</ul>
<p>&#8220;Cascading All Programs menu&#8221;</p>
<p style="padding-left: 30px">チェックした場合、スタートメニューが、&#8221;Windows Start Menu&#8221; であってもクラシックスタイルと同様にメニューアイテムはカスケードし表示されます。例えば、設定初期値では [Shift] + Click opens が、&#8221;Windows Start Menu&#8221; に設定されていますが、その際も「すべてのプログラム」はカスケード表示されます。</p>
<p>&#8220;Replace Start Button&#8221;</p>
<p style="padding-left: 30px">スタートボタンのアイコンを変更します。 &#8220;All Settings&#8221; では、&#8221;Button Look&#8221; の中からアイコンを選択することができます。 変更は次に &#8220;Classic Start Menu&#8221; が起動された際に反映されます。　即時反映させたい場合は、スタートメニューの上で右クリックし、コンテキストメニューから[終了]を選択し、&#8221;Classic Start Menu&#8221; を一旦終了後、もう一度 &#8220;Classic Start Menu Settings&#8221; をクリックしてください。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>検索ボックスを表示します。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.square-mi.com/wp/59/classic-start-menu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
