本節(jié)內容:
dedecms5.7 ask模塊的問題管理和答案管理 404錯誤
將dedecms系統(tǒng)放到西部數碼空間后發(fā)現后臺的 ask 模塊的問題管理和答案管理出現404錯誤,本地測試沒有問題。
虛擬主機是 linux 系統(tǒng),可能是文件區(qū)分大小寫所致。
解決方法:
1、問題管理頁面:
askcontroladminissue.php 的 $this->lurd = new lurd(<a href="mailto:'dede_ask'">'dede_ask'</a>, $this->temp, $this->temp.'/lurd');
的 lurd 改為 Lurd。(www.genban.org 網站建設)
代碼:
this->lurd = new Lurd(<a href="mailto:'dede_ask'">'dede_ask'</a>, $this->temp, $this->temp.'/lurd');
2、答案管理頁面:
askcontroladminanswer.php 的 $this->lurd = new lurd(<a href="mailto:'dede_ask'">'dede_ask'</a>, $this->temp, $this->temp.'/lurd');
的 lurd 改為 Lurd。
代碼:
$this->lurd = new lurd(<a href="mailto:'dede_ask'">'dede_ask'</a>, $this->temp, $this->temp.'/lurd');