<?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"
	>

<channel>
	<title>メモ　バインダー</title>
	<atom:link href="http://memo.seobinder.net/feed" rel="self" type="application/rss+xml" />
	<link>http://memo.seobinder.net</link>
	<description>WEB関連のメモ的バインダー</description>
	<pubDate>Sun, 06 Dec 2009 13:02:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>ja</language>
			<item>
		<title>phpエラー：It is not safe to rely on the system&#8217;s timezone settings.</title>
		<link>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/php%e3%82%a8%e3%83%a9%e3%83%bc%ef%bc%9ait-is-not-safe-to-rely-on-the-systems-timezone-settings.html</link>
		<comments>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/php%e3%82%a8%e3%83%a9%e3%83%bc%ef%bc%9ait-is-not-safe-to-rely-on-the-systems-timezone-settings.html#comments</comments>
		<pubDate>Sun, 06 Dec 2009 13:02:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

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

		<category><![CDATA[WEBプログラミング]]></category>

		<category><![CDATA[プログラム]]></category>

		<category><![CDATA[ホームページ]]></category>

		<category><![CDATA[悩み解決]]></category>

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

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

		<category><![CDATA[エラー]]></category>

		<guid isPermaLink="false">http://memo.seobinder.net/?p=832</guid>
		<description><![CDATA[別ＰＣからデータを移したXAMPP先でエラー発生。XAMPPは関係なしにPHPで下記のようなエラーが出る場合

Warning: date() [function.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. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Tokyo' for '9.0/no DST' instead [...]]]></description>
			<content:encoded><![CDATA[<p>別ＰＣからデータを移したXAMPP先でエラー発生。XAMPPは関係なしにPHPで下記のようなエラーが出る場合</p>
<hr />
Warning: date() [function.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. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Tokyo' for '9.0/no DST' instead in C:***/***/***.php on line **</p>
<hr />
<p>タイムゾーンの設定がなされていない事が原因。<br />
下記設定を追加。<br />
date_default_timezone_set('Asia/Tokyo');</p>
<p>参考<br />
<a href="http://www.res-system.com/weblog/item/563">date関数で”Asia/Tokyo・・”なんかのエラーが出る件：PHP5.1.0以降</a><br />
<a href="http://kimagure-pg.seesaa.net/article/10541874.html">It is not safe to rely on the system&#8217;s timezone settings.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/php%e3%82%a8%e3%83%a9%e3%83%bc%ef%bc%9ait-is-not-safe-to-rely-on-the-systems-timezone-settings.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>xamppでbasic認証を行う方法</title>
		<link>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/xampp%e3%81%a7basic%e8%aa%8d%e8%a8%bc%e3%82%92%e8%a1%8c%e3%81%86%e6%96%b9%e6%b3%95.html</link>
		<comments>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/xampp%e3%81%a7basic%e8%aa%8d%e8%a8%bc%e3%82%92%e8%a1%8c%e3%81%86%e6%96%b9%e6%b3%95.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 08:21:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[用語]]></category>

		<category><![CDATA[basic認証]]></category>

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

		<guid isPermaLink="false">http://memo.seobinder.net/?p=827</guid>
		<description><![CDATA[.htaccess
=======================================
AuthType Basic
AuthName "Basic access authentication"
AuthUserFile /xampp/htdocs/sundaikai/password.dat
require valid-user
.htaccess
=======================================
c:\>xampp\apache\bin\htpasswd -mc c:\htpassword.dat test
New password:パスワードを入力
Re-type new password:パスワード再入力
Adding password for user test と表示されればCドライブ直下に暗号化済みのhtpassword.datが完成
※この場合のtestはbasic認証のIDとなる。
]]></description>
			<content:encoded><![CDATA[<p>.htaccess<br />
=======================================<br />
AuthType Basic<br />
AuthName "Basic access authentication"<br />
AuthUserFile /xampp/htdocs/sundaikai/password.dat<br />
require valid-user</p>
<p>.htaccess<br />
=======================================<br />
c:\>xampp\apache\bin\htpasswd -mc c:\htpassword.dat test<br />
New password:パスワードを入力<br />
Re-type new password:パスワード再入力<br />
Adding password for user test と表示されればCドライブ直下に暗号化済みのhtpassword.datが完成</p>
<p>※この場合のtestはbasic認証のIDとなる。</p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/xampp%e3%81%a7basic%e8%aa%8d%e8%a8%bc%e3%82%92%e8%a1%8c%e3%81%86%e6%96%b9%e6%b3%95.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>フリーのPhotoshopエフェクト系ブラシ紹介サイト</title>
		<link>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/%e3%83%95%e3%83%aa%e3%83%bc%e3%81%aephotoshop%e3%82%a8%e3%83%95%e3%82%a7%e3%82%af%e3%83%88%e7%b3%bb%e3%83%96%e3%83%a9%e3%82%b7%e7%b4%b9%e4%bb%8b%e3%82%b5%e3%82%a4%e3%83%88.html</link>
		<comments>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/%e3%83%95%e3%83%aa%e3%83%bc%e3%81%aephotoshop%e3%82%a8%e3%83%95%e3%82%a7%e3%82%af%e3%83%88%e7%b3%bb%e3%83%96%e3%83%a9%e3%82%b7%e7%b4%b9%e4%bb%8b%e3%82%b5%e3%82%a4%e3%83%88.html#comments</comments>
		<pubDate>Sun, 25 Oct 2009 09:21:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[用語]]></category>

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

		<guid isPermaLink="false">http://memo.seobinder.net/?p=822</guid>
		<description><![CDATA[ブラシを読み込んで、グラデーションと光彩等を施せば簡単に使用する事が出来る。
250+ Light Effect Brushes for Photoshop
http://designm.ag/resources/lig [...]]]></description>
			<content:encoded><![CDATA[<p>ブラシを読み込んで、グラデーションと光彩等を施せば簡単に使用する事が出来る。</p>
<p><a href="http://designm.ag/resources/light-effect-brushes/">250+ Light Effect Brushes for Photoshop<br />
http://designm.ag/resources/light-effect-brushes/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/%e3%83%95%e3%83%aa%e3%83%bc%e3%81%aephotoshop%e3%82%a8%e3%83%95%e3%82%a7%e3%82%af%e3%83%88%e7%b3%bb%e3%83%96%e3%83%a9%e3%82%b7%e7%b4%b9%e4%bb%8b%e3%82%b5%e3%82%a4%e3%83%88.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>毎日指定時間にyumを実行させる</title>
		<link>http://memo.seobinder.net/%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc/%e6%af%8e%e6%97%a5%e6%8c%87%e5%ae%9a%e6%99%82%e9%96%93%e3%81%abyum%e3%82%92%e5%ae%9f%e8%a1%8c%e3%81%95%e3%81%9b%e3%82%8b.html</link>
		<comments>http://memo.seobinder.net/%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc/%e6%af%8e%e6%97%a5%e6%8c%87%e5%ae%9a%e6%99%82%e9%96%93%e3%81%abyum%e3%82%92%e5%ae%9f%e8%a1%8c%e3%81%95%e3%81%9b%e3%82%8b.html#comments</comments>
		<pubDate>Mon, 19 Oct 2009 15:00:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[UNIX]]></category>

		<category><![CDATA[サーバー]]></category>

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

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

		<guid isPermaLink="false">http://memo.seobinder.net/?p=820</guid>
		<description><![CDATA[毎日朝４時にyumを実行
# crontab　-e
00 04 * * * /usr/bin/yum -y update
]]></description>
			<content:encoded><![CDATA[<p>毎日朝４時にyumを実行</p>
<p># crontab　-e<br />
00 04 * * * /usr/bin/yum -y update</p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/%e3%82%b5%e3%83%bc%e3%83%90%e3%83%bc/%e6%af%8e%e6%97%a5%e6%8c%87%e5%ae%9a%e6%99%82%e9%96%93%e3%81%abyum%e3%82%92%e5%ae%9f%e8%a1%8c%e3%81%95%e3%81%9b%e3%82%8b.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>IE6とIE7にのみhackをかける</title>
		<link>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/ie6%e3%81%a8ie7%e3%81%ab%e3%81%ae%e3%81%bfhack%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b.html</link>
		<comments>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/ie6%e3%81%a8ie7%e3%81%ab%e3%81%ae%e3%81%bfhack%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 02:05:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[用語]]></category>

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

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

		<guid isPermaLink="false">http://memo.seobinder.net/?p=818</guid>
		<description><![CDATA[IE6とIE7にhackを行う場合、プロパティの前にバックスラッシュをつけるとIE6とIE7にハックが可能
ieのみ読み込むcssを作成し
#sample{
 width: 100px;
 /width: 90px;
  [...]]]></description>
			<content:encoded><![CDATA[<p>IE6とIE7にhackを行う場合、プロパティの前にバックスラッシュをつけるとIE6とIE7にハックが可能</p>
<p>ieのみ読み込むcssを作成し</p>
<p>#sample{<br />
 width: 100px;<br />
 /width: 90px;<br />
 _width: 80px;<br />
}</p>
<p>と使えば、IE8, IE7, IE6と段階的に適用させる事が可能。</p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/%e7%94%a8%e8%aa%9e-2/ie6%e3%81%a8ie7%e3%81%ab%e3%81%ae%e3%81%bfhack%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>CSSのoverflowでIEのみテキストがはみ出る問題</title>
		<link>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/css%e3%81%aeoverflow%e3%81%a7ie%e3%81%ae%e3%81%bf%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%8c%e3%81%af%e3%81%bf%e5%87%ba%e3%82%8b%e5%95%8f%e9%a1%8c.html</link>
		<comments>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/css%e3%81%aeoverflow%e3%81%a7ie%e3%81%ae%e3%81%bf%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%8c%e3%81%af%e3%81%bf%e5%87%ba%e3%82%8b%e5%95%8f%e9%a1%8c.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 01:50:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[タグ]]></category>

		<category><![CDATA[ホームページ]]></category>

		<category><![CDATA[悩み解決]]></category>

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

		<guid isPermaLink="false">http://memo.seobinder.net/?p=816</guid>
		<description><![CDATA[CSSでheightを指定し、overflowを指定した場合、IEのみheightからはみでる場合がある。
これは、子要素にposition: relative;を使用していた場合に発生する。
この場合、親要素にもpos [...]]]></description>
			<content:encoded><![CDATA[<p>CSSでheightを指定し、overflowを指定した場合、IEのみheightからはみでる場合がある。<br />
これは、子要素にposition: relative;を使用していた場合に発生する。<br />
この場合、親要素にもposition: relative;を指定してあげると、上手くいく場合が多い。</p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/css%e3%81%aeoverflow%e3%81%a7ie%e3%81%ae%e3%81%bf%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%8c%e3%81%af%e3%81%bf%e5%87%ba%e3%82%8b%e5%95%8f%e9%a1%8c.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>EC CUBEでメールが届かない</title>
		<link>http://memo.seobinder.net/cms/ec-cube%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%81%8c%e5%b1%8a%e3%81%8b%e3%81%aa%e3%81%84.html</link>
		<comments>http://memo.seobinder.net/cms/ec-cube%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%81%8c%e5%b1%8a%e3%81%8b%e3%81%aa%e3%81%84.html#comments</comments>
		<pubDate>Mon, 12 Oct 2009 00:55:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CMS]]></category>

		<category><![CDATA[EC CUBE]]></category>

		<category><![CDATA[EC CUBE - エラー]]></category>

		<category><![CDATA[ネットショップ（ＥＣサイト）構築]]></category>

		<category><![CDATA[ネットショプ(ECサイト)構築 - EC CUBE]]></category>

		<category><![CDATA[ホームページ]]></category>

		<category><![CDATA[悩み解決]]></category>

		<category><![CDATA[ec cube]]></category>

		<guid isPermaLink="false">http://memo.seobinder.net/?p=814</guid>
		<description><![CDATA[カスタマイズしていると、突然、受注メールやお問い合わせメールが、送信者にも管理者にも届かなくなる事がある。
この場合、
/data/mtb_constants_init.php　と　/data/cash/mtb_cons [...]]]></description>
			<content:encoded><![CDATA[<p>カスタマイズしていると、突然、受注メールやお問い合わせメールが、送信者にも管理者にも届かなくなる事がある。</p>
<p>この場合、<br />
/data/mtb_constants_init.php　と　/data/cash/mtb_constants.php　の</p>
<p>define('MAIL_BACKEND', "smtp");<br />
↓<br />
define('MAIL_BACKEND', "mail");<br />
に変更。</p>
<p>参考<br />
<a href="http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=3133&amp;forum=4" rel="nofollow">EC-CUBE 開発コミュニティサイト<br />
http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=3133&amp;forum=4</a><br />
<a href="http://ameblo.jp/tag-m/entry-10266773372.html">システム運用｜システムインテグレータＴＡＧ<br />
http://ameblo.jp/tag-m/entry-10266773372.html<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/cms/ec-cube%e3%81%a7%e3%83%a1%e3%83%bc%e3%83%ab%e3%81%8c%e5%b1%8a%e3%81%8b%e3%81%aa%e3%81%84.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>携帯サイトでphpファイルにするとXHTML/CSSが適切に表示されない場合</title>
		<link>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/%e6%90%ba%e5%b8%af%e3%82%b5%e3%82%a4%e3%83%88%e3%81%a7php%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%81%99%e3%82%8b%e3%81%a8xhtmlcss%e3%81%8c%e9%81%a9%e5%88%87%e3%81%ab%e8%a1%a8%e7%a4%ba.html</link>
		<comments>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/%e6%90%ba%e5%b8%af%e3%82%b5%e3%82%a4%e3%83%88%e3%81%a7php%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%81%99%e3%82%8b%e3%81%a8xhtmlcss%e3%81%8c%e9%81%a9%e5%88%87%e3%81%ab%e8%a1%a8%e7%a4%ba.html#comments</comments>
		<pubDate>Fri, 25 Sep 2009 07:37:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[.htaccess]]></category>

		<category><![CDATA[タグ]]></category>

		<category><![CDATA[ホームページ]]></category>

		<category><![CDATA[悩み解決]]></category>

		<category><![CDATA[携帯サイト]]></category>

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

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

		<category><![CDATA[モバイル]]></category>

		<category><![CDATA[モバイルサイト]]></category>

		<category><![CDATA[携帯]]></category>

		<guid isPermaLink="false">http://memo.seobinder.net/?p=811</guid>
		<description><![CDATA[１．エミュレーター上では問題ない。
２．htmlファイルで実機確認すると、きちんとXHTML/CSSが表示される
…にも関わらず同じソースをphpファイルにすると、きちんと表示されない場合がある。
この場合、.htacc [...]]]></description>
			<content:encoded><![CDATA[<p>１．エミュレーター上では問題ない。<br />
２．htmlファイルで実機確認すると、きちんとXHTML/CSSが表示される</p>
<p>…にも関わらず同じソースをphpファイルにすると、きちんと表示されない場合がある。<br />
この場合、.htaccessのAddTypeにhtmlは指定しているが、phpが指定されていないケースがある。</p>
<p>AddType application/xhtml+xml .htmlを試しにAddType application/xhtml+xml .phpに変更してみると、正常に表示されるケースが多い。</p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/%e6%82%a9%e3%81%bf%e8%a7%a3%e6%b1%ba/%e6%90%ba%e5%b8%af%e3%82%b5%e3%82%a4%e3%83%88%e3%81%a7php%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%81%99%e3%82%8b%e3%81%a8xhtmlcss%e3%81%8c%e9%81%a9%e5%88%87%e3%81%ab%e8%a1%a8%e7%a4%ba.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>WordPress エラー：Warning: include() [function.include]: Unable to access ***************.php in /plugins/exec-php/includes/runtime.php(**) : eval()’d code on line **</title>
		<link>http://memo.seobinder.net/cms/wordpress-%e3%82%a8%e3%83%a9%e3%83%bc%ef%bc%9awarning-include-functioninclude-unable-to-access-php-in-pluginsexec-phpincludesruntimephp-eval%e2%80%99d-code-on-line.html</link>
		<comments>http://memo.seobinder.net/cms/wordpress-%e3%82%a8%e3%83%a9%e3%83%bc%ef%bc%9awarning-include-functioninclude-unable-to-access-php-in-pluginsexec-phpincludesruntimephp-eval%e2%80%99d-code-on-line.html#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:55:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CMS]]></category>

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

		<category><![CDATA[WordPress - 基本]]></category>

		<category><![CDATA[wordpress - エラー]]></category>

		<category><![CDATA[ホームページ]]></category>

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

		<category><![CDATA[エラー]]></category>

		<guid isPermaLink="false">http://memo.seobinder.net/?p=809</guid>
		<description><![CDATA[これは、WordPressで且つPluginのExec-phpを使って、出現するエラーの１つ。
Warning: include() [function.include]: Unable to access ****** [...]]]></description>
			<content:encoded><![CDATA[<p>これは、WordPressで且つPluginのExec-phpを使って、出現するエラーの１つ。<br />
Warning: include() [function.include]: Unable to access ***************.php<br />
in /plugins/exec-php/includes/runtime.php(**) : eval()’d code on line **</p>
<p>例えば、&lt;?php include(TEMPLATEPATH . '****.php'); ?&gt;を正常に読み込めなかった場合に発生する。<br />
意外と、記載しているファイル名の記載間違いである事が多い。</p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/cms/wordpress-%e3%82%a8%e3%83%a9%e3%83%bc%ef%bc%9awarning-include-functioninclude-unable-to-access-php-in-pluginsexec-phpincludesruntimephp-eval%e2%80%99d-code-on-line.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress ページ分割の２重化を避ける</title>
		<link>http://memo.seobinder.net/cms/wordpress-%e3%83%9a%e3%83%bc%e3%82%b8%e5%88%86%e5%89%b2%e3%81%ae%ef%bc%92%e9%87%8d%e5%8c%96%e3%82%92%e9%81%bf%e3%81%91%e3%82%8b.html</link>
		<comments>http://memo.seobinder.net/cms/wordpress-%e3%83%9a%e3%83%bc%e3%82%b8%e5%88%86%e5%89%b2%e3%81%ae%ef%bc%92%e9%87%8d%e5%8c%96%e3%82%92%e9%81%bf%e3%81%91%e3%82%8b.html#comments</comments>
		<pubDate>Mon, 21 Sep 2009 15:41:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CMS]]></category>

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

		<category><![CDATA[WordPress - カスタマイズ]]></category>

		<category><![CDATA[WordPress - プラグイン]]></category>

		<category><![CDATA[ホームページ]]></category>

		<category><![CDATA[悩み解決]]></category>

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

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

		<category><![CDATA[プラグイン]]></category>

		<guid isPermaLink="false">http://memo.seobinder.net/?p=807</guid>
		<description><![CDATA[ページ分割すると、同一タイトルで記事が分割するのでＳＥＯ上宜しくない。
そこでいろいろ調べるとAvoiding Duplicate Title Tag on WordPress Postには下記のようなソースが掲載されて [...]]]></description>
			<content:encoded><![CDATA[<p>ページ分割すると、同一タイトルで記事が分割するのでＳＥＯ上宜しくない。<br />
そこでいろいろ調べると<a href="http://arie.putranto.com/blog/2009/03/avoiding-duplicate-title-tag-on-wordpress-post/">Avoiding Duplicate Title Tag on WordPress Post</a>には下記のようなソースが掲載されている。</p>
<blockquote><p>&lt;?php<br />
the_title();<br />
if ( get_query_var('page') ) {<br />
print ' - Page ' . get_query_var('page');<br />
}<br />
?&gt;
</p></blockquote>
<p>で、上記のソースだけだと、少々不恰好なので</p>
<p>&lt;?php<br />
the_title();<br />
if ( get_query_var('page') ) {<br />
print ' - Page ' .  get_query_var('page');<br />
}else{<br />
print ' - Page 1';<br />
}<br />
?&gt;</p>
<p>と変更</p>
<p>また、Pluguin - Pagebar2を利用した場合も、Page noが出ないので<br />
if文で分岐させればＯＫ</p>
<p>if($paged == 0){<br />
$paged = $paged+1;<br />
}</p>
<p>あとは好みに応じて、コンディショナルタグで条件分岐すればSEOにマッチしたタイトルタグが設定できる。<br />
参考<br />
<a href="http://arie.putranto.com/blog/2009/03/avoiding-duplicate-title-tag-on-wordpress-post/">Avoiding Duplicate Title Tag on WordPress Post</a><br />
<a href="http://arie.putranto.com/blog/2009/03/avoiding-duplicate-title-tag-on-wordpress-post/">http://arie.putranto.com/blog/2009/03/avoiding-duplicate-title-tag-on-wordpress-post/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://memo.seobinder.net/cms/wordpress-%e3%83%9a%e3%83%bc%e3%82%b8%e5%88%86%e5%89%b2%e3%81%ae%ef%bc%92%e9%87%8d%e5%8c%96%e3%82%92%e9%81%bf%e3%81%91%e3%82%8b.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

