<?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>Blog @ AvantBiz Design &#187; Web 網頁</title>
	<atom:link href="http://blog.avantbiz.com/category/computer/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.avantbiz.com</link>
	<description>Weblog about stuffs other than design</description>
	<lastBuildDate>Wed, 06 Jul 2011 02:45:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>解決透明 png 在 ie 6 下的問題: jQuery pngFix</title>
		<link>http://blog.avantbiz.com/2009/11/06/%e8%a7%a3%e6%b1%ba%e9%80%8f%e6%98%8e-png-%e5%9c%a8-ie-6-%e4%b8%8b%e7%9a%84%e5%95%8f%e9%a1%8c-jquery-pngfix/</link>
		<comments>http://blog.avantbiz.com/2009/11/06/%e8%a7%a3%e6%b1%ba%e9%80%8f%e6%98%8e-png-%e5%9c%a8-ie-6-%e4%b8%8b%e7%9a%84%e5%95%8f%e9%a1%8c-jquery-pngfix/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 10:13:35 +0000</pubDate>
		<dc:creator>eddie</dc:creator>
				<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/?p=124</guid>
		<description><![CDATA[http://jquery.andreaseberhard.de/pngFix/]]></description>
			<content:encoded><![CDATA[<p>http://jquery.andreaseberhard.de/pngFix/</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2009/11/06/%e8%a7%a3%e6%b1%ba%e9%80%8f%e6%98%8e-png-%e5%9c%a8-ie-6-%e4%b8%8b%e7%9a%84%e5%95%8f%e9%a1%8c-jquery-pngfix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>常見的CSS+DIV問題整理</title>
		<link>http://blog.avantbiz.com/2009/10/15/%e5%b8%b8%e8%a6%8b%e7%9a%84cssdiv%e5%95%8f%e9%a1%8c%e6%95%b4%e7%90%86/</link>
		<comments>http://blog.avantbiz.com/2009/10/15/%e5%b8%b8%e8%a6%8b%e7%9a%84cssdiv%e5%95%8f%e9%a1%8c%e6%95%b4%e7%90%86/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 03:28:08 +0000</pubDate>
		<dc:creator>eddie</dc:creator>
				<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/?p=119</guid>
		<description><![CDATA[Q.如何讓DIV區塊居中？ A.假設你的DIV總寬度是900px，我們可以這樣寫： &#60;style&#62; #page {width:900px;margin:0 auto;} &#60;/style&#62; &#60;div&#160;id=&#34;page&#34;&#62;居中的區塊&#60;/div&#62; Q.為什麼IE對於margin的算法有些不同？ A.當我們針對div設定了浮動(float)屬性之後，IE瀏覽器就會將margin加倍計算。例如我們設定margin-left:5px;，IE會算成10px。解決的方法是在該浮動區塊加上「display:inline」即可解決這個問題。 Q.為什麼設定超連結的visited會失效？ A.超連結的樣式有一定的順序，如果你同時要設定visited(訪問過的連結)，或是active(作用中的連結)，必須要按照這個順序設定：a:link→a:visited→a:hover→a:active。我們不用死記順序，可以這麼記：love、hate Q.如何在圖片上方放置flash？ A.有時候我們會看到有人的圖片上有flash的光圈特效，如果你要使用該特效，請將圖片設定為背景圖，然後在上方插入flash，記得要將flash設置為透明屬性： &#60;param name=&#34;wmode&#34; value=&#34;transparent&#34; /&#62; Q.在火狐瀏覽器設定最小高度 A.一般對區塊設定高度(height)後，在火狐瀏覽器中如果輸入超過高度的文字，區塊不會被撐開。如果我們希望可以設定最小高度，同時又希望文字過多可以撐開區塊的話，可以將你的區塊改寫為： div { height:auto!important; height:100px; min-height:100px; }]]></description>
			<content:encoded><![CDATA[<h3>Q.如何讓DIV區塊居中？</h3>
<p>A.假設你的DIV總寬度是900px，我們可以這樣寫：</p>
<div class="hl-surround">
<ol class="hl-main ln-show">
<li class="hl-firstline"><span style="color: Olive">&lt;</span><span style="color: Green">style</span><span style="color: Olive">&gt;</span></li>
<li><span style="color: Gray">#page {width:900px;margin:0 auto;}</span></li>
<li><span style="color: Olive">&lt;/</span><span style="color: Green">style</span><span style="color: Olive">&gt;</span></li>
<li><span style="color: Olive">&lt;</span><span style="color: Green">div</span><span style="color: Gray">&nbsp;</span><span style="color: #00008b">id</span><span style="color: Gray">=</span><span style="color: #8b0000">&quot;</span><span style="color: Red">page</span><span style="color: #8b0000">&quot;</span><span style="color: Olive">&gt;</span><span style="color: Gray">居中的區塊</span><span style="color: Olive">&lt;/</span><span style="color: Green">div</span><span style="color: Olive">&gt;</span></li>
</ol>
</div>
<h3>Q.為什麼IE對於margin的算法有些不同？</h3>
<p>A.當我們針對div設定了浮動(float)屬性之後，IE瀏覽器就會將margin加倍計算。例如我們設定margin-left:5px;，IE會算成10px。解決的方法是在該浮動區塊加上「<strong>display:inline</strong>」即可解決這個問題。</p>
<h3>Q.為什麼設定超連結的visited會失效？</h3>
<p>A.超連結的樣式有一定的順序，如果你同時要設定visited(訪問過的連結)，或是active(作用中的連結)，必須要按照這個順序設定：<strong>a:link→a:visited→a:hover→a:active</strong>。我們不用死記順序，可以這麼記：<strong>l</strong>o<strong>v</strong>e、<strong>h</strong>a<strong>t</strong>e</p>
<h3>Q.如何在圖片上方放置flash？</h3>
<p>A.有時候我們會看到有人的圖片上有flash的光圈特效，如果你要使用該特效，請將圖片設定為背景圖，然後在上方插入flash，記得要將flash設置為透明屬性：</p>
<div class="hl-surround">
<ol class="hl-main ln-show">
<li class="hl-firstline"><span style="color: Olive">&lt;</span><span style="color: Green">param</span><span style="color: Gray"> </span><span style="color: #00008b">name</span><span style="color: Gray">=</span><span style="color: #8b0000">&quot;</span><span style="color: Red">wmode</span><span style="color: #8b0000">&quot;</span><span style="color: Gray"> </span><span style="color: #00008b">value</span><span style="color: Gray">=</span><span style="color: #8b0000">&quot;</span><span style="color: Red">transparent</span><span style="color: #8b0000">&quot;</span><span style="color: Gray"> </span><span style="color: Olive">/&gt;</span></li>
</ol>
</div>
<h3>Q.在火狐瀏覽器設定最小高度</h3>
<p>A.一般對區塊設定高度(height)後，在火狐瀏覽器中如果輸入超過高度的文字，區塊不會被撐開。如果我們希望可以設定最小高度，同時又希望文字過多可以撐開區塊的話，可以將你的區塊改寫為：</p>
<div class="hl-surround">
<ol class="hl-main ln-show">
<li class="hl-firstline"><span style="color: Blue">div</span><span style="color: Gray"> </span><span style="color: Olive">{</span></li>
<li><span style="color: Green">height:</span><span style="color: Red">auto</span><span style="color: Gray">!important</span><span style="color: Gray">;</span></li>
<li><span style="color: Green">height:</span><span style="color: Maroon">100</span><span style="color: Red">px</span><span style="color: Gray">;</span></li>
<li><span style="color: Green">min-height:</span><span style="color: Maroon">100</span><span style="color: Red">px</span><span style="color: Gray">;</span></li>
<li><span style="color: Olive">}</span></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2009/10/15/%e5%b8%b8%e8%a6%8b%e7%9a%84cssdiv%e5%95%8f%e9%a1%8c%e6%95%b4%e7%90%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick fix for WordPress plugin My Category Order</title>
		<link>http://blog.avantbiz.com/2009/07/20/a-quick-fix-for-wordpress-plugin-my-category-order/</link>
		<comments>http://blog.avantbiz.com/2009/07/20/a-quick-fix-for-wordpress-plugin-my-category-order/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 02:28:10 +0000</pubDate>
		<dc:creator>klyuen</dc:creator>
				<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/?p=116</guid>
		<description><![CDATA[There is a small problem after upgrade My Category Order WordPress plugin (http://geekyweekly.com/mycategoryorder) to latest version for WordPress 2.8 or 2.8.x. The category list will be showing &#8220;No category&#8221; after the upgrade.  To fix the issue, you have to go to page Posts &#62; My Category Order in backend, then change the file permission of wp-includes/taxonomy.php [...]]]></description>
			<content:encoded><![CDATA[<p>There is a small problem after upgrade My Category Order WordPress plugin (<a href="http://geekyweekly.com/mycategoryorder" rel="nofollow" >http://geekyweekly.com/mycategoryorder</a>) to latest version for WordPress 2.8 or 2.8.x. The category list will be showing &#8220;No category&#8221; after the upgrade.  To fix the issue, you have to go to page Posts &gt; My Category Order in backend, then change the file permission of wp-includes/taxonomy.php to writable, say &#8220;666&#8243; or &#8220;766&#8243; or &#8220;777&#8243; (as instructed in admin page).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2009/07/20/a-quick-fix-for-wordpress-plugin-my-category-order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Photoshop CS4</title>
		<link>http://blog.avantbiz.com/2008/11/13/adobe-photoshop/</link>
		<comments>http://blog.avantbiz.com/2008/11/13/adobe-photoshop/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 03:59:41 +0000</pubDate>
		<dc:creator>klyuen</dc:creator>
				<category><![CDATA[Photography 攝影]]></category>
		<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/?p=96</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.avantbiz.com/wp-content/uploads/2008/11/adobephotoshop.jpg" target="_blank"><img class="alignnone size-medium wp-image-95" title="Adobe Photoshop" src="http://blog.avantbiz.com/wp-content/uploads/2008/11/adobephotoshop-300x187.jpg" alt="" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2008/11/13/adobe-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Fix IE 7 Flash bug</title>
		<link>http://blog.avantbiz.com/2007/01/25/how-to-fix-ie-7-flash-bug/</link>
		<comments>http://blog.avantbiz.com/2007/01/25/how-to-fix-ie-7-flash-bug/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 15:23:11 +0000</pubDate>
		<dc:creator>eddie</dc:creator>
				<category><![CDATA[Computer 電腦]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2007/01/25/how-to-fix-ie-7-flash-bug/</guid>
		<description><![CDATA[Adobe’s Developer Center has tackled this issue: http://www.adobe.com/devnet/activecontent/ http://blog.deconcept.com/flashobject/]]></description>
			<content:encoded><![CDATA[<p>Adobe’s Developer Center has tackled this issue:<br />
<a href="http://www.adobe.com/devnet/activecontent/" rel="nofollow">http://www.adobe.com/devnet/activecontent/</a></p>
<p><a href="http://blog.deconcept.com/flashobject/" rel="nofollow">http://blog.deconcept.com/flashobject/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2007/01/25/how-to-fix-ie-7-flash-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2006 Hong Kong Winterfest</title>
		<link>http://blog.avantbiz.com/2006/11/21/2006-hong-kong-winterfest/</link>
		<comments>http://blog.avantbiz.com/2006/11/21/2006-hong-kong-winterfest/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 16:00:55 +0000</pubDate>
		<dc:creator>klyuen</dc:creator>
				<category><![CDATA[AvantBiz]]></category>
		<category><![CDATA[Computer 電腦]]></category>
		<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/11/21/2006-hong-kong-winterfest/</guid>
		<description><![CDATA[連續幾年在中環皇后像廣場舉行的的香港繽紛冬日節，在今個月24日就會開始，我們將會負責其中一間小屋「傳情天地」。今日終於完成第一次demo，如無意外下星期皇后像廣場會開始動工豎起巨型聖誕樹和撘建小屋，星期六我們的小屋會準備好開始現場測試，23日傳媒試玩，24日正式駐場運作，歷時39日。 Quoted from discoverhongkong.com: 「聖誕歡樂小鎮」內有一座巨型電子屏幕，可以把您的佳節祝願、真情告白，即場傳達給摯愛親朋。您也可於 11 月 24 日起登入此網站並輸入有關訊息，翌日該訊息便會在屏幕上顯現。]]></description>
			<content:encoded><![CDATA[<p>連續幾年在中環皇后像廣場舉行的的香港繽紛冬日節，在今個月24日就會開始，我們將會負責其中一間小屋「傳情天地」。今日終於完成第一次demo，如無意外下星期皇后像廣場會開始動工豎起巨型聖誕樹和撘建小屋，星期六我們的小屋會準備好開始現場測試，23日傳媒試玩，24日正式駐場運作，歷時39日。</p>
<p><span class="festival_text">Quoted from discoverhongkong.com:<br />
</span><em><span class="festival_text">「<strong>聖誕歡樂小鎮</strong>」內有一座巨型電子屏幕，可以把您的佳節祝願、真情告白，即場傳達給摯愛親朋。您也可於 11 月 24 日起登入此網站並輸入有關訊息，翌日該訊息便會在屏幕上顯現。</span> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/11/21/2006-hong-kong-winterfest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google第三季純利再升一倍</title>
		<link>http://blog.avantbiz.com/2006/10/23/google-profit/</link>
		<comments>http://blog.avantbiz.com/2006/10/23/google-profit/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 16:01:47 +0000</pubDate>
		<dc:creator>klyuen</dc:creator>
				<category><![CDATA[Finance 財經]]></category>
		<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/10/23/google-profit/</guid>
		<description><![CDATA[其實Google真係有錢賺: 互聯網搜尋器Google(谷歌)第三季度的純利再上升一倍，收入則升7成。  谷歌公布，在過去的三個月，利潤較去年同期所賺的3.81億美元，共上升92%，達到淨收益共7.33億美元。 由於廣告收益也不斷增加，谷歌目前的收入巳較去年總收益上升70%，達到27億美元。 分析員指出，谷歌賺取利潤的能力，巳大大超越其它的搜索器，如雅虎(Yahoo)、微軟 MSN和Ask。 數據顯示在同類型的美國市場中，谷歌的市場佔有率達45%， 雅虎是28%，而MSN佔12%。]]></description>
			<content:encoded><![CDATA[<div>其實Google真係有錢賺:</div>
<div>互聯網搜尋器Google(谷歌)第三季度的純利再上升一倍，收入則升7成。 </p>
<p>谷歌公布，在過去的三個月，利潤較去年同期所賺的3.81億美元，共上升92%，達到淨收益共7.33億美元。</p>
<p>由於廣告收益也不斷增加，谷歌目前的收入巳較去年總收益上升70%，達到27億美元。</p>
<p>分析員指出，谷歌賺取利潤的能力，巳大大超越其它的搜索器，如雅虎(Yahoo)、微軟 MSN和Ask。</p>
<p>數據顯示在同類型的美國市場中，谷歌的市場佔有率達45%， 雅虎是28%，而MSN佔12%。</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/10/23/google-profit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网站设计者必备的20个FireFox扩展</title>
		<link>http://blog.avantbiz.com/2006/10/16/firefox-web-browser-expansion/</link>
		<comments>http://blog.avantbiz.com/2006/10/16/firefox-web-browser-expansion/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 07:10:33 +0000</pubDate>
		<dc:creator>eddie</dc:creator>
				<category><![CDATA[Computer 電腦]]></category>
		<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/10/16/%e7%bd%91%e7%ab%99%e8%ae%be%e8%ae%a1%e8%80%85%e5%bf%85%e5%a4%87%e7%9a%8420%e4%b8%aafirefox%e6%89%a9%e5%b1%95/</guid>
		<description><![CDATA[http://www.firefox.hk/956.html]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.firefox.hk/956.html" rel="nofollow" >http://www.firefox.hk/956.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/10/16/firefox-web-browser-expansion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use .htaccess to restrict access to web pages</title>
		<link>http://blog.avantbiz.com/2006/10/16/htaccess-htpasswd-restrict-web-access/</link>
		<comments>http://blog.avantbiz.com/2006/10/16/htaccess-htpasswd-restrict-web-access/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 06:27:29 +0000</pubDate>
		<dc:creator>klyuen</dc:creator>
				<category><![CDATA[Computer 電腦]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/10/16/htaccess-htpasswd-restrict-web-access/</guid>
		<description><![CDATA[This document demonstrates the use .htaccess to restrict access to web documents by user and password.   The Restricted Access Document The document &#8220;Restricted Information&#8221; is only available to user john with password orange and user sheri with password apple. The first time you click on &#8220;Restricted Information&#8221;, your web browser should prompt you for [...]]]></description>
			<content:encoded><![CDATA[<p>This document demonstrates the use .htaccess to restrict access to web documents by user and password.</p>
<p><span id="more-57"></span></p>
<p> </p>
<h2>The Restricted Access Document</h2>
<p>The document &#8220;<a href="http://blog.avantbiz.com/~jdoe/info/htaccess/example/restricted.html">Restricted Information</a>&#8221; is only available to user <strong>john</strong> with password <strong>orange</strong> and user <strong>sheri</strong> with password <strong>apple</strong>. The first time you click on &#8220;Restricted Information&#8221;, your web browser should prompt you for a user name and password. If it does not you may be using a web browser which is not HTTP authentication capable. </p>
<hr />
<h2>Ingredients</h2>
<p><strong>NOTE:</strong> Please make sure you are setting this up in the directory that you want passwd protected. The .htpasswd file will end up in the wrong directory otherwise. For more infomation on how to use Unix, please check out our <a href="http://blog.avantbiz.com/unix.tutorial/">Unix Tutorial</a>.</p>
<ul>
<li>The <a href="http://blog.avantbiz.com/~jdoe/info/htaccess/example/restricted.html">web document</a> to be protected.Actually, access is restricted by directory so all files in the same directory will be protected. </li>
<li>The file <a href="http://blog.avantbiz.com/htaccess.txt">.htaccess</a>.This file should be in the directory which contains the documents to restrict access to. The contents of this file specify the name of the password file.For example if you were user jdoe with web documents in the local directory &#8220;/home/jdoe/public_html/goodstuff&#8221; that you wanted to restrict access to, your .htaccess might look like:
<p><code>AuthUserFile /home/jdoe/public_html/goodstuff/.htpasswd<br />
AuthName jdoe_goodstuff<br />
AuthType Basic</code><code>require valid-user<br />
</code>Note that .htaccess will not work if there are extra spaces after AuthUserFile.</p>
<p> </li>
<li>The file <a href="http://blog.avantbiz.com/htpasswd.txt">.htpasswd</a>.This file contains the passwords of the users.To create the .htpasswd file log in to this server using SSH, change directory to the directory you want to restrict access to, and type:
<p><code>htpasswd -c .htpasswd someuser</code></p>
<p>for the first user (where someuser is the username). You will then be prompted twice for the user&#8217;s password. The -c option causes the .htpasswd file to be created. For each additional user type:</p>
<p><code>htpasswd .htpasswd someuser</code></p>
<p> </li>
</ul>
<p><strong>NOTE</strong>: There is <strong>no</strong> correspondence between the usernames and passwords used for accounts on this server and usernames and passwords in any specific .htpasswd file. A user doesn&#8217;t need to have an account on this system in order to be validated for access to files protected by HTTP-based authentication.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/10/16/htaccess-htpasswd-restrict-web-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>報載Google洽購YouTube</title>
		<link>http://blog.avantbiz.com/2006/10/08/google-youtube/</link>
		<comments>http://blog.avantbiz.com/2006/10/08/google-youtube/#comments</comments>
		<pubDate>Sun, 08 Oct 2006 12:12:44 +0000</pubDate>
		<dc:creator>klyuen</dc:creator>
				<category><![CDATA[Computer 電腦]]></category>
		<category><![CDATA[News 新聞]]></category>
		<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/10/08/google-youtube/</guid>
		<description><![CDATA[《華爾街日報》引述消息人士報道,全球最大搜尋網站Google正洽商收購影像搜尋網站YouTube,作價約16億美元. 報道指出 , 雙方的討論仍然處於敏感階段 , 隨時都可能終止. 美聯社引述 Google發言人表示, 不會評論巿場傳言及揣測. 分析員普遍認為, 如果交易最終落實, 對兩家公司都有好處 . Google目前坐擁100億美元現金, 如果成功收購YouTube, Google在影像搜尋巿場就會一躍而成巿場領導; 另一方面, 隨著YouTube的流行程度增加 , Google亦能確保 YouTube的基建設施能應付巿場需求 . Nielsen/NetRatings的資料顯示, 在七月份, YouTube網站流灠人次為3050萬 , 而Google Video只有930萬人次, Yahoo Video就有530萬人次. 此外 , YouTube用戶每日觀看超過 1億段影像短片. 今年初, 巿場有傳言指YouTube會成為主要媒體公司的收購目標, 行政總裁赫爾利當時表示, 公司不會放售, 日後更有可能會招股上巿  ]]></description>
			<content:encoded><![CDATA[<p>《華爾街日報》引述消息人士報道,全球最大搜尋網站Google正洽商收購影像搜尋網站YouTube,<strong>作價約16億美元</strong>.</p>
<p>報道指出 , 雙方的討論仍然處於敏感階段 , 隨時都可能終止.</p>
<p>美聯社引述 Google發言人表示, 不會評論巿場傳言及揣測.</p>
<p>分析員普遍認為, 如果交易最終落實, 對兩家公司都有好處 . Google目前坐擁100億美元現金, 如果成功收購YouTube, Google在影像搜尋巿場就會一躍而成巿場領導; 另一方面, 隨著YouTube的流行程度增加 , Google亦能確保 YouTube的基建設施能應付巿場需求 .</p>
<p>Nielsen/NetRatings的資料顯示, 在七月份, YouTube網站流灠人次為3050萬 , 而Google Video只有930萬人次, Yahoo Video就有530萬人次.</p>
<p>此外 , YouTube用戶每日觀看超過 1億段影像短片.</p>
<p>今年初, 巿場有傳言指YouTube會成為主要媒體公司的收購目標, 行政總裁赫爾利當時表示, 公司不會放售, 日後更有可能會招股上巿<br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/10/08/google-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>解決Flash在FireFox透明的設定</title>
		<link>http://blog.avantbiz.com/2006/09/28/flash-firebox-wmode-transparent/</link>
		<comments>http://blog.avantbiz.com/2006/09/28/flash-firebox-wmode-transparent/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 02:30:10 +0000</pubDate>
		<dc:creator>eddie</dc:creator>
				<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/09/28/%e8%a7%a3%e6%b1%baflash%e5%9c%a8firefox%e9%80%8f%e6%98%8e%e7%9a%84%e8%a8%ad%e5%ae%9a/</guid>
		<description><![CDATA[一般都知道在IE下的設定只要在HTML的Flash code中加上 PARAM NAME=&#8221;wmode&#8221; VALUE=&#8221;transparent&#8221;就行啦~ (或者Flash 的Publish也行) 但是!!慘的是&#8230; FireFox竟然不支援這種屬性，於是剛剛查了FireFox的官網，查到下列解決的辦法 在embed中也加上wmode=&#8221;transparent&#8221; ex: embed src=&#8221;images/xxx.swf&#8221; mce_src=&#8221;images/xxx.swf&#8221; wmode=&#8221;transparent&#8221; quality=&#8221;high&#8221; &#8230;&#8230;..    ]]></description>
			<content:encoded><![CDATA[<p>一般都知道在IE下的設定只要在HTML的Flash code中加上 PARAM NAME=&#8221;wmode&#8221; VALUE=&#8221;transparent&#8221;就行啦~<br />
(或者Flash 的Publish也行)</p>
<p>但是!!慘的是&#8230; FireFox竟然不支援這種屬性，於是剛剛查了FireFox的官網，查到下列解決的辦法<br />
在embed中也加上wmode=&#8221;transparent&#8221;<br />
ex: embed src=&#8221;images/xxx.swf&#8221; mce_src=&#8221;images/xxx.swf&#8221; wmode=&#8221;transparent&#8221; quality=&#8221;high&#8221; &#8230;&#8230;..<br />
 </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/09/28/flash-firebox-wmode-transparent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Professional 9 Released!!</title>
		<link>http://blog.avantbiz.com/2006/09/27/flash-professional-9-released/</link>
		<comments>http://blog.avantbiz.com/2006/09/27/flash-professional-9-released/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 10:55:08 +0000</pubDate>
		<dc:creator>eddie</dc:creator>
				<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/09/27/flash-professional-9-released/</guid>
		<description><![CDATA[Flash Professional 9 Released!! Adobe has released a preview version of Flash 9 with Actionscript 3 support. Go there right now and download it!]]></description>
			<content:encoded><![CDATA[<h3><a rel="bookmark">Flash Professional 9 Released!! </a></h3>
<div>Adobe has released a preview version of Flash 9 with Actionscript 3 support. Go there right now and <a href="http://labs.adobe.com/technologies/flash9as3preview/" rel="nofollow" >download it</a>!</div>
<div>
<img alt="flash9.gif" src="http://blog.avantbiz.com/wp-content/uploads/2006/09/flash9.gif" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/09/27/flash-professional-9-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Webalizer Quick Help</title>
		<link>http://blog.avantbiz.com/2006/09/08/webalizer-quick-help/</link>
		<comments>http://blog.avantbiz.com/2006/09/08/webalizer-quick-help/#comments</comments>
		<pubDate>Fri, 08 Sep 2006 02:48:40 +0000</pubDate>
		<dc:creator>klyuen</dc:creator>
				<category><![CDATA[Web 網頁]]></category>

		<guid isPermaLink="false">http://blog.avantbiz.com/2006/09/08/webalizer-quick-help/</guid>
		<description><![CDATA[Quoted from official website of Webalizer: explanations about common terms used in Webalizer. Main Headings Hits represent the total number of requests made to the server during the given time period (month, day, hour etc..). Files represent the total number of hits (requests) that actually resulted in something being sent back to the user. Not all [...]]]></description>
			<content:encoded><![CDATA[<p>Quoted from official website of Webalizer: explanations about common terms used in Webalizer.</p>
<p><span id="more-30"></span></p>
<p><strong>Main Headings</strong></p>
<p><strong>Hits</strong> represent the total number of requests made to the server during the given time period (month, day, hour etc..).</p>
<p><strong>Files</strong> represent the total number of hits (requests) that actually resulted in something being sent back to the user. Not all hits will send data, such as 404-Not Found requests and requests for pages that are already in the browsers cache.</p>
<p><strong>Tip:</strong> By looking at the difference between hits and files, you can get a rough indication of repeat visitors, as the greater the difference between the two, the more people are requesting pages they already have cached (have viewed already).</p>
<p><strong>Sites</strong> is the number of unique IP addresses/hostnames that made requests to the server. Care should be taken when using this metric for anything other than that. Many users can appear to come from a single site, and they can also appear to come from many ip addresses so it should be used simply as a rough guage as to the number of visitors to your server.</p>
<p><strong>Visits</strong> occur when some remote site makes a request for a <em>page</em> on your server for the first time. As long as the same site keeps making requests within a given timeout period, they will all be considered part of the same <strong>Visit</strong>. If the site makes a request to your server, and the length of time since the last request is greater than the specified timeout period (<em>default is 30 minutes</em>), a new <strong>Visit</strong> is started and counted, and the sequence repeats. Since only <em>pages</em> will trigger a visit, remotes sites that link to graphic and other non- page URLs will not be counted in the visit totals, reducing the number of <em>false</em> visits.</p>
<p><strong>Pages</strong> are those URLs that would be considered the actual page being requested, and not all of the individual items that make it up (such as graphics and audio clips). Some people call this metric <em>page views</em> or <em>page impressions</em>, and defaults to any URL that has an extension of <strong>.htm</strong>, <strong>.html</strong> or <strong>.cgi</strong>.</p>
<p>A <strong>KByte</strong> (KB) is 1024 bytes (1 Kilobyte). Used to show the amount of data that was transfered between the server and the remote machine, based on the data found in the server log.</p>
<hr />A <strong>Site</strong> is a remote machine that makes requests to your server, and is based on the remote machines IP Address/Hostname.<strong>URL</strong> &#8211; Uniform Resource Locator. All requests made to a web server need to request <em>something</em>. A URL is that <em>something</em>, and represents an object somewhere on your server, that is accessable to the remote user, or results in an error (ie: 404 &#8211; Not found). URLs can be of any type (HTML, Audio, Graphics, etc&#8230;).   </p>
<p><strong>Referrers</strong> are those URLs that lead a user to your site or caused the browser to request something from your server. The vast majority of requests are made from your own URLs, since most HTML pages contain links to other objects such as graphics files. If one of your HTML pages contains links to 10 graphic images, then each request for the HTML page will produce 10 more hits with the referrer specified as the URL of your own HTML page.</p>
<p><strong>Search Strings</strong> are obtained from examining the referrer string and looking for known patterns from various search engines. The search engines and the patterns to look for can be specified by the user within a configuration file. The default will catch most of the major ones.</p>
<p><strong>Note:</strong> Only available if that information is contained in the server logs.</p>
<p><strong>User Agents</strong> are a fancy name for <em>browsers</em>. Netscape, Opera, Konqueror, etc.. are all <strong>User Agents</strong>, and each reports itself in a unique way to your server. Keep in mind however, that many <em>browsers</em> allow the user to change it&#8217;s reported name, so you might see some obvious fake names in the listing.</p>
<p><strong>Note:</strong> Only available if that information is contained in the server logs.</p>
<p><strong>Entry/Exit</strong> pages are those pages that were the first requested in a visit (<strong>Entry</strong>), and the last requested (<strong>Exit</strong>). These pages are calculated using the <strong>Visits</strong> logic above. When a visit is first triggered, the requested page is counted as an <strong>Entry</strong> page, and whatever the last requested URL was, is counted as an <strong>Exit</strong> page.</p>
<p><strong>Countries</strong> are determined based on the <em>top level domain</em> of the requesting site. This is somewhat questionable however, as there is no longer strong enforcement of domains as there was in the past. A .COM domain may reside in the US, or somewhere else. An .IL domain may actually be in Isreal, however it may also be located in the US or elsewhere. The most common domains seen are .COM (US Commercial), .NET (Network), .ORG (Non-profit Organization) and .EDU (Educational). A large percentage may also be shown as <em>Unresolved/Unknown</em>, as a fairly large percentage of dialup and other customer access points do not resolve to a name and are left as an IP address.</p>
<p><strong>Response Codes</strong> are defined as part of the HTTP/1.1 protocol (<a href="http://andrew2.andrew.cmu.edu/rfc/rfc2068.html" rel="nofollow" >RFC 2068</a>; See Chapter 10). These codes are generated by the web server and indicate the completion status of each request made to it.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.avantbiz.com/2006/09/08/webalizer-quick-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

