歡迎光臨, 訪客. 請先 登入註冊一個帳號.
十一月 01, 2024, 06:25:34 上午
19595 文章 在 3865 主題 由 4579 會員
最新註冊會員: aa123aa1
  列出文章
頁: 1 [2] 3
16  測試 / LifeType 1.0 測試 / 更新至1469後的一些問題 於: 三月 14, 2005, 08:42:33 下午
沒有:D
17  測試 / LifeType 1.0 測試 / 更新 3/14 Plog 測試報告 於: 三月 14, 2005, 07:06:49 下午
更新無問題~
模板懶的發怖改好的,自己下指令改吧,1 秒就 OK 了
find ./templates/* -name "*.template" | \xargs perl -pi -e "s,\|capitalize, ,"

原本預覽問題還在~
玩 RF 去~
18  測試 / LifeType 1.0 測試 / 1.0 測試報告 於: 三月 14, 2005, 07:02:12 下午
php4-bcmath-4.3.10_1 The bcmath shared extension for php
php4-bz2-4.3.10_1   The bz2 shared extension for php
php4-ctype-4.3.10_1 The ctype shared extension for php
php4-curl-4.3.10_1  The curl shared extension for php
php4-extensions-1.0 A "meta-port" to install PHP extensions
php4-ftp-4.3.10_2   The ftp shared extension for php
php4-gd-4.3.10_1    The gd shared extension for php
php4-iconv-4.3.10_1 The iconv shared extension for php
php4-mbstring-4.3.10_1 The mbstring shared extension for php
php4-mysql-4.3.10_1 The mysql shared extension for php
php4-openssl-4.3.10_1 The openssl shared extension for php
php4-overload-4.3.10_1 The overload shared extension for php
php4-pcre-4.3.10_1  The pcre shared extension for php
php4-posix-4.3.10_1 The posix shared extension for php
php4-session-4.3.10_1 The session shared extension for php
php4-tokenizer-4.3.10_1 The tokenizer shared extension for php
php4-xml-4.3.10_1   The xml shared extension for php
php4-zlib-4.3.10_1  The zlib shared extension for php
19  測試 / LifeType 1.0 測試 / 1.0版本后台发表文章时,文章预览有问题 於: 三月 14, 2005, 06:05:58 下午
可是我查過~
他是透過 post ~
並不是使用  get  所以不會有 1024 位元組問題

js/htmlarea/plugins/CharacterMap/popups/select_character.html:<form method="get" style="margin:2px; padding:2px" onSubmit="Set(document.getElementById('showCharacter').value); return false;">
js/htmlarea/popups/insert_image.html:<form action="" method="get">
js/htmlarea/popups/insert_table.html:<form action="" method="get">
js/htmlarea/popups/select_color.html:<form method="get" style="margin:0px; padding:0px" onSubmit="Set(document.getElementById('ColorHex').value); return false;">

這是目前有用 get 幾個地方...
其他都是使用 post 取值~
我還在看 code ....先去吃飯:D
20  支援 / 安裝與設定精華區 / subdomains_base_url 中文設定教學 於: 三月 14, 2005, 05:22:47 下午
引用自: winman
我最近也是在試這個功能,目前還沒成功,謝謝你的經驗哦。 戴太陽眼鏡

另外想問問,我把plog放到xxx.com/plog 目錄,然後在 xxx.com 下放置index.html
文件做跳轉,不知道是否會影響plog  subdomain功能的正常運作。

PS:因我不想用 xxx.blog.xxx.com 這麼長的網址,希望利用xxx.com 下的index.html
做跳轉,也就是訪問:xxx.xxx.com 時自動跳轉到 xxx.xxx.com/plog .



基本上是可以的~
次網域原理~
http://savinna.free3.5000.com.tw    當HTTP GET 到 savinna 自動找到 ID
所以變成  http://savinna.free3.5000.com.tw/index.php?blogId=4
所以基本上都是一樣的道理,換湯不換藥
透過 DNS  *.free3  + apache ServerAlias *.free3.5000.com.tw ,不管 ID 多少...
都會跑到 Plog home 然後去 Plog 透過 http GET  前面  savinna 與資料庫核對 ID
然後轉到 http://savinna.free3.5000.com.tw/index.php?blogId=4
21  測試 / LifeType 1.0 測試 / 編輯文章預覽時,錯誤訊息解決辦法!! 於: 三月 14, 2005, 02:40:57 下午
一般純文字不會有問題,加入語法就會有問題
因為 session 前不能有輸出的動作
到 ==>  class/view/view.class.php  尋找下面語法
                function sendContentType()
                {
                        // build up the header and send it
                        $header = "Content-Type: ".$this->_contentType.";charset
=".$this->_charset;
                        //header( $header );   // 這裡把他註解起來就 OK 了

                        return true;
                }


另外一個 Invalid argument supplied for foreach()  錯誤解決辦法如下:
到 ===> class/action/admin/adminpreviewpostaction.class.php
尋找下面語法
        function _loadArticleCategories( $categoryIds )
        {
                $articleCategories = new ArticleCategories();
                $categories = Array();
                //foreach( $categoryIds on $categoryId ) // 這邊把他斷行下去  
                // 這裏不需要  foreach 處理 , 所以  註解起來
                {
                        $category = $articleCategories->getCategory( $categoryIds, $this->_blogInfo->getId());  
//   $categoryIds  原本是 $categoryId  要加 "s"  喔
                        if( $category )
                                array_push( $categories, $category );
                }
22  支援 / 安裝與設定精華區 / subdomains_base_url 中文設定教學 於: 三月 14, 2005, 02:07:37 下午
步驟1.
如果 DNS 主機是自己的,請修改  
以網址  5000.com.tw  舉例
@               IN      A       61.xx.xx.xx
www           IN      A       61.xx.xx.xx
free3          IN      A       61.xx.xx.xx
*.free3       IN      A       61.xx.xx.xx
因為我用次網域 free3 來當plog 所以我這樣設定
如果是使用外面虛擬主機,請主機商幫你加這一筆記路( 如果對方不肯,換家吧 )

步驟2.
如果主機是自己的話,請修改 httpd.conf
NameVirtualHost 61.xx.xx.xx
DocumentRoot /www/PLOG/            <===  Plog 路徑
ServerName free3.5000.com.tw       <===  原本網址
ServerAlias *.free3.5000.com.tw      <===  給客戶用的網址
如果是使用外面虛擬主機,請主機商幫你在 VirtualHost 裡面加個
ServerAlias *.free3.5000.com.tw      


步驟3.
快完成了,興奮吧!!!
使用管理帳號登入 Plog
站台設定===> 全域設定 ===>
subdomains_enabled
啟用或停用次網域設定。
是 打勾

subdomains_base_url
當次網域設定啟用時,這個網址將用來替代系統網址。使用 {blogname}來取得網誌名稱及{username}取得網誌使用者名稱,用來產生連結到網誌的網址。

輸入==>  http://{username}.free3.5000.com.tw

按下最後興奮的一刻吧....更新~
完成嚕...

PS. 以上使用 free3.5000.com.tw 舉例,請自行修改為自己的網址
23  測試 / LifeType 1.0 測試 / 匯入所有模板時候,有一個模板有問題 ==> ne 於: 三月 14, 2005, 01:41:05 下午
謝謝~
如果有心的 PATCH 或是更新,可以 PM 告訴我,或是通知偶~
讓偶可以馬上更新,找找 BUG~
24  測試 / LifeType 1.0 測試 / 感覺首頁有點亂亂的,之前 0.32 好像還滿清楚 於: 三月 14, 2005, 01:24:44 下午
拿掉了...感覺好像有點整齊明顯 @.@  或許是錯覺~
右下角那個....
有數字(1)  沒有文章名稱....是不是代表那邊文章內容是空白的??
因為我把預設的文章 text 用成空的~   嘻嘻
我想應該是這樣吧...
25  測試 / LifeType 1.0 測試 / 匯入所有模板時候,有一個模板有問題 ==> ne 於: 三月 14, 2005, 12:31:27 下午
那這個字串,希望在搜尋模板時候,可以做略過判斷,這樣就不會有錯誤訊息了
[ newtemplates ]
26  測試 / LifeType 1.0 測試 / plog1.0_Beta版 資料夾上傳圖示無法顯示 於: 三月 14, 2005, 12:29:12 下午
你跑這頁面時候~
去 tail -f /var/log/httpd-access.log  httpd-error.log
去看這兩個檔案變化...
看看有沒有什麼錯誤訊息~
27  測試 / LifeType 1.0 測試 / 0.32 升級 1.0 Beta 看一下喔 於: 三月 14, 2005, 11:37:37 上午
升級時候先把舊的  class 整個砍掉,記得備份 config
然後再覆蓋新的檔案,這樣才不會有問題喔~
28  測試 / LifeType 1.0 測試 / 1.0 測試報告 於: 三月 14, 2005, 11:18:14 上午
顯示正常~
沒看到錯誤訊息~
我也是使用 Freebsd 4.x  5.x  都沒問題
29  測試 / LifeType 1.0 測試 / 每個使用者獨立網址: subdomains_base_url 於: 三月 14, 2005, 11:06:22 上午
subdomains_base_url  經測試正常~
http://savinna.free3.5000.com.tw/
http://free3.5000.com.tw/index.php?blogId=4

設定還滿簡單的~
30  測試 / LifeType 1.0 測試 / 匯入所有模板時候,有一個模板有問題 ==> ne 於: 三月 14, 2005, 10:42:01 上午
SVN 是哪裡ㄋ?
我是從 http://www.lifetype.net/beta/ 這地方抓的
頁: 1 [2] 3