<?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>BW-LOG</title>
	<atom:link href="http://blog.bit-works.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.bit-works.net</link>
	<description>(株)BitWorksのブログです.</description>
	<lastBuildDate>Tue, 28 Dec 2010 05:08:42 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>コンタクトフォーム 1</title>
		<link>http://blog.bit-works.net/archives/wpcf7_contact_form/%e3%82%b3%e3%83%b3%e3%82%bf%e3%82%af%e3%83%88%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-1</link>
		<comments>http://blog.bit-works.net/archives/wpcf7_contact_form/%e3%82%b3%e3%83%b3%e3%82%bf%e3%82%af%e3%83%88%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-1#comments</comments>
		<pubDate>Wed, 21 Dec 2011 09:09:23 +0000</pubDate>
		<dc:creator>tuti</dc:creator>
		
		<guid isPermaLink="false">http://blog.bit-works.net/archives/wpcf7_contact_form/%e3%82%b3%e3%83%b3%e3%82%bf%e3%82%af%e3%83%88%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-1</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://blog.bit-works.net/archives/wpcf7_contact_form/%e3%82%b3%e3%83%b3%e3%82%bf%e3%82%af%e3%83%88%e3%83%95%e3%82%a9%e3%83%bc%e3%83%a0-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPressの引っ越しの際に必要なSQLのまとめ</title>
		<link>http://blog.bit-works.net/archives/263</link>
		<comments>http://blog.bit-works.net/archives/263#comments</comments>
		<pubDate>Tue, 28 Dec 2010 05:08:42 +0000</pubDate>
		<dc:creator>tuti</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://blog.bit-works.net/?p=263</guid>
		<description><![CDATA[その他PluginがDB等を利用しており、URLが入っている場合は上記のようにREPLACEが必要です。 またパーマリンクを私用している場合は.htaccess内のパス変更も必要となります。]]></description>
			<content:encoded><![CDATA[<pre class="brush: plain; title: ; notranslate">
//URLの変更
UPDATE wp_options SET option_value = replace(option_value, 'http://以前のURL', 'http://新しいURL') WHERE option_name = 'home' OR option_name = 'siteurl';

//GUIDの変更
UPDATE wp_posts SET guid = REPLACE (guid, 'http://以前のURL', 'http://新しいURL');

//エントリー内URLの変更
UPDATE wp_posts SET post_content = REPLACE  (post_content, 'http://以前のURL', 'http://新しいURL');

//画像パスの変更
UPDATE wp_posts SET post_content = REPLACE (post_content, 'src=&quot;http://以前のURL', 'src=&quot;http://新しいURL');

UPDATE wp_posts SET  guid = REPLACE (guid, 'http://以前のURL', 'http://新しいURL') WHERE post_type = 'attachment';

//Metaの変更
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://以前のURL','http://新しいURL');
</pre>
<p>その他PluginがDB等を利用しており、URLが入っている場合は上記のようにREPLACEが必要です。</p>
<p>またパーマリンクを私用している場合は.htaccess内のパス変更も必要となります。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bit-works.net/archives/263/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wwwsqldesignerでバックエンドサーバーに保存する</title>
		<link>http://blog.bit-works.net/archives/255</link>
		<comments>http://blog.bit-works.net/archives/255#comments</comments>
		<pubDate>Sat, 09 Oct 2010 06:15:35 +0000</pubDate>
		<dc:creator>tuti</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[ER図]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[モデル]]></category>

		<guid isPermaLink="false">http://blog.bit-works.net/?p=255</guid>
		<description><![CDATA[モデリングツールとしてwwwsqldesignerを使用しています。 ブラウザでER図を書いてSQLに落とせるツールです。 作成したモデル構成を残す方法です（忘れるのでメモ） １、 ローカルDBにデータベースを作成して下 [...]]]></description>
			<content:encoded><![CDATA[<p>モデリングツールとして<a href="http://code.google.com/p/wwwsqldesigner/" target="_blank">wwwsqldesigner</a>を使用しています。</p>
<p>ブラウザでER図を書いてSQLに落とせるツールです。</p>
<p><a href="http://blog.bit-works.net/wp-content/uploads/sqld.png"><img src="http://blog.bit-works.net/wp-content/uploads/sqld-300x114.png" alt="" title="sqld" width="300" height="114" class="alignright size-medium wp-image-256" /></a></p>
<p><strong>作成したモデル構成を残す方法</strong>です（忘れるのでメモ）</p>
<p>１、<br />
ローカルDBにデータベースを作成して下記ファイルのSQLを流し込みます。<br />
/htdocs/wwwsqldesigner/backend/php-mysql/database.sql</p>
<p>２、<br />
下記ファイルを編集<br />
/htdocs/wwwsqldesigner/backend/php-mysql/index.php</p>
<pre class="brush: php; title: ; notranslate">
	function setup_saveloadlist() {
		define(&quot;SERVER&quot;,&quot;localhost&quot;);
		define(&quot;USER&quot;,&quot;xxx&quot;);
		define(&quot;PASSWORD&quot;,&quot;xxx&quot;);
		define(&quot;DB&quot;,&quot;xxx&quot;);
		define(&quot;TABLE&quot;,&quot;wwwsqldesigner&quot;);
	}
</pre>
<p>※function setup_import()に設定するとリバースエンジニアリングできるようです。<br />
とても便利です。</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-2395691642029212";
/* 728x15, 作成済み 09/06/30 */
google_ad_slot = "5513976068";
google_ad_width = 728;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bit-works.net/archives/255/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>このブログは？</title>
		<link>http://blog.bit-works.net/activities</link>
		<comments>http://blog.bit-works.net/activities#comments</comments>
		<pubDate>Fri, 15 Aug 2008 06:28:39 +0000</pubDate>
		<dc:creator>tuti</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://blog.bit-works.net/?page_id=5</guid>
		<description><![CDATA[株式会社BitWorks代表取締役の土田が書いています。 プログラムやオープンソースについて、仕事のことなどを適当につづってます。 Flickr：http://www.flickr.com/photos/15458169 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bit-works.net"><strong>株式会社BitWorks</strong></a>代表取締役の土田が書いています。<br />
プログラムやオープンソースについて、仕事のことなどを適当につづってます。</p>
<p>Flickr：<a href="http://www.flickr.com/photos/15458169@N00/ " target="_blank">http://www.flickr.com/photos/15458169@N00/ </a><br />
YouTube：<a href="http://www.youtube.com/user/lasty33" target="_blank">http://www.youtube.com/user/lasty33</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bit-works.net/activities/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>お問い合わせ</title>
		<link>http://blog.bit-works.net/mail</link>
		<comments>http://blog.bit-works.net/mail#comments</comments>
		<pubDate>Wed, 24 Sep 2008 11:42:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://blog.bit-works.net/?page_id=13</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[[contact-form-7]
]]></content:encoded>
			<wfw:commentRss>http://blog.bit-works.net/mail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>デベロッパー向けにTwitter APIの技術情報とアプリケーションの開発のヒントを掲載したTwitterのデベロッパー向けサイトがオープン</title>
		<link>http://blog.bit-works.net/archives/244</link>
		<comments>http://blog.bit-works.net/archives/244#comments</comments>
		<pubDate>Fri, 16 Apr 2010 02:18:52 +0000</pubDate>
		<dc:creator>tuti</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WebAPI]]></category>
		<category><![CDATA[サービス]]></category>
		<category><![CDATA[WebService]]></category>

		<guid isPermaLink="false">http://blog.bit-works.net/?p=244</guid>
		<description><![CDATA[デベロッパー向けにTwitter APIの技術情報とアプリケーションの開発のヒントを掲載したTwitterのデベロッパー向けサイトがオープンしましたね。 dev.twitter.com [Your apps]から登録中の [...]]]></description>
			<content:encoded><![CDATA[<p>デベロッパー向けにTwitter APIの技術情報とアプリケーションの開発のヒントを掲載したTwitterのデベロッパー向けサイトがオープンしましたね。<br />
<a href="http://bit.ly/clTJOG">dev.twitter.com</a></p>
<div id="attachment_245" class="wp-caption alignright" style="width: 310px"><img src="http://blog.bit-works.net/wp-content/uploads/twitter-api-site-300x199.png" alt="twitter-api-site" title="twitter-api-site" width="300" height="199" class="size-medium wp-image-245" /><p class="wp-caption-text">twitter-api-site</p></div>
<p>[Your apps]から登録中のアプリを確認することができます。</p>
<p>[Register an App]からアプリを登録する事ができます。いままではTwitterアカウントの設定からでしたが、こちらのサイトで管理することができるようです。</p>
<p>[API Status]現在のアプリのステータスを確認することができます。</p>
<div id="attachment_247" class="wp-caption alignright" style="width: 310px"><img src="http://blog.bit-works.net/wp-content/uploads/twitter-api-status-300x164.png" alt="twitter-api-status" title="twitter-api-status" width="300" height="164" class="size-medium wp-image-247" /><p class="wp-caption-text">twitter-api-status</p></div>
<p>これは見やすくてよいですね。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bit-works.net/archives/244/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

