返信する: d3diaryサポート板


オプション

参照

Re: メール手動取込時の不具合
投稿者: なーお 投稿日時: 2011/4/26 21:35

クラス名の干渉が原因だという推測のもと、取り急ぎの対策として、以下の変更にて回避可能かお試しください。

(trust側)/modules/d3diary/include/post_pop3.php

19
    class POP3 {

 ↓変更

19
    class D3diary_POP3 {

(trust側)/modules/d3diary/include/mimeDecode.php

95
    class Mail_mimeDecode extends PEAR

 ↓変更

95
    class D3diary_Mail_mimeDecode extends PEAR

(trust側)/modules/d3diary/class/mailpost.class.php

68
    $this->pop3 = & new POP3();

 ↓変更

68
    $this->pop3 = & new D3diary_POP3();
150
    $structure = Mail_mimeDecode::decode($params);

 ↓変更

150
    $structure = D3diary_Mail_mimeDecode::decode($params);

以上、よろしくお願いします。