列出文章
|
頁: 1 [2] 3
|
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
|
|
|
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 舉例,請自行修改為自己的網址
|
|
|
|
|
|