歡迎光臨, 訪客. 請先 登入註冊一個帳號.
五月 01, 2024, 04:28:40 上午
19595 文章 在 3865 主題 由 4580 會員
最新註冊會員: aa123aa1
  列出文章
頁: [1] 2
1  支援 / 安裝與設定 / Re: [已解決]預覽圖示顯示不行 >.< 感謝 Mark 兄與總版主的教導 ^^ 於: 九月 13, 2005, 04:53:46 下午
挖哈...我把自訂網址裡的預覽圖的部分,加上blogid,就可以啦 開懷大笑
2  支援 / 安裝與設定 / Re: [已解決]預覽圖示顯示不行 >.< 感謝 Mark 兄與總版主的教導 ^^ 於: 九月 11, 2005, 11:57:43 下午
ㄟ...我的預覽圖示,是時好時壞....
imagemagick或gd都有試過,目錄權限也沒問題,圖片都可以下載...

我發現error log裡有這種東西:

程式碼:
Sun Sep 11 08:06:59 2005] [error] [client 65.54.188.101] File does not exist: /home/httpd/1101
[Sun Sep 11 08:07:03 2005] [error] [client 65.54.188.101] File does not exist: /home/httpd/1104
[Sun Sep 11 08:07:10 2005] [error] [client 65.54.188.101] File does not exist: /home/httpd/1101
[Sun Sep 11 08:07:13 2005] [error] [client 65.54.188.101] File does not exist: /home/httpd/218
[Sun Sep 11 08:07:16 2005] [error] [client 65.54.188.101] File does not exist: /home/httpd/125

是因為我採用二級域名+自訂網址嗎?
我的預覽url是這樣設的:
/resource/{albumid}/{resourceid}/preview$
/resource/{albumid}/{resourceid}/preview-med$

困擾很久,能否解惑??
感恩啊~
3  支援 / 使用與操作 / Plog二级域名的BUG、 於: 八月 09, 2005, 04:39:20 下午
我也有類似的問題,如果輸入錯誤的網址,都會跑到某個非預設id的blog...
詭異啊...
4  支援 / 使用與操作 / 輸入/勾選的設定資料會不見... 於: 六月 14, 2005, 10:43:08 下午
我的秘密文章功能不見了! 大家都看得到我的秘密@@....

發現是因為所輸入的文章密碼、以及勾選的啟用密碼保護功能,並沒有存進去,而是消失不見!!!


這在之前有發生過類似狀況,就是要啟用某些外掛功能時(例如smiley),勾選/送出後,卻發現該外掛還是處於未勾選狀態....奇了.....
5  支援 / 使用與操作 / pLog幾個小問題 於: 六月 14, 2005, 10:39:58 下午
我有類似的問題,就是文章標題裡如果有引號"
下次在編輯時會不見...被吃掉了....

該如何處理呢?
6  支援 / 安裝與設定 / 關於搜索引擎的問題求教! 於: 六月 13, 2005, 08:43:55 下午
那是因為內文裡有iss....issue..... 目瞪口呆

我也想知道如何能搜尋到網誌名稱和作者...
7  支援 / 使用與操作 / 也是亂碼的問題? 於: 六月 09, 2005, 09:12:44 下午
挖哈,我找到確認信主旨要改哪裡了:

/home/httpd/class/summary/action/dofinishregister.class.php

程式碼:
$message = new ConfirmEmailMessage();
$message->setFrom( $this->_config->getValue( "post_notification_source_address" ));
$message->addTo( $this->userEmail);
$message->setSubject( "pLog user registration confirmation for: ".$this->userName);
$message->setUsername($this->userName);
$message->setActiveCode($activeCode);
8  支援 / 使用與操作 / 也是亂碼的問題? 於: 六月 07, 2005, 02:58:01 下午
好像好多...

class\summary\mail\confirmemailmessage.class.php

templates\summary\email_confirm.template
程式碼:
{$locale->pr("register_confirmation_email_text", $activeLink)}



class\action\admin\adminaddbloguseraction.class.php
       
程式碼:
function sendNotificationEmail( $userInfo )
        {
            // if everything went fine, we can now send the confirmation email
            // only if the user specified a valid email address
            if( $userInfo->getEmail() != "" ) {
            // build an email message
                $message = new EmailMessage();
                $message->setBody( $this->_notificationText );
                $message->setSubject( "歡迎加入plog" );
                $message->addTo( $userInfo->getEmail());
                $message->setFrom( $this->_userInfo->getEmail());
                // and finally send it
                $emailService = new EmailService();
                $emailService->sendMessage( $message );
            }

            return true;
        }
9  支援 / 使用與操作 / 也是亂碼的問題? 於: 六月 07, 2005, 08:22:00 上午
對啊,我會改信件內文,不會改主旨....help!!!

email確認信是找locale檔裡的
程式碼:
$messages['register_confirmation_email_text'] = 
10  支援 / 使用與操作 / 也是亂碼的問題? 於: 六月 06, 2005, 10:44:40 下午
1.01有提供email charset!

可是,我有問題,email認證信的內容在locale file裡,但是信件主旨,是在哪?
我找到一個/class/action/admin/adminaddbloguseraction.class.php
改了一下,似乎沒用???

       
程式碼:
function sendNotificationEmail( $userInfo )
        {
            // if everything went fine, we can now send the confirmation email
            // only if the user specified a valid email address
            if( $userInfo->getEmail() != "" ) {
            // build an email message
                $message = new EmailMessage();
                $message->setBody( $this->_notificationText );
                $message->setSubject( "歡迎加入部落格" );
                $message->addTo( $userInfo->getEmail());
                $message->setFrom( $this->_userInfo->getEmail());
                // and finally send it
                $emailService = new EmailService();
                $emailService->sendMessage( $message );
            }
11  支援 / 安裝與設定 / 另作一個summary 於: 五月 25, 2005, 09:36:18 下午
hello,

我想在原有的summary.php之外,多作一頁,左右兩欄仍顯示同樣的內容(最新網誌、回應最多...),但中間顯示別的東東。

我試著:
1. 在template/summary/裡以index.template為基礎,加了一個xxx.template
2. 也在summary.php裡加了$_actionMap=xxx
3. 也仿class/summary/action/summarydefaultaction.class.php,作了一個summaryxxxaction.class.php

殘念...該summary.php?0p=xxx,所顯示的內容仍與summary.php一樣...

該怎麼作呢?
12  開發 / 外掛程式 / 安裝迴響驗證 (AuthImage) 的問題 於: 五月 17, 2005, 10:15:31 下午
ha....原來要裝php-gd...不是gd...
感謝大家!

下載:
http://www.wesmo.com/rpm2html/x86/php-gd-4.3.10-3.2.i386.html

安裝後重啟apache即可啦 開懷大笑
13  開發 / 外掛程式 / 安裝迴響驗證 (AuthImage) 的問題 於: 五月 17, 2005, 01:32:30 下午
抱歉哦..

版本:
Linux version 2.6.9-1.667smp (bhcompile@tweety.build.redhat.com)
(gcc version 3.4.2 20041017 (Red Hat 3.4.2-6.fc3)) #1 SMP Tue Nov 2 14:59:52 EST 2004

查尋結果:
rpm -qa|grep gd
-->
sysklogd-1.4.1-22
gd-2.0.33-2
gdbm-1.8.0-24

rpm -qa|grep php
-->
php-odbc-4.3.10-3.2
php-mysql-4.3.10-3.2
php-4.3.10-3.2
php-pear-4.3.10-3.2
php-ldap-4.3.10-3.2

這樣裝rpm不對嗎?
rpm -Uvh gd-2.0.33-2.i386.rpm
warning: gd-2.0.33-2.i386.rpm: V3 DSA signature: NOKEY, key ID 30c9ecf8
Preparing...                ########################################### [100%]
        package gd-2.0.33-2 is already installed
14  開發 / 外掛程式 / Re: 還是不行耶 於: 五月 17, 2005, 01:03:28 下午
引用自: lss
一般 redhat 系列的 linux 版本應該都有提供各 php extension 的 rpm 檔可以直接安裝,不需編譯。


我有去rpmfind.net找gd、安裝,不過php還是不認得耶。
15  支援 / 安裝與設定 / 新增使用者資料欄位的問題 於: 五月 17, 2005, 12:12:14 上午
我想讓使用者在註冊時,多填些資料,例如性別。
改了一些地方,也加了資料庫欄位,但是卻無法把資料正確地塞入資料庫,例如總是把性別塞到about欄位,而full name則無資料。
問題似乎出在/class/dao/users.class.php,不知該如何改....

==
有改到的檔案(都是加個變數):
/templates/summary/
registerstep0.template
registerstep1.template
registerstep2.template
registerstep3.template
registerstep4.template
registerstep5.template

/class/summary/action
registeraction.class.php
dofinishregister.class.php
chooseblogtemplateaction.class.php
dousercreation.class.php
頁: [1] 2