<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[A.PAO designSTUDIO BLOG]]></title> 
<link>https://blog.apao.idv.tw/index.php</link> 
<description><![CDATA[A.PAO designSTUDIO 阿保工作室]]></description> 
<language>zh-tw</language> 
<copyright><![CDATA[A.PAO designSTUDIO BLOG]]></copyright>
<item>
<link>https://blog.apao.idv.tw/post/1385/</link>
<title><![CDATA[Bo-Blog 金流插件收據列印方式與CSS調整]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Mon, 21 Dec 2020 00:08:05 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1385/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 130%;">我們製作的Bo-Blog 金流插件也有個列印收據的功能，為符合客戶需求，客戶因為有許多收據單，希望能夠不列印收據表格，把需要的文字資料列印出來。針對這個選項，介紹一下我們在金流插件中的選項與列印功能。</span><br/><br/>備註：因為每一家印表機功能與列印界線的問題，原始設定為另外一台雷射印表機，後來客戶搬家使用另外一台印表機，使用者設定被安裝驅動程式後改變，所以需要在使用者端調整。<br/><br/>▼後台中的列印<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=4066" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=4066" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>▼Chrome中的列印選項，不想印背景卻出現背景<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=4070" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=4070" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>▼Firefox中可能的狀況，出現不需要的網址、頁數等資訊<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=4074" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=4074" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>▼Chrome中的列印選項（更多選項->背景圖形->取消選項）<br/>就可以不列印背景圖片<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=4071" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=4071" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>▼Firefox中的列印選項（瀏覽器 列印->頁面設定->邊界與頁首/頁尾->空白）<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=4075" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=4075" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/><span style="font-size: 120%;">另外在程式端為了盡量減低使用者出差錯，必須盡量事前設定好讓使用者不需要再設定的CSS</span><br/>▼除了將頁面顯示設定一般使用px，這時就可以針對A4紙來做設定，也可以使用cm來做設定，前提是在body的style要事前設定好margin、padding、border<br/>orphans和widows用於指定在頁面的底部或頂部，元素中允許剩餘的最少行數，默認為2行。<br/><div class="code">@page &#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*A4直印*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; size: A4 portrait;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*列印範圍*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; margin: 0.5cm;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*頂部行數*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; orphans:4;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*頁尾行數*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; widows:2;<br/>&#125;</div><br/><div class="code">@page &#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*A4橫印*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; size: A4 Landscape;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*列印範圍*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; margin: 0.5cm;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*頂部行數*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; orphans:4;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*頁尾行數*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; widows:2;<br/>&#125;</div><br/>▼對應列印上則使用@media print<br/><div class="code">@media print &#123;<br/>body&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*不列印背景*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; background:none;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*不超頁列印*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; page-break-inside:avoid;<br/>&#125;<br/>a::after &#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp; /*顯示列印網址*/<br/>&nbsp;&nbsp;&nbsp;&nbsp; content: &quot;(&quot; attr(href) &quot;)&quot;; <br/>&#125;<br/>&#125;</div><br/><br/>▼針對客戶換印表機後做了多次修改的其中的筆記<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=4082" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=4082" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>更詳盡的參考資料：<br/>英文<br/><a href="https://www.w3.org/TR/2003/WD-css3-page-20030909/" target="_blank">https://www.w3.org</a><br/>簡中<br/><a href="http://lon.im/post/css-print.html" target="_blank">http://lon.im/</a><br/>Tags - <a href="https://blog.apao.idv.tw/tags/%25E9%2587%2591%25E6%25B5%2581/" rel="tag">金流</a> , <a href="https://blog.apao.idv.tw/tags/%25E6%258F%2592%25E4%25BB%25B6/" rel="tag">插件</a> , <a href="https://blog.apao.idv.tw/tags/%25E6%2594%25B6%25E6%2593%259A/" rel="tag">收據</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%2588%2597%25E5%258D%25B0/" rel="tag">列印</a> , <a href="https://blog.apao.idv.tw/tags/print/" rel="tag">print</a> , <a href="https://blog.apao.idv.tw/tags/css/" rel="tag">css</a> , <a href="https://blog.apao.idv.tw/tags/%25E8%25AA%25BF%25E6%2595%25B4/" rel="tag">調整</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1292/</link>
<title><![CDATA[Bo-Blog ver.2 對應 FB Pixel 廣告之 Rewrite 修正]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Mon, 27 May 2019 07:20:46 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1292/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 130%;"><span style="color: #00008B;"><strong>Synology DSM 當升級到ver.6</strong></span> 以後，此時Apache就已經升級到2.4了，對應<span style="color: #DC143C;"> <strong>Facebook Pixel 廣告</strong></span>時，就必須開啟先針對 Bo-Blog 做搜尋引擎最佳化調整，到這裡只能大體上能夠讓網頁針對Pixel 廣告無障礙，但是卻不能翻頁（測試後才發現）；所以又必須 關閉 Bo-Blog 上<span style="color: #008000;"><strong> Apache 2.0 的 MultiViews</strong></span> 功能，才能讓整體運作正常。</span><br/><br/><span style="font-size: 120%;"><strong>雜項設定>搜尋引擎最佳化：</strong></span><br/>1.將同一檔案夾中的 .htaccess 檔案放至Bo-Blog根目錄下<br/>2.確定並啟動 Apache URL Rewrite 選項。<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=3145" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=3145" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>.htaccess 檔案裡第一行加上 <span style="color: #FF6347;"><strong>Options -MultiViews</strong></span>， 關閉Apache 2.0 以上的功能。<br/>檔案：<a href="https://drive.google.com/open?id=1pVt3GKuqC_HDgIQ77RKFsxJ8Uu5hHVAd&authuser=apao@apaostudio.com&usp=drive_fs" target="_blank">.htaccess</a><br/><br/>備註：<br/>1. 感謝Synology團隊幫忙解決這個問題。<br/>2. Apache MultiViews：多國語言的支援，與語系資料 (LanguagePriority) 有關。最常見在錯誤訊息的回報內容，在同一部主機中，可以依據用戶端的語系而給予不同的語言顯示。<br/>Tags - <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/ver.2/" rel="tag">ver.2</a> , <a href="https://blog.apao.idv.tw/tags/fb/" rel="tag">fb</a> , <a href="https://blog.apao.idv.tw/tags/pixel/" rel="tag">pixel</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%25BB%25A3%25E5%2591%258A/" rel="tag">廣告</a> , <a href="https://blog.apao.idv.tw/tags/rewrite/" rel="tag">rewrite</a> , <a href="https://blog.apao.idv.tw/tags/%25E4%25BF%25AE%25E6%25AD%25A3/" rel="tag">修正</a> , <a href="https://blog.apao.idv.tw/tags/multiviews/" rel="tag">multiviews</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1270/</link>
<title><![CDATA[Bo-Blog bw版 tag 問題解決了]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Thu, 13 Sep 2018 04:31:20 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1270/</guid> 
<description>
<![CDATA[ 
	這個問題是<a href="https://bw.bo-blog.com/" target="_blank">bo-blog bw</a> 版所出現的問題。其他外程式或是CSS問題，我們都能解決。最重要的核心由bo-blog來解決，才不至於在新版本更新時會有問題。再一次謝謝你們。<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2970" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2970" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>使用模組之網站：<br/><a href="https://plant.apaostudio.com/" target="_blank">https://plant.apaostudio.com/</a><br/><br/>下載修件：<a href="https://drive.google.com/open?id=1oyTvc5BfvL1bvCiOAq0DhUMgeJqAghNG&authuser=apao@apaostudio.com&usp=drive_fs" target="_blank">article.inc.php.zip</a><br/>Tags - <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/bw/" rel="tag">bw</a> , <a href="https://blog.apao.idv.tw/tags/tag/" rel="tag">tag</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%2595%258F%25E9%25A1%258C/" rel="tag">問題</a> , <a href="https://blog.apao.idv.tw/tags/%25E8%25A7%25A3%25E6%25B1%25BA/" rel="tag">解決</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1244/</link>
<title><![CDATA[Bo-Blog bW版 menu 移動程式碼位置]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Fri, 27 Oct 2017 02:27:08 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1244/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 130%;">為了讓原本在 header 內的 Nav (Menu) 有自己的高度而不必再調整高度<br/>1. CSS 從 position 方式改為 float方式。<br/>2. 從 header -> mainArea 的下方。</span><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2865" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2865" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>▲ 電腦版樣式<br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2866" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2866" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>▲ 手機版樣式<br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2863" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2863" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>▲ 剪下＜nav＞....＜/nav＞<br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2864" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2864" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/>▲ 放至＜div id="mainArea"＞....＜/div＞<br/><br/>樣本網頁：<br/><a href="http://plant.apaostudio.com" target="_blank">http://plant.apaostudio.com</a><br/>Tags - <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/bw%25E7%2589%2588/" rel="tag">bw版</a> , <a href="https://blog.apao.idv.tw/tags/menu/" rel="tag">menu</a> , <a href="https://blog.apao.idv.tw/tags/%25E7%25A7%25BB%25E5%258B%2595/" rel="tag">移動</a> , <a href="https://blog.apao.idv.tw/tags/%25E7%25A8%258B%25E5%25BC%258F/" rel="tag">程式</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1243/</link>
<title><![CDATA[Bo-Blog 對應 SSL 設定]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Thu, 26 Oct 2017 01:03:01 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1243/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 130%;">因為工作上需求，除了將伺服器與網域名對應好之後，還必需要在Bo-Blog上頭使用SSL的交易，讓Bo-Blog模組同時導向 80/443 port設定為必要選項，以下當作筆記。</span><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2862" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2862" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a>▲初始ˋ值並未對應 http:// 需要改為 https://<br/><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2861" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2861" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a>▲進入後台-Blog設定：<br/><span style="color: #DC143C;">http: //&#123;host&#125; 改成 https: //&#123;host&#125;</span><br/>Tags - <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%25B0%258D%25E6%2587%2589/" rel="tag">對應</a> , <a href="https://blog.apao.idv.tw/tags/ssl/" rel="tag">ssl</a> , <a href="https://blog.apao.idv.tw/tags/%25E8%25A8%25AD%25E5%25AE%259A/" rel="tag">設定</a> , <a href="https://blog.apao.idv.tw/tags/https/" rel="tag">https</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1242/</link>
<title><![CDATA[Bo-Blog bW版]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Thu, 05 Oct 2017 01:06:05 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1242/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 130%;">Bo-Blog bW版（Wind 輕便版）模組，<br/><a href="http://bw.bo-blog.com/" target="_blank">http://bw.bo-blog.com/</a><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2854" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2854" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>利用一天放假的時間，研究一下Bo-Blog bW版，程式結構與舊版類似以多語言以及可更換式插件（但現在沒有很多），全新的PHP與上文寫法。其中發現跟其他RWD模組一樣，主要針對手機做最親善的介面處理，當然ˋ在CSS上與PHP程式上都需要更多的客製化，才會有用戶更佳的親善性與頁面的獨特性</span><br/><br/><br/>安裝步驟：<br/>1.下載並解壓縮至Web伺服器<br/><br/>2.開啟對應資料庫<br/><br/>3.瀏覽器上開啟對外的URL之後，就會出現安裝畫面<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2859" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2859" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>4.以上欄位都沒有沒有問題的話，就會進入另外一個畫面<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2855" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2855" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>5.PHP 要在5.3版本以上，檔案夾權限為777<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2856" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2856" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>6.S家的伺服器更要確定伺服器檔案夾權限<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2857" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2857" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>7.安裝成功時<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2858" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2858" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>8.進入Bo-Blog bW畫面（主要針對手機也可以PO文）<br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2854" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2854" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>9.改了一天的bW版本，應該在theme裡頭建立另外一個階層做的，否則更新版本時會被蓋掉<br/><a href="http://plant.apaostudio.com/" target="_blank">http://plant.apaostudio.com/</a><br/><br/>Bo-Blog （較複雜版本）模組<br/><a href="http://www.bo-blog.com" target="_blank">http://www.bo-blog.com</a><br/>Tags - <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/bw/" rel="tag">bw</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%25AE%25A2%25E8%25A3%25BD%25E5%258C%2596/" rel="tag">客製化</a> , <a href="https://blog.apao.idv.tw/tags/%25E6%25A1%2588%25E4%25BE%258B/" rel="tag">案例</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1141/</link>
<title><![CDATA[Bo-Blog Wind 版]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Fri, 05 Feb 2016 04:55:35 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1141/</guid> 
<description>
<![CDATA[ 
	<a href="https://blog.apao.idv.tw/attachment.php?fid=2251" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2251" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0" width="540"/></a><br/><br/>發布網站<br/><a href="http://bw.bo-blog.com/" target="_blank">http://bw.bo-blog.com/</a><br/><br/>快速入门<br/>安装配置<br/>需要php5.3以上运行环境<br/>目录结构<br/>www&nbsp;&nbsp;WEB部署目录（或者子目录）<br/>├─CHANGELOG&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 更新日志<br/>├─README.md&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; README文件<br/>├─admin.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 后台入口文件（不能直接访问）<br/>├─category.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;分类管理入口文件<br/>├─LICENSE.txt&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 授权说明文件<br/>├─index.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 应用入口文件<br/>├─read.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;读取<br/>├─rss.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 订阅<br/>├─send.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;发送<br/>├─siemap.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;网站地图<br/>├─tag.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 标签<br/>├─conf&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;配置目录<br/>│&nbsp;&nbsp;├─dbcon.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;数据库配置文件<br/>│&nbsp;&nbsp;├─info.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 网站参数配置文件<br/>│&nbsp;&nbsp;├─services.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;第三方扩展服务接口配置文件<br/>│&nbsp;&nbsp;└─index.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;安全配置（不允许访问）<br/>├─extension&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 扩展目录<br/>│&nbsp;&nbsp;├─hello_world&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;你好文本插件<br/>│&nbsp;&nbsp;└─google_code_prettify&nbsp;&nbsp;谷歌代码美化插件<br/>├─inc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 系统目录<br/>│&nbsp;&nbsp;│&nbsp;&nbsp;├─system.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;系统核心文件<br/>│&nbsp;&nbsp;│&nbsp;&nbsp;└─ ...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;更多类<br/>├─install&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 安装目录<br/>│&nbsp;&nbsp;├─index.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;安装入口文件<br/>│&nbsp;&nbsp;├─install_action.php&nbsp;&nbsp;安装类库<br/>│&nbsp;&nbsp;└─zh-cn.lang.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中文标签<br/>├─lang&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;语言目录<br/>│&nbsp;&nbsp;├─zh-cn.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 简体中文语言包<br/>│&nbsp;&nbsp;├─zh-tw.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 繁体中文语音包<br/>│&nbsp;&nbsp;└─en.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;英文语言包<br/>├─storage&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 存储目录<br/>├─theme&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 模板目录<br/>│&nbsp;&nbsp;├─default&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 默认模板目录<br/>│&nbsp;&nbsp;│&nbsp;&nbsp;├─fonts&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;字体文件目录<br/>│&nbsp;&nbsp;│&nbsp;&nbsp;├─info.php&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 模板信息文件<br/>│&nbsp;&nbsp;│&nbsp;&nbsp;│&nbsp;&nbsp;├─<br/>│&nbsp;&nbsp;│&nbsp;&nbsp;│&nbsp;&nbsp;├─<br/>└─update&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 升级目录<br/>制作模板<br/>首先进入模板目录theme<br/>复制默认模板目录<br/>修改info.php信息<br/>themeName模板名称<br/>themeAuthor模板作者<br/>themeUrl模板作者网站地址<br/>themeVersion模板版本号<br/>然后到后台设置模板<br/>模板运行流程<br/>首先访问<br/>Components.php文件<br/>Bw采用前后台混合工作的模式，模板都在一个目录！其他文件大家不要修改就好<br/>只要修改Page.php文件<br/>和对应的style.css文件即可<br/>summary.php文件对应分类列表页描述<br/><br/>原出處<br/><div class="bLinks"><a href="http://bbs.bo-blog.com/viewthread.php?tid=28810&extra=page%3D1">BW簡單入門手冊</a></div><br/><br/><div class="bDropbox"><a href="https://www.dropbox.com/s/fg7bko1gskfi8vj/bw-develop.zip?dl=0">bw-develop.zip</a></div><br/>Tags - <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/blog/" rel="tag">blog</a> , <a href="https://blog.apao.idv.tw/tags/wind/" rel="tag">wind</a> , <a href="https://blog.apao.idv.tw/tags/rwd/" rel="tag">rwd</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1133/</link>
<title><![CDATA[Bo-Blog 手機版元件 mobile （完成）]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Thu, 20 Aug 2015 14:30:56 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1133/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 130%;">B0-Blog 採用單一Temple的模式，要開發手機版，要從模版規則中找出規則，並能重複套用於其他模版。同時又要考慮一起並行運作手機版與電腦版，工程團隊花了許多時間去測試研究，以及開發人力，終於完成。</span><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2233" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2233" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><span style="font-size: 120%;"><strong>▼以名為 mobile 插件（plun-in）方式導入。</strong></span><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=3146" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=3146" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2234" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2234" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2235" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2235" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2236" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2236" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2237" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2237" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/><div class="bLinks">A.PAO blog <a href="http://blog.apao.idv.tw" target="_blank">http://blog.apao.idv.tw</a></div><br/>Tags - <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/%25E6%2589%258B%25E6%25A9%259F%25E7%2589%2588%25E5%2585%2583%25E4%25BB%25B6/" rel="tag">手機版元件</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%25AE%258C%25E6%2588%2590/" rel="tag">完成</a> , <a href="https://blog.apao.idv.tw/tags/mobile/" rel="tag">mobile</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1062/</link>
<title><![CDATA[驗證碼增強版 可變字型版 共三種 ver.2.1]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Wed, 08 Apr 2015 03:07:28 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1062/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 130%;"><strong>這個只針對Bo-blog的留言或是評論驗證做修正。<br/>加入方格與干擾線。</strong></span><br/><br/><span style="font-size: 130%;"><strong>修改二.YuNaFont_P.ttf 版</strong></span><br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2147" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2147" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2146" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2146" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0"/></a><br/><br/>securitycode_20150125.zip 檔案結構如下：<br/><span style="font-size: 120%;"><strong>inc/<br/>┝ securitycode.php<br/>┝ YuNaFont_P.ttf </strong></span><br/><br/>字體出處：<br/><a href="http://fatamorgana.jp/font/" target="_blank">http://fatamorgana.jp/font/</a><br/>............<br/><br/>Tags - <a href="https://blog.apao.idv.tw/tags/%25E9%25A9%2597%25E8%25AD%2589%25E7%25A2%25BC%25E5%25A2%259E%25E5%25BC%25B7/" rel="tag">驗證碼增強</a> , <a href="https://blog.apao.idv.tw/tags/bo-blog/" rel="tag">bo-blog</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%25AD%2597%25E5%259E%258B/" rel="tag">字型</a> , <a href="https://blog.apao.idv.tw/tags/%25E5%258F%25AF%25E4%25BF%25AE%25E6%2594%25B9/" rel="tag">可修改</a>
]]>
</description>
</item><item>
<link>https://blog.apao.idv.tw/post/1104/</link>
<title><![CDATA[刪除上千條以上評論]]></title> 
<author>apao &lt;apao@www.apao.idv.tw&gt;</author>
<category><![CDATA[BO-BLOG]]></category>
<pubDate>Tue, 31 Mar 2015 00:36:21 +0000</pubDate> 
<guid>https://blog.apao.idv.tw/post/1104/</guid> 
<description>
<![CDATA[ 
	有時候幫客戶保留評論或是留言，客戶以為自己異想天開妳就得完成，真的是很浪費資源，有空就要去管理，否則塞廣告或是提供對岸學習測試，一點鳥用都沒有（當然可以賺廣告費啦）<br/><br/><a href="https://blog.apao.idv.tw/attachment.php?fid=2143" target="_blank"><img src="https://blog.apao.idv.tw/attachment.php?fid=2143" class="insertimage" alt="點擊在新視窗中瀏覽此圖片" title="點擊在新視窗中瀏覽此圖片" border="0" width="540"/></a><br/>Tags - <a href="https://blog.apao.idv.tw/tags/%25E5%2588%25AA%25E9%2599%25A4%25E4%25B8%258A%25E8%2590%25AC%25E6%25A2%259D%25E8%25A9%2595%25E8%25AB%2596/" rel="tag">刪除上萬條評論</a>
]]>
</description>
</item>
</channel>
</rss>