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