<?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>web tips around me</title>
	<atom:link href="http://yamazon.org/feed" rel="self" type="application/rss+xml" />
	<link>http://yamazon.org</link>
	<description>ホームページ制作,SEO,CMS ...</description>
	<lastBuildDate>Thu, 26 Aug 2010 05:39:59 +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>xreaサーバ　phpMyAdminへのログイン</title>
		<link>http://yamazon.org/other/474</link>
		<comments>http://yamazon.org/other/474#comments</comments>
		<pubDate>Thu, 26 Aug 2010 05:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[xreaサーバ]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=474</guid>
		<description><![CDATA[二段階で認証があって毎回忘れてしまうので、メモ。。。
最初の認証は、xreaのデータベース画面下の方にある
「ページ入室の際はログ閲覧画面の認証パスワード(ユーザー名:＊＊＊＊,パスワード:＠＠＠＠)をご利用下さい。」
 [...]]]></description>
			<content:encoded><![CDATA[<p>二段階で認証があって毎回忘れてしまうので、メモ。。。</p>
<p>最初の認証は、xreaのデータベース画面下の方にある<br />
「ページ入室の際はログ閲覧画面の認証パスワード(ユーザー名:＊＊＊＊,パスワード:＠＠＠＠)をご利用下さい。」<br />
の箇所の通り入力。</p>
<p>phpMyAdminの認証は使いたいデータベース名とそのパスワード。</p>
<p>ポップ認証　ユーザー名:userID,パスワード:wpec(4文字)</p>
<p>ウェブ認証　ユーザー名:userID,パスワード:wpecZkf3vqZp</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/474/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP　サーバの空き容量、ディレクトリ内のファイル一覧を調べる</title>
		<link>http://yamazon.org/other/471</link>
		<comments>http://yamazon.org/other/471#comments</comments>
		<pubDate>Wed, 11 Aug 2010 09:44:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[一覧]]></category>
		<category><![CDATA[空き容量]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=471</guid>
		<description><![CDATA[//ファイル一覧を表示するパスを指定する
$path = &#8220;../member&#8221;;
//ディレクトリを表示する
print(&#8221;ディレクトリ「&#8220;.$path.&#8221;」 [...]]]></description>
			<content:encoded><![CDATA[<p>//ファイル一覧を表示するパスを指定する<br />
$path = &#8220;../member&#8221;;</p>
<p>//ディレクトリを表示する<br />
print(&#8221;ディレクトリ「<b>&#8220;.$path.&#8221;</b>」の一覧</p>
<p>&#8220;);</p>
<p>//文法  disk_free_space( パス )<br />
//disk_free_spaceは指定したパスに対応するドライブの空き容量をバイト数で<br />
//返す<br />
print(&#8221;ドライブの空き容量<b> &#8220;.disk_free_space($path).&#8221;</b>バイト</p>
<p>&#8220;);</p>
<p>//文法  disk_total_space( パス )<br />
//disk_total_spaceは指定したパスに対応するドライブの使用容量をバイト数で返す<br />
//<br />
print(&#8221;ドライブの使用容量<b> &#8220;.disk_total_space($path).&#8221;</b>バイト</p>
<p>&#8220;);</p>
<p>参考サイト：http://allabout.co.jp/gm/gc/47433/</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/471/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 表示中のURLをサブドメインまで取得する</title>
		<link>http://yamazon.org/other/468</link>
		<comments>http://yamazon.org/other/468#comments</comments>
		<pubDate>Fri, 06 Aug 2010 08:40:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[サブドメイン]]></category>
		<category><![CDATA[表示中]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=468</guid>
		<description><![CDATA[$_SERVER['HTTP_HOST']
参考サイト：http://ambiesoft.ddo.jp/blog/archives/580
]]></description>
			<content:encoded><![CDATA[<p>$_SERVER['HTTP_HOST']</p>
<p>参考サイト：http://ambiesoft.ddo.jp/blog/archives/580</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/468/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>キャベツの臭みをとる！</title>
		<link>http://yamazon.org/other/466</link>
		<comments>http://yamazon.org/other/466#comments</comments>
		<pubDate>Thu, 22 Jul 2010 10:01:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[キャベツ]]></category>
		<category><![CDATA[臭み]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=466</guid>
		<description><![CDATA[WEBとは全然関係ない話題ですが、お店などで出てくる生のキャベツは臭みもなく美味しく食べれるのですが、生のキャベツを家庭で食べようとすると、どうしても臭みがあるので、どうしたものかと調べていると簡単に解決出来る方法があり [...]]]></description>
			<content:encoded><![CDATA[<p>WEBとは全然関係ない話題ですが、お店などで出てくる生のキャベツは臭みもなく美味しく食べれるのですが、生のキャベツを家庭で食べようとすると、どうしても臭みがあるので、どうしたものかと調べていると簡単に解決出来る方法がありましたので、メモしておこうと思います。</p>
<p>方法は簡単で、、、、、「<strong>冷水にさらす</strong>」</p>
<p>以上で簡単にキャベツの臭みがなくなりました。</p>
<p>以下のサイトには時間の目安など書いていなかったのですが、私がやった感じだと、2～3分程度冷水に浸けておくだけで、かなり臭みはなくなりました。<br />
あまり長いこと浸けるのは栄養分が流れてしまって良くないみたいです。</p>
<p>参考サイト：http://www.tsumagoi-kankou.jp/cabbage/recipe.html</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/466/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 現在表示中のドメイン名、ファイル名取得</title>
		<link>http://yamazon.org/other/464</link>
		<comments>http://yamazon.org/other/464#comments</comments>
		<pubDate>Thu, 15 Jul 2010 13:37:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[ドメイン名]]></category>
		<category><![CDATA[ファイル名]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=464</guid>
		<description><![CDATA[//絶対パス
echo __FILE__ . &#8216;&#8216;;
//ディレクトリパス
echo dirname(__FILE__) . &#8216;&#8216;;
//スクリプト名
echo basen [...]]]></description>
			<content:encoded><![CDATA[<p>//絶対パス<br />
echo __FILE__ . &#8216;<br />&#8216;;</p>
<p>//ディレクトリパス<br />
echo dirname(__FILE__) . &#8216;<br />&#8216;;</p>
<p>//スクリプト名<br />
echo basename(__FILE__) . &#8216;<br />&#8216;;</p>
<p>echo $_SERVER["SERVER_NAME"];<br />
echo $_SERVER["SCRIPT_NAME"];<br />
echo &#8216;?&#8217;;<br />
echo $_SERVER["QUERY_STRING"];</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/464/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;URL file- access is disabled in the server configuration&#8221;というメッセージが表示された場合の対処法</title>
		<link>http://yamazon.org/other/458</link>
		<comments>http://yamazon.org/other/458#comments</comments>
		<pubDate>Wed, 07 Jul 2010 10:40:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=458</guid>
		<description><![CDATA[■php.iniの設定が変更可能な場合
PHP コード スニペットを使用していて、ウェブページに &#8220;URL file-access is disabled in the server configuratio [...]]]></description>
			<content:encoded><![CDATA[<p>■php.iniの設定が変更可能な場合</p>
<p>PHP コード スニペットを使用していて、ウェブページに &#8220;URL file-access is disabled in the server configuration&#8221; (URL ファイル アクセスはサーバーの設定で無効になっています) エラー メッセージが表示される場合は、ウェブマスターまたはホスティング プロバイダに連絡して、PHP サーバーの設定内の allow_url_fopen と allow_url_include を有効にしてください。</p>
<p>参考サイト：https://www.google.com/adsense/support/bin/answer.py?hl=jp&#038;answer=70494</p>
<p>■phpファイル内で解決する場合</p>
<p>&lt;? php</p>
<p>function get_content($url)<br />
{<br />
    $ch = curl_init();</p>
<p>    curl_setopt ($ch, CURLOPT_URL, $url);<br />
    curl_setopt ($ch, CURLOPT_HEADER, 0);</p>
<p>    ob_start();</p>
<p>    curl_exec ($ch);<br />
    curl_close ($ch);<br />
    $string = ob_get_contents();</p>
<p>    ob_end_clean();</p>
<p>    return $string;<br />
}</p>
<p>#usage:<br />
$content = get_content (&#8221;http://www.php.net&#8221;);<br />
var_dump ($content);<br />
?></p>
<p>参考サイト：http://jp.php.net/manual/ja/function.fopen.php</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/458/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zencart ダウンロード商品の登録方法</title>
		<link>http://yamazon.org/other/429</link>
		<comments>http://yamazon.org/other/429#comments</comments>
		<pubDate>Wed, 30 Jun 2010 09:50:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[Zencart]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=429</guid>
		<description><![CDATA[以下のサイトを参考にすれば、ダウンロード商品の登録が出来ました。
http://zencart-pro.com/help/node/180
]]></description>
			<content:encoded><![CDATA[<p>以下のサイトを参考にすれば、ダウンロード商品の登録が出来ました。</p>
<p>http://zencart-pro.com/help/node/180</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/429/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zencart META内のauthor、generatorの設定</title>
		<link>http://yamazon.org/zencart/427</link>
		<comments>http://yamazon.org/zencart/427#comments</comments>
		<pubDate>Tue, 29 Jun 2010 11:27:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Zencart]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=427</guid>
		<description><![CDATA[includes/templates/テンプレート名/common 内のhtml_header.phpを編集。
]]></description>
			<content:encoded><![CDATA[<p>includes/templates/テンプレート名/common 内のhtml_header.phpを編集。</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/zencart/427/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zencart サイトタイトル・サイトキーワードの変更</title>
		<link>http://yamazon.org/other/425</link>
		<comments>http://yamazon.org/other/425#comments</comments>
		<pubDate>Tue, 29 Jun 2010 11:21:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[雑記]]></category>
		<category><![CDATA[Zencart]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=425</guid>
		<description><![CDATA[SEO対策のためには、サイトのタイトルやキーワードを設定することになると思いますが、zencartで構築されたサイトのタイトルやキーワードを変更するには、includes/languages/japanese/meta_ [...]]]></description>
			<content:encoded><![CDATA[<p>SEO対策のためには、サイトのタイトルやキーワードを設定することになると思いますが、zencartで構築されたサイトのタイトルやキーワードを変更するには、includes/languages/japanese/meta_tag.php　を編集します。</p>
<p>■サイトのタイトルを変更<br />
「TITLE」、「SITE_TAGLINE」を変更する。</p>
<p>■キーワードを変更<br />
「CUSTOM_KEYWORDS」を変更する。</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/other/425/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zencart フッター部のzencartサイトへのリンク、コピーライトの変更</title>
		<link>http://yamazon.org/zencart/423</link>
		<comments>http://yamazon.org/zencart/423#comments</comments>
		<pubDate>Tue, 29 Jun 2010 11:11:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Zencart]]></category>

		<guid isPermaLink="false">http://yamazon.org/?p=423</guid>
		<description><![CDATA[includes/languages/japanese.php　内の「FOOTER_TEXT_BODY」を変更する。
その他、デフォルトで設定されている日本語の設定はこのファイル内の項目を修正する。
]]></description>
			<content:encoded><![CDATA[<p>includes/languages/japanese.php　内の「FOOTER_TEXT_BODY」を変更する。</p>
<p>その他、デフォルトで設定されている日本語の設定はこのファイル内の項目を修正する。</p>
]]></content:encoded>
			<wfw:commentRss>http://yamazon.org/zencart/423/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
